Ho provato a disinstallare un emacs tramite il terminale in Lubuntu 15 ed è ancora lì.
Ho usato il codice:
sudo apt-get remove --purge emacs
Questo è già successo con un programma di scacchi chiamato scid.
Fondamentalmente, dopo aver eliminato emacs, viene visualizzato:
sudo apt-get remove --purge emacs
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
emacs24 emacs24-bin-common emacs24-common emacs24-common-non-dfsg libm17n-0
libotf0 m17n-db vim-runtime
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
emacs*
0 to upgrade, 0 to newly install, 1 to remove and 195 not to upgrade.
After this operation, 25.6 kB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 125495 files and directories currently installed.)
Removing emacs (46.1) ...
Poi quando scrivo
emacs <Enter>
emacs si riapre come se niente fosse.
Le rimozioni successive mostrano:
sudo apt-get remove --purge emacs
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'emacs' is not installed, so not removed
The following packages were automatically installed and are no longer required:
emacs24 emacs24-bin-common emacs24-common emacs24-common-non-dfsg libm17n-0
libotf0 m17n-db vim-runtime
Use 'apt-get autoremove' to remove them.
0 to upgrade, 0 to newly install, 0 to remove and 195 not to upgrade.
C'è un modo per eliminare questo programma? L'ho installato tramite sudo apt-get install emacs, quindi non è nel mio centro software.
Risposta accettata:
emacs
è un metapacchetto, il che significa che è un pacchetto che non contiene nulla e dipende solo da un pacchetto con un nome più specifico, in questo caso emacs24
. Prova (dato che hai già rimosso il metapacchetto):
sudo apt-get autoremove
Perché emacs24
pacchetto è ancora installato, puoi ancora usare emacs, perché emacs24
è quello che contiene effettivamente l'eseguibile.