Greatly improve the speed of Firefox 3

We all know Firefox is a memory hog. To speed things up greatly, do the following: 1. Open Firefox and in the address bar type about:config.2. Click on “I’ll be careful, I promise“3. Use the search bar above to look for network.http.pipelining and double click on it to set it’s value to True.4. Create a… Read More »

Change your MAC address in Linux

If you wish to change your MAC address in Linux, all you have to do is bring the interface down then use the hw ether switch: ifconfig eth0 downifconfig eth0 hw ether 02:01:02:03:04:08ifconfig eth0 up

Use the same GTK theme for applications started as root

If you start a GTK GUI with root permissions and you notice that it uses the old GTK theme, you can make all applications started as root to use your current theme by doing this: sudo ln -s ~/.themes /root/.themessudo ln -s ~/.icons /root/.iconssudo ln -s ~/.fonts /root/.fontsThis will basically create symlinks to your icons,… Read More »