Difference between revisions of "Install Linux to a USB disk"

From Linuxintro
imported>ThorstenStaerk
(New page: To install an arbitrary Linux distribution onto a USB disk, follow this tutorial. Note that you do not need to have the distribution you want to install onto USB disk on your harddisk. Thi...)
 
imported>ThorstenStaerk
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
To install an arbitrary Linux distribution onto a USB disk, follow this tutorial. Note that you do not need to have the distribution you want to install onto USB disk on your harddisk. This has been tested with installing kubuntu 8.04 while running SUSE 11, but should work same or similar with any other distributions.
+
To install an arbitrary Linux distribution onto a USB disk, follow this tutorial. Note that you do not need to have the distribution you want to install onto USB disk on your harddisk. This has been tested with installing kubuntu 7.10 while running SUSE 11, but should work same or similar with any other distributions.
  
 
= Create a virtual disk =
 
= Create a virtual disk =
 
  dd if=/dev/zero of=newdistro.img bs=1024 count=10000000
 
  dd if=/dev/zero of=newdistro.img bs=1024 count=10000000
 +
 +
= Boot your distro virtually =
 +
qemu -cdrom /dev/sr1 -hda newdistro.img

Latest revision as of 17:59, 26 October 2008

To install an arbitrary Linux distribution onto a USB disk, follow this tutorial. Note that you do not need to have the distribution you want to install onto USB disk on your harddisk. This has been tested with installing kubuntu 7.10 while running SUSE 11, but should work same or similar with any other distributions.

Create a virtual disk

dd if=/dev/zero of=newdistro.img bs=1024 count=10000000

Boot your distro virtually

qemu -cdrom /dev/sr1 -hda newdistro.img