Można znaleźć opis Usuń , autoremove , czystki , czystym i Autoclean , jak i składni w manpages dla apt-get: man apt-get
.
Jeśli nadal nie jesteś pewien po przeczytaniu go (byłem) najlepszym sposobem na wyjaśnienie tego jest wypróbowanie go.
Poniżej znajduje się przykład pełnego drzewa zależności dla vima :
Możesz to uzyskać za pomocą:
apt-rdepends -d vim > vim.dot
dotty vim.dot
Możesz również uzyskać listę bezpośrednich zależności za pomocą apt-cache depends
( więcej informacji zawiera sekcja Deklarowanie relacji między pakietami ):
$ apt-cache depends vim
vim
Depends: vim-common
Depends: vim-runtime
Depends: libacl1
Depends: libc6
Depends: libgpm2
Depends: libselinux1
Depends: libtinfo5
Suggests: <ctags>
exuberant-ctags
Suggests: vim-doc
Suggests: vim-scripts
Wygląda więc na to, że vim zależy od wielu pakietów, spróbujmy go zainstalować apt-get install
i zobaczmy, co się stanie:
$ sudo apt-get install vim
...
The following extra packages will be installed:
vim-common vim-runtime
Suggested packages:
ctags vim-doc vim-scripts
The following NEW packages will be installed:
vim vim-common vim-runtime
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
After this operation, 25.1 MB of additional disk space will be used.
Do you want to continue [Y/n]? n
Aby vim działał, potrzebujemy pakietów vim-common i vim-runtime i apt-get
zajmiemy się tym. Możemy to zweryfikować za pomocą dpkg -s pkg...
(zobacz man dpkg
więcej informacji o statusach):
$ sudo dpkg -s libc6
Package: libc6
Status: install ok installed // we already have it, no need to install
$ sudo dpkg -s vim-common
Package: vim-common
Status: deinstall ok config-files // we don't have it, have to install
Tak jak sprawdziliśmy, od czego zależy vim , możemy również sprawdzić, jakie inne rzeczy zależą od tych samych pakietów, z których korzysta vimapt-cache rdepends
. Powinniśmy zobaczyć vim wśród (prawdopodobnie) innych rzeczy:
$ apt-cache rdepends vim-common
vim-common
Reverse Depends:
vim-latexsuite
vim-addon-manager
vim-tiny
vim-nox
vim-gtk
vim-gnome
|vim-dbg
vim-athena
vim // there it is
Kontynuujmy instalację. Po zainstalowaniu vima możemy poczuć różnicę między remove a autorove . Spróbujmy najpierw usunąć :
$ sudo apt-get remove vim
...
The following packages will be REMOVED:
vim
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
After this operation, 1,922 kB disk space will be freed.
Do you want to continue [Y/n]? n
apt-get remove
by następnie usunąć vim , ale nie jego zależności pozostawiając je za sobą . Spróbujmy teraz usunąć jedną z zależności vima :
$ sudo apt-get remove vim-runtime
...
The following packages will be REMOVED:
vim vim-runtime
0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
After this operation, 24.8 MB disk space will be freed.
Do you want to continue [Y/n]? n
Spowoduje to usunięcie zależności vim-runtime, a także pakietu od niego zależnego , mianowicie vim . Z ciekawości zobaczmy, co by się stało, gdybyśmy usunęli zależność niższą w drzewie zależności vima :
$ sudo apt-get remove libgpm2
...
The following packages were automatically installed and are no longer required:
libgtkglext1 libqtassistantclient4 libtiff-tools libtiff5 python-qt4
python-sip python-sqlalchemy python-sqlalchemy-ext
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
anki cheese gimp gimp-gmic gimp-plugin-registry gnome-control-center // !
gnome-media gnome-video-effects gstreamer0.10-plugins-good libaa1 // !
libcheese-gtk21 libcheese3 libgpm2 mplayer quodlibet vim vlc w3m // !
0 upgraded, 0 newly installed, 18 to remove and 0 not upgraded.
After this operation, 63.1 MB disk space will be freed.
Do you want to continue [Y/n]? n
Usunąłby vima i wiele gadżetów!
Kontynuujmy apt-get remove vim
wtedy. Gdy to zrobimy, powinniśmy mieć trochę resztek. Jeśli teraz spróbujemy napisać , możemy zobaczyć:
$ sudo apt-get autoremove
...
The following packages will be REMOVED:
vim-common vim-runtime
0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
After this operation, 23.2 MB disk space will be freed.
Do you want to continue [Y/n]? y
Są to dwa pakiety, które zostały apt-get remove
po sobie, chociaż nic więcej ich nie potrzebowało.
Eksperymentowane z apt-get 0.9.7.9.
apt-get remove libreoffice