Como remover o Unity 7.4.5

Como remover o Unity 7.4.5

Tenho Unity e Gnome instalados no meu computador (Ubuntu 16.04.4). Como posso remover o Unity sem causar nenhum dano? Quando pesquiso no Synaptic Manager (unidade de pesquisa), isso resulta em 500 linhas e não consigo entender quais pacotes remover...

Responder1

Tente isto: comece no modo somente texto

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.

Execute estes comandos:

Monte partições em modo leitura-gravação

mount -o remount,rw /
mount --all

Atualizar repositórios

apt update

Instale o aptitude e o deborphan

apt install --reinstall aptitude deborphan

Elimine os componentes da unidade que não são necessários no gnome

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

Reinstale o gnomo

apt install --reinstall gnome

Elimine pacotes órfãos

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

Remova pacotes desnecessários

apt autoremove

Remover pacotes baixados

apt clean

Reinicie o sistema

reboot

informação relacionada