I am trying to make copies of a liveusb stick I created to give as Christmas presents. I have had such trouble they will now be late Christmas presents. I have 4 GB sticks that I am trying to use and I was putting 2 GB as ext3 and 2 GB as fat32 for file sharing. First I tried for format a kingston datatraveler 100 and pcc kept crashing. I searched high and low and tried other machines always the same result, "program exited abnormally". I then used the command line to delete the partition table and redo it, and after that pcc didn't crash anymore. Next, I used the PCLinuxOS liveusb creator to create one stick, and it worked beautifully. I customized it quite a bit and then wanted to make a copy. I could not get mylivecd to work probably because there was not enough space on the flash disk. I tried specifying the destination to a larger drive and it still didn't work. So I moved on. I decided to use Rsync using directions found here:
from old-polack
http://www.pclinuxos.com/forum/index.php/topic,80737.0.htmlBasically I plugged in the working USB flash drive while operating off of the harddrive, and issued the following commands:
fdisk -l
mkdir /mnt/here
mount /dev/sdg1 /mnt/here
Plugged in disk to copy to
fdisk -l
mkdir /mnt/there
mount /dev/sdh1 /mnt/there
rsync -av /mnt/here/ /mnt/there
Next I followed paranotes example of how to install grub since the sticks did not work without it:
http://www.pclinuxos.com/forum/index.php/topic,74879.0.htmlby entering
grub
find /boot/grub/menu.lst
geometry (hd2)
root (hd2,0)
setup (hd2)
Now this worked in that I now have a working copy, but unfortunately it did not copy the changes I made. I also should note that I tried making the subsequent sticks from the PCLinuxOS liveusb creator but it now errors out with no uuid found, but they all have uuid as found with the blkid command. I would like to make copies of the stick with changes, and I would appreciate any advice or help to that end.
Thanks,
Jordan