I was having problems upgrading from 20.04 to 20.10. I read on SO that someone fixed the issue by uninstalling libssh-4
, so I ran sudo apt remove libssh-4
. To my horror a lot of things were removed, including Libre Office, network services and many other things.
The prompt showed a list of what would be removed, but it didnt include network services, eg:
The following packages were automatically installed and are no longer required:
libiw30 libkeybinder0 libnghttp2-14 librtmp1 libwnck-common libwnck22 libxres1 lxpanel-data
Use 'apt autoremove' to remove them.
I now have no wifi or ethernet capabilities. And I dont have a usb stick present with which to try re-installing.
Is there way I can reinstall networking capabilities?
Y
andEnter
. My intention isn't to rub it in, but this was avoidable. If you have a list of packages you need to reinstall (check apt logs) then you can search on AU for how to install software without an Internet connection. But honestly you're probably better off to reinstall the system. – Nmath Nov 13 '20 at 05:25libssh-4
would be removed. I definitely wouldnt have proceeded if I had seen a lenghtly list of components that I depend on. – Magick Nov 13 '20 at 05:36sudo systemctl restart network-manager
and see what happens. – mchid Nov 13 '20 at 06:01