0

I am trying to install RedHat OS on my laptop. I tried to create live USB disc from .iso file in ubuntu 14.10 by using startup disk creator. But I am not able to select any other .iso file than ubuntu iso files. Is there a solution to create live USB of RedHat?

2 Answers2

1
  • Rename the file to one it does accept. It will probably only check the filename so rename it to one Ubuntu uses. But in case that does not work...

  • you could use command line. The option to do this is with dd. See: How to create a bootable Ubuntu USB flash drive from terminal? Mind though to take special care about the device you do this on. If you make a mistake you can kill a disk you wanted to keep ;)

Rinzwind
  • 309,379
1

You make a live usb with dd

dd if=/path/to/image.iso of=/dev/device bs=1M

Adjust your path and device as needed.

See https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Installation_Guide/sect-making-usb-media.html for details

Panther
  • 104,528