OpenSUSE documentation (https://en.opensuse.org/SDB:Live_USB_stick) 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?
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
and burn the iso image to the USB
For instance,
The command will take a long time to complete, so, be patient. You can use this
to show a notification when the burning is over.
Imagewriter exists on Ubuntu: https://apps.ubuntu.com/cat/applications/precise/usb-imagewriter/
Otherwise, you can do it without additionals packages in command line:
Where * is the letter of your USB stick (example: sda, sdb, ...)
Install pv to view the progress of the operation:
sudo apt-get install pv
then:sudo dd if=/path_to_the_opensuse_iso | pv | dd of=/dev/sd*
where * is the letter assigned to your usb.