Odpowiedź jest już dobrze udzielona, ale znalazłem sytuację, w której nie chciałem „zaznaczać” wielu paczek (a następnie je odznaczać po autoremove
).
Gdy lista pakietów Państwo chcą do autoremove łatwo zdefiniowane, to można rura / sed
/ xargs
je.
Nie mam złożonego przykładu wielu pakietów, ale jeśli mam następujący scenariusz:
root@fptc-rsvrd:~# apt-get autoremove
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
libluajit-5.1-2 libluajit-5.1-common linux-headers-4.4.0-141 linux-headers-4.4.0-141-generic linux-headers-4.4.0-143 linux-headers-4.4.0-143-generic linux-headers-4.4.0-146 linux-headers-4.4.0-146-generic
linux-image-4.4.0-141-generic linux-image-4.4.0-143-generic linux-image-4.4.0-146-generic linux-image-extra-4.4.0-141-generic linux-modules-4.4.0-143-generic linux-modules-4.4.0-146-generic
linux-modules-extra-4.4.0-143-generic linux-modules-extra-4.4.0-146-generic linux-signed-image-4.4.0-141-generic pandoc-data
0 upgraded, 0 newly installed, 18 to remove and 19 not upgraded.
After this operation, 907 MB disk space will be freed.
i chcę usunąć tylko linux*
pakiety, mogę to zrobić:
root@fptc-rsvrd:~# apt-get autoremove -s | sed -ne 's/Remv \(linux[^[]*\)\[.*/\1/gp'
linux-headers-4.4.0-141-generic
linux-headers-4.4.0-141
linux-headers-4.4.0-143-generic
linux-headers-4.4.0-143
linux-headers-4.4.0-146-generic
linux-headers-4.4.0-146
linux-signed-image-4.4.0-141-generic
linux-image-extra-4.4.0-141-generic
linux-image-4.4.0-141-generic
linux-modules-extra-4.4.0-143-generic
linux-image-4.4.0-143-generic
linux-modules-extra-4.4.0-146-generic
linux-image-4.4.0-146-generic
linux-modules-4.4.0-143-generic
linux-modules-4.4.0-146-generic
Odtąd łatwo jest przekazać je xargs
jako argumenty wiersza poleceń do prostej apt-get remove -y
:
apt-get autoremove -s \
| sed -ne 's/Remv \(linux[^[]*\)\[.*/\1/gp' \
| xargs apt-get remove -y
Zwykle podczas używania xargs
chroniłbym przed spacjami w argumentach (np. find ... -print0 | xargs -0 ...
), Ale ponieważ w nazwach pakietów nie ma spacji, wygodnie jest używać argumentów rozdzielanych znakiem nowej linii.
(Pomyślałbym, że w innych sytuacjach, bardziej odpowiednie byłoby „zaznaczenie” wstrzymania, wycofanie pakietów. Można to również zrobić za pomocą wyrażeń regularnych i xargs
, ale prawdopodobnie jest to nadmierna inżynieria sytuacji).