Hi,
i'm trying to install Proxmox-VE the manual way on a fresh Debian 11.
To connect to the server I'm using SSH.
The installation runs up to the following output:
At this point the installation freezes, but i still can create a new SSH session.
I don't know if this is the reason, but based on the warning of the duplicate interface i looked into
Content of
Content of
Here's also the output of
Any ideas?
Thanks!
i'm trying to install Proxmox-VE the manual way on a fresh Debian 11.
Code:
root@pve-test:/etc/network# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 11 (bullseye)
Release: 11
Codename: bullseye
To connect to the server I'm using SSH.
Code:
echo "deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
curl -#o /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg http://download.proxmox.com/debian/proxmox-release-bullseye.gpg
apt update
apt upgrade -y
apt dist-upgrade -y
apt install proxmox-ve -y
The installation runs up to the following output:
Code:
...
Creating config file /etc/samba/smb.conf with new version
Setting up libjemalloc2:amd64 (5.2.1-3) ...
Setting up libnet1:amd64 (1.1.6+dfsg-3.1) ...
Setting up libfdt1:amd64 (1.6.0-1) ...
Setting up libusbredirparser1:amd64 (0.8.0-1+b1) ...
Setting up libopts25:amd64 (1:5.18.16-4) ...
Setting up libunwind8:amd64 (1.3.2-2) ...
Setting up proxmox-mini-journalreader (1.3-1) ...
Setting up proxmox-archive-keyring (2.1) ...
Setting up libsnappy1v5:amd64 (1.1.8-1) ...
Setting up libflac8:amd64 (1.3.3-2+deb11u1) ...
Setting up libjs-extjs (7.0.0-1) ...
Setting up ifupdown2 (3.1.0-1+pmx3) ...
Installing new version of config file /etc/default/networking ...
network config changes have been detected for ifupdown2 compatibility.
Saved in /etc/network/interfaces.new for hot-apply or next reboot.
Reloading network config on first install
warning: duplicate interface lo found
Killed old client process
Progress: [ 60%] [##########################################################........................................]
At this point the installation freezes, but i still can create a new SSH session.
I don't know if this is the reason, but based on the warning of the duplicate interface i looked into
/etc/network/
.
Code:
root@pve-test:/etc/network# ls -l
total 32
drwxr-xr-x 2 root root 4096 Nov 25 08:10 if-down.d
drwxr-xr-x 2 root root 4096 Nov 25 08:10 if-post-down.d
drwxr-xr-x 2 root root 4096 Nov 25 08:10 if-pre-up.d
drwxr-xr-x 2 root root 4096 Nov 25 08:10 if-up.d
drwxr-xr-x 3 root root 4096 Nov 25 08:10 ifupdown2
-rw-r--r-- 1 root root 289 Aug 29 07:52 interfaces
drwxr-xr-x 2 root root 4096 Nov 25 08:04 interfaces.d
-rw-r--r-- 1 root root 550 Nov 25 08:10 interfaces.new
Content of
/etc/network/interfaces
:
Code:
root@pve-test:/etc/network# cat interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5)
# Include files from /etc/network/interfaces.d:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
Content of
/etc/network/interfaces.net
:
Code:
root@pve-test:/etc/network# cat interfaces.new
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface eth0 inet manual
Here's also the output of
ip a
:
Code:
root@pve-test:/etc/network# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 96:00:01:b0:be:cb brd ff:ff:ff:ff:ff:ff
altname enp0s3
altname ens3
inet aaa.bbb.ccc.ddd/32 brd aaa.bbb.ccc.ddd scope global dynamic eth0
valid_lft 85253sec preferred_lft 85253sec
inet6 aaaa:bbbb:cccc:dddd:eeee:ffff/64 scope link
valid_lft forever preferred_lft forever
Any ideas?
Thanks!