Jul 30 08:46:03 localhost kernel: Warning: Unmaintained driver is detected: cnic
Jul 30 08:46:03 localhost kernel: Warning: Unmaintained driver is detected: cnic_init
Jul 30 08:46:03 localhost kernel: Warning: Unmaintained driver is detected: bnx2i
Jul 30 08:46:03 localhost kernel: Warning: Unmaintained driver is detected: bnx2i_mod_init
Jul 30 08:46:04 localhost kernel: Warning: Unmaintained driver is detected: e1000_init_module
I use my ethernet to connect to my internet so I’m going to need that
These are warnings, not startup errors. The drivers still work, but are marked as unmaintained.
cnic and bnx2i are mainly for iSCSI offload. Check which driver your active Ethernet interface uses:
ethtool -i
Do not blacklist e1000 until you confirm it is not in use.
sudo dmesg | grep e1000e
[ 2.263154] e1000e: Intel(R) PRO/1000 Network Driver
[ 2.263155] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 2.263539] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 2.337853] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 2.401688] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) b0:4f:13:10:99:1d
[ 2.401707] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 2.401849] e1000e 0000:00:1f.6 eth0: MAC: 14, PHY: 12, PBA No: FFFFFF-0FF
[ 2.642256] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[ 19.367901] e1000e 0000:00:1f.6 enp0s31f6: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
The warnings appear because the e1000, cnic, and bnx2i drivers are classified as unmaintained.
However, your active Ethernet interface is using e1000e, and it is linked normally at 1 Gbps. Therefore, these warnings do not affect your current network connection.
cnic and bnx2i are mainly used for iSCSI offload, so they can be ignored if you are not using iSCSI.
thanks