下载安装debian-12.5.0-amd64-netinst.iso
安装中选择ssh就行,桌面等其它不需要
安装debian好后
1 修改静态ip

nano /etc/network/interfaces
auto eno1
iface eno1 inet static
address 192.168.1.2/24
network 192.168.31.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 114.114.114.114

2 修改host

nano /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.1.2 pve.me pve
The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

3 安装

echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
apt update && apt full-upgrade
apt install proxmox-default-kernel
systemctl reboot
apt install proxmox-ve postfix open-iscsi chrony
apt remove linux-image-amd64 'linux-image-6.1*'
update-grub
apt remove os-prober

pve安装完成192.168.1.2:8006

发表评论