Post
Topic
Board Project Development
Re: LinuxCoin A lightweight Debian based OS with everything ready to go.
by
TripHammer
on 27/07/2011, 06:53:39 UTC
To create it directly on the LinuxCoin drive,

boot from usb
sudo mount -t vfat /dev/sda1 /mnt
dd if=/dev/zero of=/mnt/live-rw bs=1M count=600
mkfs.ext3 -F /mnt/live-rw

In this example the 600 represents a 600MB file and /dev/sda1 is the name of the usb key

Hope that helps

Trip