Proxmox install on Debian 12

LionLien

New Member
Mar 24, 2024
1
0
1
Hi,

I've gone through the guide of installing proxmox on top of Debian but after booting back up, it'll say "loading linux 6.2.16-20-bpoll-pve" and load back into debian without any network connection. Any ideas on how to solve this issue?

Specs:
Dell T7910
32GB RAM
Xeon 35-2683 V4
1TB SSD
Nvidia Quadro M4000
 
Hi!

What network card exactly?
I suppose you have intel 10G/40G/100G nic, so you need latest drivers ( builtin drivers won't work)

Code:
igb – 1GbE for the “i” series
ixgbe – 10GbE for the “X5” series
i40e – 40GbE for the “X7” series
ice – 100GbE for the “E810” series

Intel drivers:
Code:
https://www.intel.com/content/www/us/en/support/articles/000025890/ethernet-products.html
I recommend using the "Intel Ethernet Adapter Complete Driver Pack"
Code:
https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html

Example:

You need dkms util to build the intel driver for your kernel.
Code:
$> apt-get install dkms
$> apt-get install pve-headers

-> Release_29.0.zip/PROCGB/Linux/ice-1.13.7.tar.gz

$> tar -xf ice-1.13.7.tar.gz -C /usr/src
$> cd /usr/src/ice-1.13.7/src/
#$> /usr/src/ice-1.13.7/src/dkms.conf
(create "dkms.conf" file , add the following content)

PACKAGE_NAME="ice"
PACKAGE_VERSION="1.13.7"
BUILT_MODULE_NAME[0]="ice"
DEST_MODULE_LOCATION[0]="/kernel/drivers/net/ethernet/intel/ice/"
AUTOINSTALL="yes"

$> dkms add ./
$> dkms status
$> dkms build -m ice -v 1.13.7
$> dkms install -m ice -v 1.13.7

REBOOT

check your network
 
Last edited: