If your computer can boot from a USB thumb drive, then you've got to try this. Antix live from USB running at near hard disk speed and installation in approx 2 minutes for a 2.0ghz older single core CPU. This takes the LiveCD to a new level of operation, making CD and DVD burning fully possible for notebooks and desktops with only 1 optical drive, and did I mention the speed?
Download it from
========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"http://www.gigasize.com/get.php?d=x109cddqdhb"
linktext was:"http://www.gigasize.com/get.php?d=x109cddqdhb"
====================================
Below are the contents of the included included readme file.
I am looking for the more advanced users familiar with scripting (not just stringing together commands as I have done) to assist with streamlining this process, with a view towards including it on the next antiX release.
----------------------------------------
antiX 8 USB Key
Please read this entire file before commencing to familiarize
yourself with the procedures, and maybe adjust them, or the provided
scripts for your preferred workflow.
PREREQUISITES
Computer with USB 2.0 ports recommended
working internet connection
1Gb or larger Thumb Drive
Partimage
CONTENTS
a8flash.000 Flash disk image containing skeleton of thumb drive
Note - image is set to ~750Mb to accomodate the vast
differences in flash drive sizes and to enable you
to make a data partition should you wish to.
backup script I used to make the image
grub.mbr Flash disk master boot record and partition structure
mkbtfl-sdb script to install to sdb
mkbtfl-sdc script to install to sdc
mkbtfl-sdd script to install to sdd
mkbtfl-sdx editable script for other mount points
README-FIRST This file you are reading
GETTING STARTED
The procedure described in this help file details how to make a
Mepis 8 Bootable thumb drive using the a8flash.000 image provided.
STEP 1
Plug your flash drive into a free USB port, mount the device and
take note of the mount point assigned to the device - e.g. sdb1
Leave it plugged in and mounted, it will be unmounted later by the
script. Alternatively, you can issue the command"dmesg |tail"
and identify the device by looking for the [sdx] where"x" is the
letter you need to remember.
STEP 2
Find the script that matches the mount point for your thumb drive, or
edit the sdx script if a script for your thumb drives mount point is
not provided.
Example:
if your mount point is sdf, change the 6"sdx" references to"sdf"
then save the file.
Note - If you do not already have partimage installed, uncomment the
line by removing the"#" and the white space in front of apt-get
--------------------------------------------------
Code: Select all
#!/bin/sh
su -c"umount /dev/sdx*
dd if=/dev/zero of=/dev/sdx bs=512 count=1
dd if=./grub.mbr of=/dev/sdx
dd if=/dev/zero of=/dev/sdx1 bs=512 count=1
# apt-get update && apt-get install partimage
partimage -b restore /dev/sdx1 ./a8flash.000
sfdisk -l /dev/sdx"
STEP 3
Install partimage if it is not already installed. As root in a terminal,
type the following, or uncomment the line from the script by removing
the"#" and the white space in front of apt-get so it looks like the
example below and let the script install partimage for you.
Code: Select all
apt-get update && apt-get install partimage
STEP 4
Change the script that matches your mount point to make it executable.
hint - in Konqueror, right click file > Properties > Permissions tab,
click on"Is executable", then on OK.
Note - It is helpful and advisable to only have one file marked as
executable to avoid confusion.
STEP 5
Press your F4 key to open a terminal window at the folder you are
viewing and type the name of the file marked as executable, or type
the first few letters as below and press your Tab key to use command
line completion
./mkb (tab)
enter your root password
1) The flash drive will be unmounted.
2) The first 512 bytes of the flash drive will be erased, removing
all boot code and partition tables.
3) A 750Mb partition will be created on the selected flash drive
and grub will be copied to the root of your flash drive
4) Partimage will copy the skeleton image to your flash drive
This takes only a few seconds and you should see the blue
background of the partimage window with a rapidly growing
progress bar.
5) sfdisk will display the new partition layout of your flash drive.
You can safely close the terminal window and remove your newly
created bootable flash drive.
Below is the terminal printout of the process when used on a 2Gb drive
-----------------------------------------------------------------------
Code: Select all
michael@mikepav:~/Backups/ANTIX_BOOT_FLASH$ ./mkbtfl-sdb
Password:
umount: /dev/sdb: not mounted
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.009202 s, 55.6 kB/s
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.0122262 s, 41.9 kB/s
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.0122262 s, 61.3 kB/s
Disk /dev/sdb: 1014 cylinders, 63 heads, 62 sectors/track
Units = cylinders of 1999872 bytes, blocks of 1024 bytes, counting from 0
Device Boot Start End #cyls #blocks Id System
/dev/sdb1 * 0+ 392 393- 767498 6 FAT16
/dev/sdb2 0 - 0 0 0 Empty
/dev/sdb3 0 - 0 0 0 Empty
/dev/sdb4 0 - 0 0 0 Empty
STEP 6
Unplug the flash drive, wait a few seconds and plug it back in, then
mount it. The drive will have a new name, ANTIX-BOOT
STEP 7
Delete the empty"antiX.iso" blank file from the flash drive and copy
any antiX iso CD-ROM image to the root of your flash drive.
When finished, unmount your flash drive.
STEP 8
Open Gparted, select your flash drive and resize the partition as you see fit.
CONGRATULATIONS
That's it, your flash drive is ready to go.
Mike P