
Another Linux distro has been released, this time emphasising speed and low space. I reckon it’ll be perfect for netbooks. Lots of improvements needed, but the potential is there. See Slitaz Linux.

Another Linux distro has been released, this time emphasising speed and low space. I reckon it’ll be perfect for netbooks. Lots of improvements needed, but the potential is there. See Slitaz Linux.
After a long hiatus, Google has finally spoken up and released a (beta) version of Chrome for Linux. As ever with the techies, it’s accompanied by xkcd-style comic. Visit this link.
Quick facts from the Google Team about Chrome for Linux that they sent to me via email:
60,000 lines of Linux-specific code written
23 developer builds
2,713 Linux-specific bugs fixed
12 external committers and bug editors to the Google Chrome for Linux code base, 48 external code contributors
This is a quick and dirty method of backing up each and every directory that you have in your home folder. Most of you would probably know this anyway, but I thought I might just repost it here.
tar cvpf backup.tar `ls`
Perhaps a better way is to create an incremental backup each time.
tar cvpf backup.tar -g snapshot `ls`
This command compares the timestamps of files in the current directory with that of snapshot, and the resulting differences are written into backup.tar. This method ensures that you only write incremental changes and not the whole directory over and over again.
If there is any particular file/folder you do not want to backup, you can specify the –hide option in ls as follows:
tar cvpf backup.tar -g snapshot `ls --hide=Desktop`
That will ensure that the Desktop folder is not backed up.
Warning: Jaunty might no longer detect your webcam after the installation. That was what happened to me. If you’re a heavy webcam user and can’t give up video chatting in Skype or Empathy, you can safely skip this post.
Here’s the latest hybrid I’ve done. If for one reason or another you’re still refusing to upgrade to Karmic, you might be interested in splicing in Karmic’s kernel (2.6.31.6) into Jaunty. I’ve tried it and worked flawlessly, but the performance boosts can rival that of Karmic.
Follow the steps below:
tar xjvf linux-2.6.31.6.tar.bz2 -C /usr/src
This will unpack the file into your /usr/src folder as linux-2.6.31.6 folder.
sudo apt-get install gcc libgtk2.0-dev libglib2.0-dev libglade2-dev
make gconfig
make xconfig
The above commands serve as configuration tools if you’re interested in adjusting kernel’ options (over 1,000!). Otherwise you can skip this step.
make
make modules
sudo make modules_install
make install
sudo mkinitramfs -o initrd.img-2.6.31.6 2.6.31.6
In case you’re wondering why the command is called mkinitramfs instead of mkinitrd, the latter has been deprecated, so don’t use the old one.
sudo gedit /boot/grub/menu.lst
title Ubuntu 9.04, kernel 2.6.31.6
uuid zzzzzzzzz
kernel /boot/vmlinuz-2.6.31.6 root=UUID=zzzzzzzzz ro quiet splash
initrd /boot/initrd.img-2.6.31.6
quiet
Make you sure replace zzzzzzzzz with your uuid that you can find in the file.
Recent Comments