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:
1 |
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 Risolvere l’Errore e Configurare VNC 1. Spegnere la Macchina…
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
1 2 3 4 |
sudo nano /etc/fstab sudo apt install nfs-kernel-server sudo apt-get install nfs-kernel-server portmap nfs-common |
1 |
sudo showmount -a |
configure mount folders and define sub nets can access to
1 |
sudo nano /etc/exports |
/etc/export sample:
1 2 3 4 5 6 7 8 9 10 11 12 |
<span style="color: #06989a;"># /etc/exports: the access control list for filesystems which may be exported</span> <span style="color: #06989a;"># to NFS clients. See exports(5).</span> <span style="color: #06989a;">#</span> <span style="color: #06989a;"># Example for NFSv2 and NFSv3:</span> <span style="color: #06989a;"># /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)</span> <span style="color: #06989a;">#</span> <span style="color: #06989a;"># Example for NFSv4:</span> <span style="color: #06989a;"># /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)</span> <span style="color: #06989a;"># /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check)</span> <span style="color: #06989a;">#</span> /home/<mymountfolder> 192.168.XXX.XXX/24(rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash) /home/<mymountfolder> 192.168.MMM.MMM/24(rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash) |
Verify export options
1 |
sudo exportfs -arv |
1 2 |
sudo systemctl restart nfs-kernel-server sudo service nfs restart |
Configure your MS-Windows 10 client: You can find info to configure MSWin as NFS client at this link: https://synaptica.info/2020/03/23/nfs-network-file-system/ Configure your MacOSX client:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
mkdir /Users/<yourusername>/<yourmountpoint> sudo mount -o resvport,rw,noowners -t nfs 192.168.JJJ.JJJ:/home/<mymountfolder> /Users/<yourusername>/<yourmountpoint> sudo nano /etc/fstab poi scrivi dentro 192.168.JJJ.JJJ:/home/<mymountfolder> /Users/<yourusername>/<yourmountpoint> nfs rw,nolockd,resvport,hard,bg,initr,tcp,nfc,rsize=65536,wsize=65536 sudo automount -vc |
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:
1 |
taskkill /f /t /im julius.exe |
In this example we kill our application “JuliuS” .
A reverse proxy is a type of proxy server that accepts HTTP (S) requests and transparently distributes them to one or more backend servers. You can use a reverse proxy to prevent direct access to these underlying application servers. They can also be used to distribute the load of incoming requests to different application servers.…
Leggi tutto