Categoria: Linux

Espandere ZFS

Gennaio 11, 2022 By luca@studiomondello.eu

Abilitare autoespansione zpool set autoexpand=on DATASTOREZFS Verificare e identificare partizione zpool status zpool get autoexpand fdisk -l /dev/sdb nel mio caso disco sdb Espandere parted /dev/sdb (parted) resizepart Partition number? […]

Reverse Proxy Con Nginx

Ottobre 12, 2021 By luca@studiomondello.eu

Installare nginx apt install nginx systemctl enable nginx Verificae firewall ufw status Configurare certificati mkdir /etc/nginx/ssl-certs/ nano /etc/nginx/ssl-certs/nginx.crt incollare il certificato SSL nano /etc/nginx/ssl-certs/nginx.key incollare la private key Configurare nginx […]

Installare Webmin su Ubuntu

Novembre 2, 2020 By luca@studiomondello.eu

wget http://prdownloads.sourceforge.net/webadmin/webmin-1.960.tar.gz && sudo tar xzvf webmin-1.960.tar.gz && cd webmin-1.960 sh setup.sh Oppure nano /etc/apt/sources.list.d/webmin.list aggiungere deb http://download.webmin.com/download/repository sarge contrib wget http://www.webmin.com/jcameron-key.asc apt-key add jcameron-key.asc apt-get update apt-get install webmin […]