Today I saw two search engine at Reviewlinux.com. They are really good.
http://www.uboontu.com/
http://search.ubuntuwire.com/
UbuntuWire is a specialized Ubuntu search engine which can help you find information related to Ubuntu operating system quickly without having to wade through countless unrelated websites on the internet...
See more Search Ubuntu related information and How to with UbuntuWire.com.
[+/-] Read More
[+/-] Show Only Abstract
LyricZilla is a plugin for music players ( BMP and Audacious temporarily). It can search Lyrics automatically, and roll with the playing.

Installation:
1. sudo wget http://lyriczilla.googlecode.com/svn/trunk/package/lyriczilla.list -O /etc/apt/sources.list.d/lyriczilla.list
2. sudo apt-get update
sudo apt-get install lyriczilla lyriczilla-plugin-audacious lyriczilla-plugin-bmp
3. Enable it at "Preferences->Plugins->General->Lyriczilla"
4. Restart the player.
Please see Here for the latest news.
[+/-] Read More
[+/-] Show Only Abstract
Every time I install Ubuntu, the biggest problem will be changing the Resolution of the desktop and login window.
If I want "Visual Effects", I will have to enable "Nvidia accelerated graphics drivers"; However, whenever I enable it, the Screen Resolution will change to "50", although it looks the same as "85". Changing the number of rate at "desktop/gnome/screen/default/0" in "Configuration Editor"( gconf-editor ) won't work. I doubt that this is a BUG.
After I turn on "Visual Effects", the "close", "maximize", "minimize" buttons etc. of windows besides Firefox will disappear unless I install "compizconfig-settings-manager".
Next we will change the resolution of login window.
sudo dpkg-reconfigure xserver-xorg
Delete the resolution you don't need.
An alternative way will be configuring "/etc/X11/xorg.conf", see Here.
[+/-] Read More
[+/-] Show Only Abstract
Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. Squid has extensive access controls and makes a great server accelerator. It runs on Unix and Windows and is licensed under the GNU GPL.
You can download it Here
Or
sudo apt-get install squid
However, Cohomo has to edit "squid.conf" every time he starts Squid and then restart it since his IP is random. It is very complicated. So He wrote a script to replace the IP address in the row "/acl bb0 src" by the real IP.
#!/bin/bash
echo Please Type in your IP:
read myip
sudo sed -ie “/acl bb0 src */c\acl bb0 src $myip” /etc/squid/squid.conf
sudo /etc/init.d/squid restart
where "-i" means change "squid.conf" directly and "/c" means change the corresponding row.
Copy the above codes as a text, and set the permission as "Allow executing file as program". Once you want to run it, just double click this file and choose "run in terminal".
[+/-] Read More
[+/-] Show Only Abstract