Things I do after installing Ubuntu

1. Disable ipv6 and apparmor for speed up

add

ipv6.disable=1 apparmor=0

to linux command line in /etc/default/grub then run

update-grub

and reboot.

2. Disable wireless power saving on battery, because frankly 1 to 2 hundred milliseconds response time is too slow when you’re 20 feet from the access point.

Edit /usr/lib/pm-utils/power.d/wireless and replace any lines containing “power on” with “power off”. Not any update to pm-utils will overwrite this file and change the setting back.

3. Install Chromium as it is quite a bit faster and nicer to use than Firefox.

Remembering to keep Firefox around for the odd site that won’t work in Chromium e.g. some java based sites.

4. Add “noatime” and “commit=900″ to fstab.

Gives performance increase and saves SSDs by not writing to the journal all the time.

Install HP Laserjet CP1215/foo2zjs in Linux Mint Debian Edition

The in-Distro version of foo2zjs has dependency problems at time of writing. Use the one from the foo2zjs home page. From your home directory in a terminal:-

wget -O foo2zjs.tar.gz http://foo2zjs.rkkda.com/foo2zjs.tar.gz

tar zxf foo2zjs.tar.gz

foo2zjs

make

./getweb 1215

sudo make install

Continue reading

Migrating from Chrome to Chromium

To get a more open source experience I changed from Chrome to Chromium for Linux. It left me without my bookmarks, etc. though. The user data for Chrome is stored in ~/.config/google-chrome. To get my data into Chromium I simple moved the files from there into ~/.config/chromium. Job done.

http://www.google.com/support/forum/p/Chrome/thread?tid=63af2c4e884f0673&hl=en

http://www.ubuntugeek.com/install-chromium-google-chrome-web-browser-in-ubuntu.html