|
Translations |
BootingFromUSBIf you got a USB memory stick you can boot gNewSense live as with the cd. What you will need:
Make your stick bootableThis will guide you to make the stick bootable. We are going to use syslinux for it. Install syslinuxChoose the operating system you run. GNU/Linux or Windows. GNU/LinuxSyslinux may already be installed in your system. Type syslinux in a terminal. If the command is not found you have to install it from your distribution's repository. You can also run the following commands in a terminal: wget http://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-3.63.tar.bz2 WindowsDownload a syslinux zip-file from http://www.kernel.org/pub/linux/utils/boot/syslinux/. Mount the stickIn the most modern operating systems USB memory sticks get mounted automatically. Run syslinuxRun the syslinux command shown below, in the window we set up earlier, assuming drive name is sdb1 or F:. Copy files from the gNewSense isoDownload a gNewSense iso from http://cdimage.gnewsense.org/
You can burn the iso to a cd and copy the files to the stick, but it is faster to mount the iso. Copy the casper directory to the memory stick. Copy the content of the isolinux directory to the memory stick. Rename isolinux.bin to syslinux.bin. Rename isolinux.cfg to syslinux.cfg. Unmount the memory stick to write cache. Memory sticks not automounted-fixIf you installed gNewSense from the memory stick the same memory stick is not automatically mounted. This is caused by the stick being added to the fstab file. Plug in your memory stick and check in dmesg what it got for a device name. dmesg | tail Then edit fstab and remove the line containing the device name. sudo gedit /etc/fstab For example: /dev/sdb1 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0 |