Archive for Tips

Print Installed font list with preview for each font

If you wish to print (or see) a preview of your installed fonts under linux. I found this command myself:

Here is the All-in-One command, copy and paste all this in a terminal (Applications > Accessories > Terminal):

1
2
(echo '<html><body>' && (fc-list | sed 's/\(.*\):.*/<font face="\1">\1<\/font><br>/') && echo '</body></html>') > fonts.html
firefox fonts.html

Then Hit Enter.

This should open firefox and open fonts.html, by itself.

Otherwise, go to your user's directory and open fonts.html yourself.

――

Find files very quickly using Locate with Linux

Tired of using the Find command? want something faster? Use locate!!! It's easy to use.

locate myfile

Would give you all the files found since last indexing.

Locate uses a database containing file indexes. That's why it is very fast to find files, that's the good point of this system. The bad point is that the database is not updated everytime you create/move/delete a file. But it's easy to force updating.
Read the rest of this entry »

――

Minimize to tray for Thunderbird - FireTray

Here's a quick and easy way to have Thunderbird in the tray, use FireTray!

FireTray is for Firefox but it works perfectly with Thunderbird 2.

When you are on the module page, just drag and drop the download button into Thunderbird's addon window. And restart it.

Enjoy.

――

How to download under Terminal or ssh, using wget

That's amazing everything you can do under linux, you don't even need to open your internet browser to download a file. Well, when you are connected to your dedicated or private server through ssh, you don't have any desktop.

wget will provide you functions to do almost any kind of HTTP/FTP downloads.
Read the rest of this entry »

――