将Proxmox 4.2安装到Debian 8.4上
- JessieにPromox4をインストール、NAT設定 – Qiita
Ubuntu 16.04模板
- [SOLVED] – Ubuntu 16.04 Template for Proxmox 4.1 | Proxmox Support Forum
wget http://download1.proxmox.com/images/system/ubuntu-16.04-standard_16.04-1_amd64.tar.gz
avahi-daemonが悪さするようなので入ってたら消すこと
下载ISO文件
- debian-8.4.0-amd64-netinst.iso
vi /etc/hosts
# apt-get purge wicd wicd-daemon
apt-get install -y ifenslave bridge-utils
cat > /etc/network/interfaces << EOF
auto lo
iface lo inet loopback
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.0.1.4
netmask 255.255.255.0
gateway 10.0.1.1
dns-nameservers 8.8.8.8 8.8.4.4
bridge_ports eth0
bridge_stp off
auto vmbr1
iface vmbr1 inet static
address 192.168.99.4
netmask 255.255.255.0
bridge_ports none
bridge_stp off
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '192.168.99.0/24' -o vmbr0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '192.168.99.0/24' -o vmbr0 -j MASQUERADE
EOF
echo "deb http://download.proxmox.com/debian jessie pve-no-subscription" > /etc/apt/sources.list.d/pve-enterprise.list
wget -O- "http://download.proxmox.com/debian/key.asc" | apt-key add -
apt-get update && apt-get dist-upgrade -y
apt-get install -y proxmox-ve ntp ssh postfix ksm-control-daemon open-iscsi
- reboot
图片 (tú
- ubuntu 16.04のテンプレートはまだない様子。
- ACLsとEnable quotaの項目が増えた様子
- Mount Pointの項目が増えた