Setup Kali Linux su Proxmox VE
1. Download ISO
Scarica la ISO installer da kali.org/get-kali (versione bare metal/ISO).
2. Creare la VM
qm create 130 --name kali-security --memory 4096 --cores 4 \
--net0 virtio,bridge=vmbr0 --scsihw virtio-scsi-single \
--scsi0 local-lvm:32 --cdrom local:iso/kali-linux.iso \
--ostype l26 --boot order=scsi0
3. Installazione
- Avvia la VM e segui l’installer grafico
- Scegli "Desktop (Xfce)" per leggerezza
- Configura IP statico nella rete LAN
- Post-installazione:
apt update && apt full-upgrade -y
4. Guest Agent e tool Proxmox
apt install -y qemu-guest-agent spice-vdagent
systemctl enable qemu-guest-agent
5. Configurazione rete
nano /etc/network/interfaces
# IP statico sulla LAN
auto eth0
iface eth0 inet static
address 192.168.1.53/24
gateway 192.168.1.1
dns-nameservers 1.1.1.1
Risultato: Kali Linux pronta per il security testing nella rete del homelab.