M BUZZ CRAZE NEWS
// general

How to burn .iso file to external hard-drive

By Emma Johnson

I need to use an external hard drive, the same as a Live-USB, I used to download an ISO file and burn/copy it's content to a USB using a software like unetbootin, but unetbootin does not detect a my external hard drive (a file manger do).

If you know any way that I can try/install a distro without using a USB/CD I will be really happy to use your help 😊

2 Answers

I understand that you want to use your external hard disk as your installation source, in exactly the same way you would use a DVD or USB stick. If this is the case, a simple command can do what you want but warning, it is a very strong command and incorrect use may and will destroy data completely, so use it very carefully:

sudo dd if=iso_file_path of=/dev/sdx bs=4M && sudo sync

where x is your external hard disk letter.

  1. Make sure the external drive is not mounted when you run this command.
  2. Make sure you use the correct drive letter otherwise you will wipe all data on whatever drive the letter you use refers to, even if it is your system drive, without any prior notice or verification.

You will not see any progress indicator while the .iso is being copied. Just wait for the prompt to reappear after the copy is complete.

After this, you should be able to boot your system from your external drive by using it as boot media from your BIOS's boot menu.

4

You can use mkusb for this purpose. It can use 'any' drive as target drive. When it detects a hard disk drive, there might be an extra pop up window asking if you really want to overwrite this drive.

See this link and links from it,

If you run standard Ubuntu, you need an extra instruction to get the repository Universe. (Kubuntu, Lubuntu ... Xubuntu have the repository Universe activated automatically.)

sudo add-apt-repository universe # only for standard Ubuntu
sudo add-apt-repository ppa:mkusb/ppa # and press Enter
sudo apt-get update
sudo apt-get install mkusb mkusb-nox usb-pack-efi

enter image description here

enter image description here

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy