HowTo: LiveUSBHowTo: LiveUSBWhat do we need?First, we need to download the liveUSB from here: http://download.savannah.gnu.org/releases/gnetic/gnetic-live_0.4.1.zip We also need to have a memory stick with 200MB free and formatted with FAT16 or FAT32. If we use LinuxThe first thing you need is to know which file refers to the pendrive in the /dev folder. To find out, plug the USB drive and expect to be mounted, then open a terminal and write: $: dmesg | tailWe should show something like: [ 2110.167178] sd 2:0:0:0: [sde] 15636304 512-byte logical blocks: (8.00 GB/7.45 GiB)[ 2110.167672] sd 2:0:0:0: [sde] Write Protect is off [ 2110.167676] sd 2:0:0:0: [sde] Mode Sense: 03 00 00 00 [ 2110.167680] sd 2:0:0:0: [sde] Assuming drive cache: write through [ 2110.174835] sd 2:0:0:0: [sde] Assuming drive cache: write through [ 2110.174846] sde: sde1 [ 2110.178922] sd 2:0:0:0: [sde] Assuming drive cache: write through [ 2110.178930] sd 2:0:0:0: [sde] Attached SCSI removable disk [ 2110.796124] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [ 2282.289292] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! In this case, our USB will be /dev/sde. Therefore, the first partition is /dev/sde1, the second /dev/sde2, etc.. If we want to know where is our USB mounted, we must run: $: mount | grep sdeThen we will see a line like: /dev/sde1 on /media/USB type vfat (rw,nosuid,nodev,uhelper=udisks,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1)This indicates that the pendrive is mounted on /media/USB. Now, we follow the following steps:
If we use Windows
|