0

I would like to know how you defragment and remove cookies on Ubuntu.

VK3
  • 1
  • 3
    Regarding the "defrag", it has been asked before http://askubuntu.com/questions/221079/how-to-defrag-an-ext4-filesystem Cookies in FF http://askubuntu.com/questions/580840/delete-cookies-in-firefox-after-a-specified-time-frame Same from terminal http://askubuntu.com/questions/368325/how-to-clear-browsers-cache-and-cookies-from-terminal Chrome: http://askubuntu.com/questions/628460/how-to-delete-temp-files-which-is-created-by-google-chrome-in-linux – Rinzwind Nov 03 '15 at 15:36
  • Do you need to defrag or want to? – Tony Lancer Nov 03 '15 at 15:36
  • As far as cookies go, use Bleachbit. – Sergiy Kolodyazhnyy Nov 03 '15 at 15:38
  • Defragmentation is rarely required on Linux. – Panther Nov 03 '15 at 16:25

1 Answers1

0

Remove Firefox cookies:

rm ~/.mozilla/firefox/*.default/cookies.sqlite

Rremove Chrome cookies:

rm ~/.config/google-chrome/Default/Cookies
TellMeWhy
  • 17,484