I edited the new debian.sources file in /etc/apt/sources.list.d according to debian instructions, started to upgrade and successfuly upgraded to 13.0, at least core debian (can use mpv, vlc, thunar, libreoffice…)
Problem is, this notebook with debian 13.0 doesnt have a working network manager and there are still 900 packages that need upgrading.
The command I entered in the terminal: sudo systemctl status networkmanager.service returns: unit networkmanager.service could not be found.
I have an android phone I thought I could use as a network hotspot or maybe tether, but debian 13.0 doesnt recognize it, so I really dont know what to do
Lan cable didnt work either.
Help appreciated
That sounds pretty bad and probably means other things are broken too. The easiest option would probably be a reinstall at this point, but if you want to learn something you can also try to salvage your install.
To recover, it’s probably easiest to manually configure your Ethernet connection as described by InnerScientist and then re-install the
network-manager
package.You can check the status of the network-manager package using dpgk. It should look like this (
ii
at the start, but it sounds like it’s not installed in your case):$ dpkg -l | grep -i network-manager ii network-manager 1.52.1-1 amd64 network management framework (daemon and userspace tools) ii network-manager-l10n 1.52.1-1 all network management framework (translation files)
You can also check
/var/log/apt/history.log
to see what went wrong and if there are other things you need to fix.I performed the upgrade in two steps
apt upgrade --without-new-pkgs
andapt full-upgrade
(based on the release notes). I can see the following on the lineUpgrade:
for the commandapt full-upgrade
:network-manager:amd64 (1.42.4-1+deb12u1, 1.52.1-1)
On the
Remove:
line you can see the packages that were removed. Unfortunately, the names of many libraries were changed in this release (e.g.,libreadline8:amd64
tolibreadline8t64:amd64
), so there’s a lot of noise in there. Maybe you can look at that line and ignore everything that starts withlib
to see if any other important packages were removed.