1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

proxmox4.2をdebian8.4にインストール

Last updated at Posted at 2016-04-29

ubuntu16.04テンプレート

wget http://download1.proxmox.com/images/system/ubuntu-16.04-standard_16.04-1_amd64.tar.gz
  • avahi-daemonが悪さするようなので入ってたら消すこと

download 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

images

1.PNG
2.PNG
3.PNG

  • ubuntu 16.04のテンプレートはまだない様子。

4.PNG

  • ACLsとEnable quotaの項目が増えた様子

5.PNG

  • Mount Pointの項目が増えた
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?