


THIS happened just ~3h ago on my current SIDUCTION setup.
As usual, before going weekend, i did (w#o attention for the exact cli feedback messages


Code: Select all
su
apt update && apt list -u
apt full-upgrade
:

There was no longer a network-icon in the systray and on the cli:
'nmcli' - not installed
'apt policy network-manager' - (none) !!
'ifconfig' - all interfaces DOWN and w#o configuration ??
'ip route' - no routes to anywhere ...



After a 'cat /var/log/apt/history.log', i couldn't believe my eyes

QUESTION@ALL MXers and Debian users: Has anybody ever been in such an unexpected situation after an upgrade of any kind of debian installation?2023/11/24 - 16:15
Start-Date: 2023-11-24 15:58:33
Commandline: apt full-upgrade
Install: libcmis-0.6-6:amd64 (0.6.2-2, automatic), ...
:
Remove: network-manager-gnome:amd64 (1.34.0-1), network-manager:amd64 (1.44.2-4)
End-Date: 2023-11-24 16:01:18
ANYWAY, if this happens to you, heres what i had to do, to regain network access and how i solved this issue:
Code: Select all
# ifconfig eth0 <unused-fixed-ip> netmask 255.255.255.0 gateway <my-routers-ip>
# ip link set eth0 up
# route add default netmask 0.0.0.0 gw <my-routers-ip>
# route
# ping debian.org
:
# apt update
# apt install network-manager
# ip address
:
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN group default qlen 1000
link/ether 08:00:27:3e:f6:4f brd ff:ff:ff:ff:ff:ff
inet aaa.bbb.ddd.ccc/24 brd aaa.bbb.ccc.255 scope global dynamic noprefixroute eth0
valid_lft 6066sec preferred_lft 6066sec
:
# reboot
# apt install network-manager-gnome
# reboot
:
# apt update && apt list -u
:
All packages are up to date.
Listing... Done

kind regards
l0dr3