このようなコマンドを実行するとエラーが発生しsudo apt-get autoclean
ます。sudo apt-get clean
E: Clean of / is not supported
$ sudo apt-get autoclean
Reading Package Lists ... Done
Building the dependency tree
Reading status information ... Done
E: Clean of / is not supported
$ apt-config dump | fgrep Dir::Cache
Dir::Cache "";
Dir::Cache::archives "";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
私はLinux Mintを使用しています
$ cat /etc/lsb-release
DISTRIB_ID=LinuxMint
DISTRIB_RELEASE=18
DISTRIB_CODENAME=sarah
DISTRIB_DESCRIPTION="Linux Mint 18 Sarah"
この問題を解決する方法について提案がありますか?
答え1
設定を修正しましたapt
。
Dir::Cache "";
Dir::Cache::archives "";
正しい値は次のとおりです。
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
apt
toの前に/
toが追加されるため、エラーメッセージに報告されているようにクリーンアップDir::Cache
を拒否します。/
構成を変更/etc/apt/apt.conf
する/etc/apt/apt.conf.d/*