Create OpenSUSE bootable USB stick from Ubuntu?

OpenSUSE documentation () explicitly states that unetbootin wont work. They recommend using ImageWriter, but I haven't found a version for Ubuntu.

How can I create a bootable USB stick for OpenSUSE from Ubuntu?

2

3 Answers

@fossfreedom Note that I'm not trying to create a live USB stick. I just want to boot from the USB stick to install openSUSE. I read those instructions but it wasn't clear to me if they applied to the installation image as well as the live image. – becko 10 mins ago

Yes, those instructions do apply to installation USB creation. You will need to know the block device path of your USB stick. Use lsblk to find that out. In this example I am using /dev/sdb but it could be anything else.

Ensure the usb stick is unmounted with

udisksctl unmount --block-device /dev/sdb

and burn the iso image to the USB

dd if=/path/to/downloaded.iso of=/dev/sdX bs=4M

For instance,

dd if=/home/xieerqi/Desktop/openSUSE-Leap-42.1-DVD-x86_64.iso of=/dev/sdb bs=4M 

The command will take a long time to complete, so, be patient. You can use this

dd if=/home/xieerqi/Desktop/openSUSE-Leap-42.1-DVD-x86_64.iso of=/dev/sdb bs=4M && zenity --info --text="DONE"

to show a notification when the burning is over.

3

Imagewriter exists on Ubuntu:

Otherwise, you can do it without additionals packages in command line:

sudo dd if=openSUSE.iso of=/dev/sd*

Where * is the letter of your USB stick (example: sda, sdb, ...)

5

Install pv to view the progress of the operation:sudo apt-get install pvthen:sudo dd if=/path_to_the_opensuse_iso | pv | dd of=/dev/sd*where * is the letter assigned to your usb.

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

You Might Also Like