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

Categoria: hosting

Digital Innovation Partner

Configurare un Server Multi-Sito con Apache e WordPress su Ubuntu 24.04

  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

KVM on Ubuntu 24.04 error on change display from spice to VNC

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

Cockpit for KVM Virtual Environment

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

Il server dedicato per la tua Startup o piccolo team

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

Configure a NFS share in your LAN with Ubuntu 20.04

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

Windows kill application programmatically

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” .