1. Prerequisites A server with Ubuntu 24.04 LTS. Access with sudo privileges. A domain name pointing to your server’s IP address (e.g., miosito.com). 2. Update the System Run the command to update your system: sudo apt update && sudo apt upgrade -y 3. Install Apache Install Apache as the web server: sudo apt install…
Leggi tutto
Se stai utilizzando KVM su Ubuntu e hai riscontrato l’errore seguente quando tenti di configurare VNC come protocollo grafico per le tue macchine virtuali: libvirt.libvirtError: unsupported configuration: chardev ‘spicevmc’ not supported without spice graphics Questo post ti guiderà attraverso i passaggi necessari per risolvere questo problema modificando manualmente la configurazione XML della VM. Passaggi per…
Leggi tutto
Come Configurare Cockpit per Gestire le VM su Ubuntu In questa guida imparerai come installare e configurare Cockpit per gestire macchine virtuali (VM) su un host Ubuntu con KVM. Introduzione Cockpit è un’interfaccia web facile da usare che consente la gestione di server Linux. È particolarmente utile per monitorare e amministrare macchine virtuali (VM) su…
Leggi tutto
Soluzione di Virtualizzazione Potente e Affidabile Stai cercando una soluzione di virtualizzazione robusta e performante? Scopri la nostra offerta basata sul server Dell PowerEdge R420, perfettamente configurato per le tue esigenze di virtualizzazione aziendale. Offriamo un servizio personalizzato che va oltre quello che troverai presso i grandi provider. 🔹 Processori: 2x Intel Xeon E5-2420 @…
Leggi tutto
Configuring NFS Server: Installing NFS services on your ubuntu system sudo nano /etc/fstab sudo apt install nfs-kernel-server sudo apt-get install nfs-kernel-server portmap nfs-common sudo showmount -a configure mount folders and define sub nets can access to sudo nano /etc/exports /etc/export sample: # /etc/exports: the access control list for filesystems which may be exported # to…
Leggi tutto
To force quit an application by application name in MS-Windows you can use “taskkill” command. To kill an application by app name using taskkill you can write: taskkill /f /t /im julius.exe In this example we kill our application “JuliuS” .