LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 04-08-2021, 01:00 AM   #1
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Rep: Reputation: 56
Method burning dvd.iso on USB stick


Hi all.

Is there any method burning a dvd.iso on USB disc as startup disc?

$ sudo fdisk -l
Code:
Disk /dev/sdc: 57.31 GiB, 61530439680 bytes, 120176640 sectors
.....

Device     Boot Start       End   Sectors  Size Id Type
/dev/sdc1          32 120176639 120176608 57.3G  c W95 FAT32 (LBA)
Please advise. Thanks

Regards.
 
Old 04-08-2021, 02:33 AM   #2
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
If an ISO is bootable then it can be mounted from DVD, USB or whatever... did you try a simple search like: ISO to USB?

Last edited by jamison20000e; 04-08-2021 at 02:35 AM. Reason: semantics
 
Old 04-08-2021, 03:21 AM   #3
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,699

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
If the image file is a hybrid ISO which most distributions install ISO files are these days then it can be written to USB and is bootable.

The simplest method is using the dd command but it can be risky because if you are not careful you can easily destroy your OS with a typo.

There are ways to make a non hybrid ISO bootable from USB but it does not work for all distributions. The main line distribution install instructions of choice usually has the best method to create the USB.

Last edited by michaelk; 04-08-2021 at 03:22 AM.
 
Old 04-08-2021, 03:58 AM   #4
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,484

Rep: Reputation: Disabled
There are a few ways to image copy an iso file to pendrive, I use dd, (see man dd for how to), just be absolutely sure you are copying to the correct disk.
 
Old 04-08-2021, 04:29 AM   #5
morning-tea
Member
 
Registered: Oct 2020
Posts: 65

Rep: Reputation: Disabled
Quote:
Originally Posted by jamison20000e View Post
If an ISO is bootable then it can be mounted from DVD, USB or whatever... did you try a simple search like: ISO to USB?
Hi,

I have been burning USB start-up disc for prolonged time on Ubuntu
-> Activities -> Make Start Disk
without fail.

But following ISOs which were download about 2 days ago on CentOS sites look very strange to me.
Code:
CentOS-Stream-8-x86_64-20210406-boot.iso           07-Apr-2021 06:21           758120448
CentOS-Stream-8-x86_64-20210406-dvd1.iso           07-Apr-2021 07:06          9895411712
I can't select them to create a start-up disk. Their checksums are correct.

I have posted my problem to CentOS forum but up to now without a reply.

Regards
 
Old 04-08-2021, 10:26 AM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,634

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by satimis View Post
Hi all.
Is there any method burning a dvd.iso on USB disc as startup disc?

$ sudo fdisk -l
Code:
Disk /dev/sdc: 57.31 GiB, 61530439680 bytes, 120176640 sectors
.....

Device     Boot Start       End   Sectors  Size Id Type
/dev/sdc1          32 120176639 120176608 57.3G  c W95 FAT32 (LBA)
Please advise. Thanks

Regards.
May want to check any of your several older threads, where you're asking about burning ISO images, such as this one from several years ago:
https://www.linuxquestions.org/quest...ck-4175419998/

You can also try putting "how to make bootable usb from iso image command line linux" into a search engine, and doing research of your own. Amazingly, this produces results like this:
https://www.howtogeek.com/414574/how...rive-in-linux/

...with pictures and complete instructions. And most distros ALSO will tell you how to create a bootable USB key on their own websites. But again...you don't tell us what distro you're trying to do this with, what version/distro of Linux you're using now (with what GUI), anything you've done/tried so far, etc.

As has been asked of you many times before, did you read the "Question Guidelines"?? You need to do basic research first, and if you can't figure it out provide details and ask a clear question (including showing your efforts) in your post. Because after *EIGHTEEN YEARS* here, you should be able to easily do such things.
 
Old 04-08-2021, 11:38 AM   #7
morning-tea
Member
 
Registered: Oct 2020
Posts: 65

Rep: Reputation: Disabled
Hi all,

Finally I ran
Code:
# dd if=CentOS-Stream-8-x86_64-20210406-dvd1.iso of=/dev/sdc
installing Cent0S 8 on a 64G Sandisk USB disc. The installation took 20 min to complete. It is a brand new USB disc

I don't know why "Make Start Disk" unable to work?

Now I have CentOS 8 installed on the PC

Thanks again for your advice.

Regards
 
Old 04-08-2021, 11:57 AM   #8
rng
Senior Member
 
Registered: Aug 2011
Posts: 1,198

Rep: Reputation: 47
Quote:
Originally Posted by morning-tea View Post
Hi all,

Finally I ran
Code:
# dd if=CentOS-Stream-8-x86_64-20210406-dvd1.iso of=/dev/sdc
installing Cent0S 8 on a 64G Sandisk USB disc. The installation took 20 min to complete. It is a brand new USB disc

I don't know why "Make Start Disk" unable to work?

Now I have CentOS 8 installed on the PC

Thanks again for your advice.

Regards
Just to clarify, you used the USB to boot and install CentOS and it worked perfectly. So, above given method and command are confirmed to work. Is that correct?
 
Old 04-08-2021, 02:36 PM   #9
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Once upon time I wrote this, never failed on me, although in another thread I noticed michaelk mentioned some ISO's won't take the USB treatment with isohybrid.
 
Old 04-08-2021, 06:28 PM   #10
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
If you're using a GUI, usually in a file manager and right clicking on an ISO offers "burn to disc?" Disk utilities like Brasero or K3B work too...
 
Old 04-08-2021, 06:53 PM   #11
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,634

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by jamison20000e View Post
If you're using a GUI, usually in a file manager and right clicking on an ISO offers "burn to disc?" Disk utilities like Brasero or K3B work too...
Yep...but as with numerous other threads from the OP, no details are provided. And we don't even know what version/distro they're trying to burn, but they do have a LOT of experience doing it, so the entire thread is a bit odd. After eighteen years, you'd think that would be something easily done...especially since most distros have instructions on how to do it on whatever website you download from.
 
Old 04-09-2021, 11:21 AM   #12
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
You can just use dd as above for most distros ISO's I've seen - just make sure you target the right device though. But a lot of distros also have their own GUI based app to do it too.

PS: You don't actually "burn" an ISO image on to a USB drive, you write the ISO image to it. You only "burn it" when you are talking about optical media (eg. CDs and DVDs).

Last edited by jsbjsb001; 04-09-2021 at 11:24 AM. Reason: added PS
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to isntall and use .iso dvd burning utility from live mint 16 DVD Downloads Folde bigapple48 Linux - Newbie 2 02-18-2014 01:13 AM
Best free/low-cost Windows software for burning Linux iso's to CD/DVD-R CD/DVD-RW linus72 Linux - Newbie 14 04-10-2009 09:02 AM
Burning DVD ISO file to something besides an DVD Samoth Linux - General 4 07-04-2006 05:08 PM
Burning ISO image (DVD+R, external DVD writer) swan2925 Linux - Software 6 06-02-2005 09:49 AM
Does anyone Know how to open either .iso.rz or these .iso.xdelta,.iso.bz2,.iso.lzma?? maximalred Debian 5 06-09-2004 06:15 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration