The last paragraph says,

The ISO image now uses a 'hybrid' system: it can also be copied onto an USB stick without formating it (using dd).

Does anyone know how to do this?

link|improve this question
1  
DEAR GOD BE CAREFUL WITH dd! It's nicknamed disk destroyer for a reason. – Rob Oct 29 '11 at 20:49
feedback

migrated from stackoverflow.com Oct 29 '11 at 11:11

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 3 down vote accepted

dd if=/path/to/your/isofile of=/your/usb/disk try this.

link|improve this answer
should I include ~/ in path ? – weis26 Oct 29 '11 at 10:14
1  
@weis26: You can, ~ is just replace with the current users home directory path. Use it if either the if or of paths are in your home directory sure... – Matt Joiner Oct 29 '11 at 10:20
1  
@weis26 Depends on whether you want to use a relative path or absolute path. By the way, using dd would make your usb device read-only and to make it a 'normal' usb device you shall re-partition the device. – Pengyu CHEN Oct 29 '11 at 10:21
1  
bs=8M or so would speed this up quite a bit... also, should mention using mount to see what disk is mounted at /media/83... – Kimvais Oct 29 '11 at 10:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.