I decided to try SliTaz the 25 MB Live Linux wonder. The beauty of SliTaz is in its rootfs.gz file which is compressed using LZMA compression. As per the Documentation the file can be extracted using lzma and cpio with following command:
# lzma d rootfs.gz -so | cpio -id
I mounted the iso and tried the above command in Ubuntu Hardy. Although, lzma and cpio are installed, it did not work. I decided to boot into SliTaz Live environment. I mounted the iso and copied the contents to a spare partition. Following grub line was available in /boot/grub/example-menu.lst file:
title SliTaz GNU/Linux
kernel /boot/bzImage root=/dev/null vga=771
initrd /boot/rootfs.gz
I added root (hd0,X) line and could but in Live Slitaz.Using the above command (# lzma d rootfs.gz -so | cpio -id) I could extract the rootfs.gz file. I copied contents to the root of the partition and changed the gub entry to:
title SliTaz GNU/Linux 1.0
root(hd0,X)
kernel /boot/vmlinuz-2.6.24.2-slitaz root=/dev/hdaX+1 vga=normal
This became Hard Disc install of SliTaz.
I find SliTaz very fast for web browsing.
Subscribe to:
Post Comments (Atom)
We are registered voters of Bhopal as per Final eRoll published on 21 Feb 2026.
We relocated to Bhopal from Delhi wef 28 June 2025. I immediately applied for change of address on Aadhar and got it on 06 July 2025. Then ...
-
My friend asked me whether he could run Slideshow of Photos on Screensaver. First I thought about Shotwell Photo Manager App. It has Deskt...
-
Update: This is four years old. A new post on same topic may be found here . I wrote in the previous post that I would write about how to...
-
In Sep 2010 I had written about using Micromax 3G modem on Ubuntu 10.04 . Since then I could not find time to see whether Ubuntu 10.11, 11....
1 comment:
You could have used this command in Ubuntu:
sudo lzma -dc -S .gz rootfs.gz | cpio -id
Post a Comment