3

I want install FreeBSD 10 , how to create USB Bootable ? i tried Unitbooten but its Not working This Post please Help !!!

Ashu_FalcoN
  • 2,118
  • 1
  • 19
  • 34

1 Answers1

3

I think we can use dd command to make the usb stick bootable. please try the command below.

#dd bs=4M if=freebsd.iso of=/dev/sdX && sync

where /dev/sdX is your usb drive device id.

Abhishek
  • 31
  • 3
  • Hello, the Command is not working.. – Ashu_FalcoN Oct 04 '14 at 14:40
  • 1
    @Ashu you have to be "super user" to run the "dd" command. so try the same command with "sudo" before everything,or just type "su".Type in your root password and be logged in as root,navigate to where the **.iso** is and just run the command as you see above. – Joseph Quaye May 20 '15 at 10:36