Ubuntu tweak的看门人有多安全?


12

它说在Ubuntu Tweak上可以运行Janitor来释放一些磁盘空间。这样安全吗?我正在运行12.04。

Answers:


20

我知道您已经得到了答案,但是最近我还是通过ubuntu-tweak的源代码(当它被宣布不再开发时)进行了翻译,并将其所做的一切都翻译成了bash。如果您有兴趣知道,Ubuntu Tweak几乎可以做到:

  1. sudo rm -rf /var/cache/apt/archives/*.deb

  2. sudo apt-get clean

  3. rm -rf ~/.cache/google-chrome/Default/*

  4. rm -rf ~/.cache/chromium/Default/*

  5. rm -rf ~/.cache/telepathy/Cache*

  6. rm -rf ~/.googleearth/*

  7. rm -rf ~/.cache/gwibber/

  8. while read -r line; do if [[ "$line" == Path=* ]]; then rm -rf ~/.mozilla/firefox/${line:5}/Cache/*; rm -rf ~/.mozilla/firefox/${line:5}/OfflineCache/*; fi; done < ~/.mozilla/firefox/profiles.ini

  9. while read -r line; do if [[ "$line" == Path=* ]]; then rm -rf ~/.thunderbird/${line:5}/Cache/*; rm -rf ~/.thunderbird/${line:5}/OfflineCache/*; fi; done < ~/.thunderbird/profiles.ini

  10. rm -rf ~/.opera/cache/*

  11. dpkg --list |grep "^rc" | cut -d " " -f 3 | xargs sudo dpkg --purge//这可能很危险。仅在知道执行的操作时运行。

  12. rm -rf ~/.cache/software-center/*

  13. rm -rf ~/.thumbnails/*

  14. dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge

这是我对reddit关于此事的原始评论的链接


4

是的,当然可以,它会清理未使用的文件,例如apt工具的缓存,浏览器的缓存等,但是如果您使用CD Application上的APT备份下载的程序,则不会清理apt缓存。如果清理apt缓存,则无法使用CD工具上的APT备份程序。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.