我试图节省一些空间,/var/cache/apt
但该apt autoclean
命令没有任何影响。这是为什么?
root@server:/var/cache# du -sh *
4.7G apt
3.2M debconf
20K ldconfig
1.9M man
8.0K PackageKit
8.0K postgresql
root@server:/var/cache# apt autoclean
Reading package lists... Done
Building dependency tree
Reading state information... Done
root@server:/var/cache# du -sh *
4.7G apt
3.2M debconf
20K ldconfig
1.9M man
8.0K PackageKit
8.0K postgresql
在 Debian 9 上工作。
答案1
相反sudo apt clean
,本文将更详细地介绍这两个命令,但基本上autoclean
会删除已卸载的软件包,同时clean
删除已卸载的软件包和缓存的 .deb 文件。
https://www.how2shout.com/linux/apt-get-command-autoclean-clean-autoremove/