neovatar.org
Skip to content

Optimize Firefox startup times

I did some research on my prolonged firefox startup time and alas I found something cool: Vacuum your Firefox databases Basically you have to do the following:
  • Install sqlite3:
    sudo apt-get install sqlite3
  • Vacuum your Firefox DBs:
    find ~/.mozilla/firefox -name "*.sqlite" -exec sqlite3 \{\} VACUUM \;
  • Reindex your Firefox DBs:
    find ~/.mozilla/firefox -name "*.sqlite" -exec sqlite3 \{\} REINDEX \;

Trackbacks

No Trackbacks

Comments

Display comments as Linear | Threaded

No comments

Add Comment

Enclosing asterisks marks text as bold (*word*), underscore are made via _word_.
Standard emoticons like :-) and ;-) are converted to images.
E-Mail addresses will not be displayed and will only be used for E-Mail notifications.

Submitted comments will be subject to moderation before being displayed.