This tutorial covers the process of making a PCLinuxOS MiniMe USB flash thumb drive from within a Linux operating environment (using the Live CD). PCLinuxOS ranks as my second favorite distro, trailing just behind Ubuntu. For this tutorial, I booted from the Live CD and used this as the installation platform, however, the installation procedure will work from other environments as well.
PCLinuxOS MiniMe USB Boot
PCLinuxOS MiniMe is a minimalistic version of the PCLinuxOS distribution. A simple Linux distribution that attempts to provide a complete desktop computing experience for users, while also allowing for customization and flexibility.
The MiniMe edition, as the name suggests, is a minimal version. It includes a basic set of applications and a lightweight desktop environment, allowing users to install and customize their system according to their preferences. This minimalist approach is useful for users who prefer to start with a clean slate and build their system from the ground up.
MiniMe USB System Requirements
- PCLinuxOS Live CD or alternate working Linux environment
- CD Reader/Recorder
- Fast USB thumb drive
How to Make a PCLOS MiniMe USB
- Download the pclinuxos-p93a-minime.iso and burn it to a CD
- Restart your Computer, booting from PCLinuxOS (login as root)
- Insert a 512MB or larger USB thumb drive
- Open up a terminal and type fdisk -l (note which drive is your USB stick)
- Type umount /dev/sdx1 (replacing x with your flash drive letter)
- Type fdisk /dev/sdx (again replacing x with your device)
- Type p to show the existing partition and d to delete it
- Type p again to show any remaining partitions (if partitions exist, repeat the previous step to delete them)
- Type n to make a new partition
- Type p for primary partition
- type 1 to make this partition one
- hit enter to use the default first cylinder
- hit enter again to use the default last cyl
- type a to make this partition active
- type 1 to select partition 1
- type t to change it's file system
- type 6 to select the fat16 file system
- type w to write the new partition table
- Type umount /dev/sdx1 (replacing x with your device) to unmount the partition
- Type mkfs.vfat -F 16 -n usb /dev/sdx1 to format the first partition as fat (replace x with your flash drive)
- Remove and reinsert your USB flash drive
- Type mkdir /tmp/usb
- Type mount /dev/sdx1 /tmp/usb (replace x with your USB drive)
- Type mount /mnt/cdrom (or cdrom2 if you have more than one)
- Type cd /mnt/cdrom (or cdrom2)
- Type cp -rf livecd.sqfs isolinux/* /tmp/usb
- Type cd /tmp/usb
- Type mv isolinux.cfg syslinux.cfg
- Type cd
- Type umount /tmp/usb
- Type syslinux -sf /dev/sdx1 (replacing x with your USB device)
- Finally, reboot your computer and set your system BIOS to boot from USB-HDD. Also set the boot priority to boot the USB device first if this option is available.
If all goes well, you should be booting into PCLinuxOS MiniMe via the USB device.