Wondering how to Install Proxmox VE 6 on Debian Buster? We can help you.
Here at Bobcares, we handle requests from our customers to Install Proxmox VE 6 on Debian Buster as a part of Server Management Services.
Today, let us see how our Support Techs assist with installation.
Install Proxmox VE 6 on Debian Buster (Debian 10)
In this article, let us see how to install Proxmox VE 6 server on Debian 10 (Buster) Linux system.
Basically, it is an enterprise-grade open-source server virtualization solution based on Debian Linux distribution with a modified Ubuntu LTS kernel.
Prerequisites
- Firstly, running Debian 10 Buster Linux server (hypervisor)
- Secondly, 64-bit processor with support for the Intel 64 or AMD64 CPU extensions.
Install Proxmox VE 6 on Debian Buster
Step 1: Update Debian OS
Firstly, update apt package index:
$ sudo apt -y update
$ sudo apt -y upgrade
$ sudo reboot
Step 2: Set system hostname
Initially, set the hostname and make sure it is resolvable via /etc/hosts.
$ sudo hostnamectl set-hostname prox6node01.bobcares.com –static
$ echo “10.1.1.10 prox6node01.bobcares.com prox6node01” | sudo tee -a /etc/hosts
bobcares.com should be replaced with a valid domain name.
Step 3: Add the Proxmox VE repository
Basically, all Proxmox packages will be pulled from matching upstream repository which is added manually to the system.
Import GPG key:
$ wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg
$ sudo mv proxmox-ve-release-6.x.gpg /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
$ chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
Then add Proxmox VE repository:
$ echo “deb http://download.proxmox.com/debian/pve buster pve-no-subscription” | sudo tee /etc/apt/sources.list.d/pve-install-repo.list
We can now update our repository and system by running:
$ sudo apt update && sudo apt dist-upgrade
Adding Proxmox VE Ceph Repository:
This is Proxmox VE’s main Ceph repository and holds the Ceph packages for production use. We can also use this repository to update only the Ceph client.
$ echo “deb http://download.proxmox.com/debian/ceph-nautilus buster main” | sudo tee /etc/apt/sources.list.d/ceph.list
Step 4: Install Proxmox VE packages
To install Proxmox VE packages, execute the below commands.
$ sudo apt install proxmox-ve postfix open-iscsi
If we have a mail server in our network, we should configure postfix as a satellite system and our existing mail server will be the ‘relay host’ which will route the emails send by the proxmox server to the end recipient. If we do not know what to enter here, choose local only.
Reboot Debian system after installation to boot with Proxmox VE kernel.
$ sudo reboot
Step 5: Accessing Proxmox VE web interface
Connect to the Proxmox VE admin web interface on (https://ipaddress:8006).
Proxmox VE Dashboard looks like this.
Select “PAM Authentication” and authenticate with server’s root user password.
Once logged in, create a Linux Bridge called vmbr0,
And add our first network interface to it.
Common issues while installing Proxmox VE 6 on Debian Buster
- resolv.conf gets overwritten
The PVE GUI expects to control DNS management and will no longer take its DNS settings from /etc/network/interfaces. Any package that auto-generates (overwrites) /etc/resolv.conf will cause DNS to fail. For example, packages ‘resolvconf’ for IPv4 and ‘rdnssd’ for IPv6.
- ipcc_send_rec[1] failed
If we see “ipcc_send_rec[1] failed: Connection refused”, then we should review /etc/hosts file according to the instructions above.
- Remove the Debian kernel
$ apt remove linux-image-amd64 ‘linux-image-4.19*’
Update and check grub2 config by running:
update-grub
Conclusion
In short, Proxmox Virtual Environment (VE) is an enterprise-grade open-source server virtualization solution based on Debian Linux distribution with a modified Ubuntu LTS kernel. Today, we saw how our support techs install it.
0 Comments