Simple guide to create openSUSE bootable USB

Making a bootable live openSUSE USB is not that much easy as creating live USBs of other linux distributions but an elegant linux distribution deserves that. So to simplify things I have created this post with screenshots.
There is a guide located in the openSUSE official website. But newbies will find it difficult to follow that guide. Many users will try to use unetbootin to create live USB but it won't work for the openSUSE versions above 11.1.

opensuse bootable usb

Windows users

For windows users there is an application sized 31KB called SUSE Studio Image Writer.

Open that application.

suse image writer

WARNING: After this operation the data in the USB will be deleted permanently. So backup your data from the USB device.

Now press select button.

suse imager writer

Here I have put the downloaded openSUSE image file in desktop.

Select the path where the .iso file is in.

Enter *.* in the file name. Then press open.

suse imager writer

Now your image file will become visible. Select your .iso image file and press open.

suse imager writer

Now select Copy.

suse imager writer

Then select Yes.

suse imager writer

It will take some minutes. Be patient.

suse imager writer

If you are seeing the above image your USB is ready. Press OK and restart your system. Don't forget to edit your BIOS settings to boot via USB.

Linux users

First you must find out your USB device name in order to make a live openSUSE USB. Your device name will be like /dev/sda or /dev/sdd. . .

To find out your device name enter the following command in your terminal.

sudo fdisk -l
terminal fdisk-l

Here the highlighted one is the correct USB device name. Don't use the number following the device name in commands.

opensuse live usb

I have the openSUSE.iso file in the Downloads folder so I have entered the  command below.

cd Downloads

It will be easy if you copy the .iso file to your Downloads folder so that you can use the same command.

Enter the following command to your terminal to make a live bootable USB

sudo dd if=openSUSE-KDE-LiveCD-Build0476-i686.iso of=/dev/sdd bs=4M;sync

You must enter the name of your .iso file between if= and of.

So your code will look like

sudo dd if=yourisofile of=/dev/sdd bs=4M;sync

Here /dev/sdd is my USB device name you must replace it with yours.

To make things easy after entering sudo dd if=o press tab to auto fill the remaining text so after pressing tab there will be

sudo dd if=openSUSE-KDE-LiveCD-Build0476-i686.iso

If you see the above image the .iso file is successfully copied into the USB.

Enable USB boot in your BIOS and start using the live USB.

Conclusion

I hope this post serves well to make a live openSUSE USB. After using the live USB you must format it to use it for other purpose. Feel free to post your queries as comments......