May 172011
 

Hi All,

In my previous post regarding booting Tiny Core Linux over PXE, we were booting a premade image that did not have much installed by default.
In this post, we will remaster the image into something usable that we can boot off by extracting all the files that we need and merging the directories then repacking it all into one. One of the advantages of doing it this way is that it lets you modify all the files in the root file system before you repack it all up.

What we will need to do is to get the tcz files for the applications we want to install, and merge them into the default tinycore.gz image. This will result in a larger tinycore.gz file but when the image is booted, applications will be pre-installed. This can be useful for diskless workstations in an office or netcafe for example.

So, onto the hard parts.


Step 1 – Getting the TCZ files

Ok, so once we’ve decided what software we want, we will need the TCZ files for the software we want.
This Site has a list of all the software we need and their dependencies, though it’s a bit tedious to download every single file as I haven’t found any other way to download what we need.

So, I took a shortcut.
Boot up Tiny Core Linux either using a virtual machine or real machine using PXE or some other boot media.
Install all the software you want via the app manager, and then all the files you need are in /tmp/tce/optional/.
To do this, you will need an internet connection on the computer that you’re booting Tiny Core on.

For me, I will install Firefox, OpenSSH (SSH Client and server), conky, pci-utils, and util-linux-ng, but you can choose what you want to install.
After I have installed the software, all the tcz files I need will be in /tmp/tce/optional/ and should look something like this :

After all the files are there, we will need to transfer them to a different computer to do the remastering.
In this case, I will be transferring them to my PXE server which will be doing the remastering.

Step 2 – Uncompressing Everything

Once we have all the tcz files where we need them, we will need to uncompress them as they are all compressed using squashfs.
We will need to install some additional tools to do that, namely squashfs-tools.

apt-get install squashfs-tools

Once that is installed, we can unsquash all the files so that we can access them like a normal filesystem.
I’ve written up a little script to do it all for me in this case :


#!/bin/bash
for i in $( ls ); do
if [ ! $i == "unsquashall.sh" ] && [ -f $i ]; then
unsquashfs -f $i
fi
done

I’ve named this unsquashall.sh, and have put this into the directory where all the tcz files are.
If you copy and paste this into a .sh file, don’t forget to make it an executable file by running :

chmod +x unsquashall.sh

After you run unsquashall.sh, you will have a directory called squashfs-root which will contain the contents of all the tcz files.

What you will also need, is the core of Tiny Core, the tinycore.gz file. This is a gzipped cpio file which contains the main file system of Tiny Core Linux.
You will want tinycore.gz in it’s own directory when you extract it to make things easier, I have used /tftpboot/tc/temp for that.
To extract tinycore.gz, you will need to run this command as root, or alternatively use sudo before this command.


zcat tinycore.gz | cpio -i -H newc -d

Step 3 – The Merge

Once you’ve extracted the contents, you should see something similar to this :

Looks just like the root file system of a Linux distribution doesn’t it ?
Now, we need to copy the contents of that squashfs-root directory that we created before into this directory.
I have the squashfs-root directory in the /tftpboot/tc/tcz directory, so the command I will be running is :


cp -Rp /tftpboot/tc/tcz/squashfs-root/usr/ /tftpboot/tc/temp/

Step 4 – Repacking Everything

After doing that, we need to repack everything up.
I have made another script for that –


#!/bin/bash
find | cpio -o -H newc | gzip -2 > /tftpboot/tc/tc.gz

Once again, you will need to make the file executable and it should be placed in /tftpboot/tc/temp/.
Once run, this script will create the tc.gz file in /tftpboot/tc which will replace the tinycore.gz file.
I have also copied the kernel bzImage from the iso file into the /tftpboot/tc directory also.

Step 5 – Configuring PXE

Once all that is done, we now need to reconfigure pxe to boot the new Tiny Core initrd file.


LABEL tinycorerm
MENU LABEL Tiny Core 3.6 Remaster
kernel tc/bzImage
append initrd=tc/tc.gz

Should look something like :


So when you boot up the remastered Tiny Core, you should see Firefox in the dock – that’s if you chose to install it.

Share
May 162011
 

Hi all,

I’ve had a play around with Tiny Core Linux recently, and I’m amazed at how they have fit in a window manager and some basic utilities into 10 megabytes.
You start off with a very basic system, consisting of only the Window Manager, and Application manager.

With Tiny Core Linux, you install applications by downloading the tcz files, and loading them via the Application Manager. Alternatively you can remaster the default image to add more applications, which I will also cover later on as it can work extremely well in conjunction with netbooting.

So without further ado, onto the simple process of PXE booting Tiny Core !


Step 1 – Getting Tiny Core

As always, we need to get the files we need first before we can boot from them.

wget http://distro.ibiblio.org/tinycorelinux/3.x/release/tinycore-current.iso

We will grab the ISO file first, and then we will need to extract the files we need from the ISO.
Now from here, we have 2 options.
We can mount the ISO image and boot straight from that to achieve a basic system, or we can extract the files so that we can use them later on to create a remastered image for multiple use situations, e.g. net cafe or diskless workstations.

In this post, I will go with the former option of just mounting it and booting from that.
I will cover the extraction of files and remastering in the next post.

Step 2 – Mounting the ISO

We now need to create a directory on our tftp server so we have a place to mount the ISO file.

mkdir /tftpboot/tinycore

After we’ve done that, we can now use the mount command to mount the ISO in loopback mode.

mount -o loop tinycore-current.iso /tftpboot/tinycore

Once that’s mounted, we can now do a ls in /tftpboot/tinycore to see what’s in there.

ls /tftpboot/tinycore

Should see something similar to this :

This is the contents of the ISO file, which should contain just a ‘boot’ folder.

Step 3 – Configuring the boot menu

So once we have the files where we need them, we can now edit the pxelinux.cfg/default file to include Tiny Core.
We will need this codeblock in there :


LABEL tinycore
MENU LABEL Tiny Core 3.6
kernel tinycore/boot/bzImage
append initrd=tinycore/boot/tinycore.gz

So it should look something similar to this if you have been following my blog up until now :

Once that is complete, when you boot from the network, you should see Tiny Core 3.6 as an option in the menu now.

Share