Posts tagged firefox
Ubiquity for Firefox
Jul 31st
I installed Ubiquity on my Firefox and I’m a little crazy, because it’s very good…
See the video:
Ubiquity for Firefox from Aza Raskin on Vimeo.
Vacuum your Firefox databases for better performance
Jul 27th
A few days ago I marked an article to read later and I finally read it. It’s about how to Vacuum your Firefox databases for better performance.
According the post, “since Firefox 3.0, bookmarks, history and most storage is kept in SQLite databases”. So, optimize this databases is very healthy to Firefox.
And it’s very easy to do. On Ubuntu (I did on 9.04) install the sqlite3 package. Open the terminal and type:
sudo aptitude install sqlite3
After, still in terminal, access your Firefox profile folder:
cd ~/.mozilla/firefox/something_weird.default
In my computer, this something_weird.default is 73cm0ffy.default.
You can see many .sqlite files inside this folder, these are the database to optimize. To do this, close Firefox (only after read or copy this post
), then type, for each file:
sqlite3 file_name.sqlite vacuum
And there’s a way to vacuum all the files at once? Sure. You’re using a Linux terminal! To do this, type:
for i in *.sqlite; do sqlite3 $i vacuum; done
And done.
How to open PDFs inside Firefox on Linux
Jul 19th
I was thinking about how to open a PDF file inside Firefox on Ubuntu, like the Acrobat plugin do on Windows, but using Evince.
So I “googled” about Evince and Firefox and found it quickly in the Lâmpada Azul site. Altought it has many steps, I used only the first and it worked very well. You have only to install the mozplugger package:
sudo aptitude install mozplugger
Alright. It may works now.


Recent Comments