What action need to be taken if accidentally your ubuntu desktop got corrupted after installing any packages. for example:
I am using Ubuntu Desktop 23.10, I ran "sudo apt-get install fuse" and it uninstalled my GUI and it is not booting up.
What action need to be taken if accidentally your ubuntu desktop got corrupted after installing any packages. for example:
I am using Ubuntu Desktop 23.10, I ran "sudo apt-get install fuse" and it uninstalled my GUI and it is not booting up.
I found the solution, I have rebooted by pressing Ctrl+Alt+Del and then selected "ubuntu recovery" mode and in root shell, I ran below commands.
Note: instead of installing fuse, libfuse2 is greater for 22.04 and later version.
ubuntu-gnome-desktop
, which is a transitional package since Ubuntu 17.10, the preferred package to install now would be ubuntu-desktop
.
– zwets
Jan 20 '24 at 23:30
fuse3
package (so there is no need toapt install fuse
), but sincefuse
breaksfuse3
,apt install fuse
will removefuse3
and through its dependencies everything uptoubuntu-desktop
andubuntu-minimal
. Oops! Good catch and well done on the fix. – zwets Jan 20 '24 at 23:16apt install
don't blindly say yes. READ what it is going to remove first and say no occasionally!! – user10489 Jan 20 '24 at 23:33