This is an old revision of the document!
Table of Contents
Update Tiny Core
Download Latest Version
Update to the latest version of Tiny Core. New versions have improvements and additional features.
Tiny Core may be downloaded from various internet sites. Examples include:
http://distro.ibiblio.org/pub/linux/distributions/tinycorelinux/ http://ftp.nluug.nl/os/Linux/distr/tinycorelinux/ http://ftp.vim.org/os/Linux/distr/tinycorelinux/ http://ftp.cc.uoc.gr/mirrors/linux/tinycorelinux/ http://mirrors.163.com/tinycorelinux/ ftp://sunsite.icm.edu.pl/pub/Linux/sunsite.unc.edu/distributions/tinycorelinux/ ftp://sunsite2.icm.edu.pl/pub/Linux/sunsite.unc.edu/distributions/tinycorelinux/ ftp://ftp.oss.cc.gatech.edu/pub/linux/distributions/tinycorelinux/ ftp://distro.ibiblio.org/pub/linux/distributions/tinycorelinux/ ftp://ftp.nluug.nl/os/Linux/distr/tinycorelinux/ ftp://ftp.vim.org/os/Linux/distr/tinycorelinux/ ftp://ftp.cc.uoc.gr/mirrors/linux/tinycorelinux/
Distribution Files or ISO
One option is to download bzImage and tinycore.gz. These can be downloaded from any of the internet sites above, under /3.x/release/distribution_files/.
Another option is to download the .iso file, so it can also be written to a CD. This can be downloaded from /3.x/release/.
Extract Files from ISO
If you downloaded the iso file, you can extract bzImage and tinycore.gz from it.
In this example, let's say you downloaded the iso to /home/tc/dl
Create a new directory in /home/tc/dl. Let's call it tmp.
Open the terminal and type
sudo su cd /home/tc/dl /bin/mount tinycore_3.6.iso tmp
or
sudo su cd /home/tc/dl busybox mount tinycore_3.6.iso tmp
Change tinycore_3.6.iso to the appropriate version.
You can then copy and paste bzImage and tinycore.gz from tmp.
Replace bzImage and tinycore.gz
One option is to simply replace the existing bzImage and tinycore.gz with the newer version, and restart the computer.
You can do this using a root file manager. Open the terminal and type
sudo fluff
If you use xfe, type
sudo xfe
Have Multiple Versions
You may want to keep the original version of Tiny Core, as well as install the more recent version.
To do this, using a root file manager, create a new directory in /mnt/sda1 (use the correct partition if not sda1) for the more recent version. Let's call the new directory tc3.5.1 when installing tinycore 3.5.1, and call the new directory tc3.6 when installing tinycore 3.6.
Paste bzImage and tinycore.gz to the new directory you created.
Update the bootloader.
If using Extlinux, using a root text editor (sudo editor), open /mnt/sda1/boot/extlinux/extlinux.conf
Edit it to be something like this.
UI vesamenu.c32 TIMEOUT 50 LABEL tinycore 3.6 KERNEL /tc3.6/bzImage APPEND initrd=/tc3.6/tinycore.gz quiet opt=sda1 home=sda1 norestore tce=sda1" LABEL tinycore 3.5.1 KERNEL /tc3.5.1/bzImage APPEND initrd=/tc3.5.1/tinycore.gz quiet opt=sda1 home=sda1 norestore tce=sda1" LABEL tinycore 3.4.1 KERNEL /boot/bzImage APPEND initrd=/boot/tinycore.gz quiet opt=sda1 home=sda1 norestore tce=sda1"
Use the correct partition if not sda1.
If using Grub legacy, edit /mnt/sda1/boot/grub/menu.lst to be something like this.
default 0 timeout 5 title Tiny Core 3.6 root (hd0,0) kernel /tc3.6/bzImage quiet opt=sda1 tce=sda1 home=sda1 norestore initrd /tc3.6/tinycore.gz title Tiny Core 3.5.1 root (hd0,0) kernel /tc3.5.1/bzImage quiet opt=sda1 tce=sda1 home=sda1 norestore initrd /tc3.5.1/tinycore.gz title Tiny Core 3.4.1 root (hd0,0) kernel /boot/bzImage quiet opt=sda1 tce=sda1 home=sda1 norestore initrd /boot/tinycore.gz
Use the correct partition if not sda1.
If you are using a different bootloader, update as appropriate.
You can now run any of the versions you have installed.
Having more than one version is a good idea when experimenting and testing, as if something does not work properly, you can run another version.
Test the Release Candidates
We encourage people to download and install the release candidates, so you can help the Tiny Core team, by testing them for improvements and bugs, before the final release.
Updating from 2x to 3x
When updating from 2x to 3x, it is better to do a complete new installation as there are major changes, and all of the extensions also need to be replaced.
The same thing may happen when updating from 3x to 4x.
Updating Applications
To update applications see Update Applications.