If I have got this right you should be able to download this .torrent file which may well automatically start the transmission bittorrent client on your webbook, or you might want to install some other kind of bittorrent client if you have a particularly poorly webbook. Once you have the file which is a fraction over a gig in size you need to write it to a USB stick. Not copy it as a file onto a USB stick, the .img is a complete image of the USB stick including boot sector, partition tables, partition and filesystem so it needs to be placed on the stick in a special way. With a webbook or other linux computer (or perhaps a Mac) you can use the dd command. If you downloaded the image file to your desktop you would open a console, plug in a USB stick (1GB or more in size with nothing on it that you want!) and type something like
alan@webbook:~$ mount|grep disk /dev/sdd1 on /media/disk type vfat (rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=07
this is to find out the drive name of your USB drive (the |grep disk bit just filters out the stuff we are not interested in) in this instance we discover it has mounted (opened) /dev/sdd1 which is a device called SCSI Disk D partition 1. We don’t want the drive to be mounted, so we now unmount it
alan@webbook:~$ sudo umount /dev/sdd1 alan@webbook:~$ cd Desktop alan@webbook:~/Desktop$ sudo dd if=intrepid1.img of=/dev/sdd
and that will start copying the data. The interesting thing is where we are copying it to, /dev/sdd not /dev/sdd1. We don’t copy it into the first partition on the USB drive, we copy it to the drive itself. The .img file contains a 1GB partition. After this is done you should be able to remove the stick and reinsert it and browse the new partition. To use it you need to set the bios settings to Boot from the USB stick an SD card would work just as well as it happens. THIS WILL TOTALLY DESTROY EVERYTHING ON YOUR DISK and drop on a new full disk image. After you change the BIOS settings and boot from it there is no “yes to continue” it is totally hands off from that point, as soon as it starts you might as well let it carry on to the end because everything you had before is gone.
If you have Windows then this dd for windows program might do a similar thing. If anyone has a friendlier way to get an image onto a USB stick I would be interested to hear about it – remember it is not just the files it is the bootloader and an active partition that we need.
If this sounds a bit scary then wait for some of the other penguins to jump off the ice and check for seals first

