Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Author: Ivan Revelli

Digital solution partner

How to Configure Cockpit to Manage VMs on Ubuntu

<header> <h1>How to Configure Cockpit to Manage VMs on Ubuntu</h1> <p><em>In this guide, you will learn how to install and configure Cockpit to manage virtual machines (VMs) on an Ubuntu KVM host.</em></p> </header> <section> <h2>Introduction</h2> <p>Cockpit is an easy-to-use web interface that allows you to manage Linux servers. It is particularly useful for monitoring and…
Read more

FastReport 2x.. convert old report fileformat frf to fr3

FastReport old file format A small app to convert old frf files into new fr3 file format.. You can download fr3tofrf here: https://api.xtumble.com/downloadattachmentpub?cid=05830520960&&docId=949335

The dedicated server for your company

Powerful and Reliable Virtualization Solution Are you looking for a robust and high-performance virtualization solution? Discover our offer based on the Dell PowerEdge R420 server, perfectly configured to meet your business virtualization needs. We provide a personalized service that goes beyond what you’ll find with major providers. 🔹 Processors: 2x Intel Xeon E5-2420 @ 1.90GHz…
Read more

Linux Tip of the day: Copying Files by pattern to a Temporary Directory with a Shell Command

Have you ever needed to copy specific files from a series of directories that match a certain pattern? If so, here’s a shell command that might be just what you need! find . -type d -name ‘AXR*’ -exec find {} -type f \; | while read -r file; do cp “$file” ./tmp/$(basename “$file”) done 🔍…
Read more

Linking Error E2597 in Delphi std::__ndk1::__next_prime(unsigned int)

  Solution to Linking Error E2597 in Delphi When developing applications in Delphi, you might encounter linking errors. One common error is: [DCC Error] E2597: undefined reference to ‘std::__ndk1::__next_prime(unsigned int)’ Introduction The E2597 error can be caused by various factors, including: Incorrect runtime package configurations. Missing dependencies or conflicts between libraries. Incorrect inclusion of static…
Read more

Understanding Network Configurations in KVM: Bridged vs. Macvtap Networking

Le reti bridged e macvtap sono due tecnologie utilizzate per connettere le VM alle reti fisiche in modo diverso. Ecco una spiegazione delle differenze principali: Bridged Networking Descrizione: Una rete bridged connette direttamente l’interfaccia di rete della VM alla rete fisica dell’host attraverso un bridge (ponte). Il bridge funziona come uno switch di rete virtuale,…
Read more