Difference between revisions of "Build a Live USB disk"

From Archivematica
Jump to navigation Jump to search
(Created page with 'find out the location of your USB drive you can use the mount command to do this: <pre><code>mount</code></pre> the usb drive is likely on /dev/sdb (but be very sure of your dr...')
 
Line 2: Line 2:
  
 
you can use the mount command to do this:
 
you can use the mount command to do this:
<pre><code>mount</code></pre>
+
<pre>mount</pre>
  
 
the usb drive is likely on /dev/sdb (but be very sure of your drive. You will '''loose all data''' on what ever drive is specified as 'of=')
 
the usb drive is likely on /dev/sdb (but be very sure of your drive. You will '''loose all data''' on what ever drive is specified as 'of=')
<pre><code>sudo dd if=disk.raw of=/dev/sdb bs=4k</code></pre>
+
<pre>sudo dd if=disk.raw of=/dev/sdb bs=4k</pre>
  
 
this will take time, ~20 minutes
 
this will take time, ~20 minutes

Revision as of 15:04, 1 April 2010

find out the location of your USB drive

you can use the mount command to do this:

mount

the usb drive is likely on /dev/sdb (but be very sure of your drive. You will loose all data on what ever drive is specified as 'of=')

sudo dd if=disk.raw of=/dev/sdb bs=4k

this will take time, ~20 minutes