Advertisement
mightyroot

linux dd ISO to USB

Jan 10th, 2013
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. dd if=/home/suse/myappliance.raw of=/dev/sdb bs=4k conv=fdatasync
  2.  
  3.  
  4.  fdisk /dev/sdb
  5.  The number of cylinders for this disk is set to 3935.
  6.  There is nothing wrong with that, but this is larger than 1024,
  7.  and could in certain setups cause problems with:
  8.  1) software that runs at boot time (e.g., old versions of LILO)
  9.  2) booting and partitioning software from other OSs
  10.  (e.g., DOS FDISK, OS/2 FDISK)
  11.  
  12.  Command (m for help): n
  13.  Command action
  14.  e extended
  15.  p primary partition (1-4)
  16.  p
  17.  Partition number (1-4): 2
  18.  First cylinder (661-3935, default 661):
  19.  Using default value 661
  20.  Last cylinder, +cylinders or +size{K,M,G} (661-3935, default 3935):
  21.  Using default value 3935
  22.  
  23.  Command (m for help): w
  24.  The partition table has been altered!
  25.  
  26.  Calling ioctl() to re-read partition table.
  27.  Syncing disks.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement