So entfernen Sie Unity 7.4.5

So entfernen Sie Unity 7.4.5

Auf meinem Computer (Ubuntu 16.04.4) sind Unity und Gnome installiert. Wie kann ich Unity entfernen, ohne Schaden anzurichten? Wenn ich im Synaptic Manager (unity durchsuchen) suche, werden 500 Zeilen angezeigt und ich verstehe nicht, welche Pakete ich entfernen soll ...

Antwort1

Versuchen Sie Folgendes: Starten Sie im Nur-Text-Modus

Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.

Select the line which starts with Advanced options.

Select the line ending with (recovery mode)

Press Return and your machine will begin the boot process.

After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.

The PC will start in a terminal.

Führen Sie diese Befehle aus:

Mounten Sie Partitionen im Lese-/Schreibmodus

mount -o remount,rw /
mount --all

Repositorys aktualisieren

apt update

Installieren Sie aptitude und deborphan

apt install --reinstall aptitude deborphan

Eliminieren Sie die Komponenten der Einheit, die in Gnome nicht erforderlich sind

aptitude remove '?and(?reverse-depends(unity),?not(?reverse-depends(?exact-name(gnome))))'

Gnome neu installieren

apt install --reinstall gnome

Eliminieren Sie verwaiste Pakete

deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)

Entfernen Sie unnötige Pakete

apt autoremove

Entfernen heruntergeladener Pakete

apt clean

System neu starten

reboot

verwandte Informationen