How to verify that the ISO I downloaded is bootable before I burn it?How do I upgrade to a newer version of Ubuntu?Can i update from “ubuntu-12.04-desktop-i386.iso” file?Difficulty trying to mount an ISO file “mount: you must specify the filesystem type”How do I upgrade from 12.10 to 13.04?How to safely upgrade from an older Ubuntu version to a newer one?Is the Ubuntu direct download exactly the same as the torrent?Bootable USB and CD not detectedHow to convert a bootable CD ISO image into a bootable DVDHow do I burn the Ubuntu ISO using Windows?How to burn iso of a program on USB?Roxio won't let me burn Ubuntu ISO to USB driveHow to burn 801MB iso fileDisk problem: Formatted before iso burnCombine Multiple ISO Files To Burn A Single Bootable ISO ImageBurn ISO in USB - Ubuntu 14.04 LTSHow to make bootable usb from part iso files?I downloaded Ubuntu but I can't find the ISO file
Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?
15% tax on $7.5k earnings. Is that right?
When were female captains banned from Starfleet?
Is this toilet slogan correct usage of the English language?
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
Pre-mixing cryogenic fuels and using only one fuel tank
US tourist/student visa
Delete multiple columns using awk or sed
Is there a RAID 0 Equivalent for RAM?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
Multiplicative persistence
How much of a Devil Fruit must be consumed to gain the power?
Does the Linux kernel need a file system to run?
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
Is my low blitz game drawing rate at www.chess.com an indicator that I am weak in chess?
Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?
A variation to the phrase "hanging over my shoulders"
What does Apple's new App Store requirement mean
Change the color of a single dot in `ddot` symbol
Can I say "fingers" when referring to toes?
It grows, but water kills it
How to make money from a browser who sees 5 seconds into the future of any web page?
Why Shazam when there is already Superman?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
How to verify that the ISO I downloaded is bootable before I burn it?
How do I upgrade to a newer version of Ubuntu?Can i update from “ubuntu-12.04-desktop-i386.iso” file?Difficulty trying to mount an ISO file “mount: you must specify the filesystem type”How do I upgrade from 12.10 to 13.04?How to safely upgrade from an older Ubuntu version to a newer one?Is the Ubuntu direct download exactly the same as the torrent?Bootable USB and CD not detectedHow to convert a bootable CD ISO image into a bootable DVDHow do I burn the Ubuntu ISO using Windows?How to burn iso of a program on USB?Roxio won't let me burn Ubuntu ISO to USB driveHow to burn 801MB iso fileDisk problem: Formatted before iso burnCombine Multiple ISO Files To Burn A Single Bootable ISO ImageBurn ISO in USB - Ubuntu 14.04 LTSHow to make bootable usb from part iso files?I downloaded Ubuntu but I can't find the ISO file
How can I check that the ISO image I've downloaded is bootable, before I burn it?
boot downloads iso cd burning
add a comment |
How can I check that the ISO image I've downloaded is bootable, before I burn it?
boot downloads iso cd burning
add a comment |
How can I check that the ISO image I've downloaded is bootable, before I burn it?
boot downloads iso cd burning
How can I check that the ISO image I've downloaded is bootable, before I burn it?
boot downloads iso cd burning
boot downloads iso cd burning
edited Jun 6 '18 at 14:41
U880D
1035
1035
asked Mar 24 '11 at 16:50
Tom BritoTom Brito
3,663265389
3,663265389
add a comment |
add a comment |
7 Answers
7
active
oldest
votes
isoinfo can probably tell you if it has the right files to boot if you want quick and dirty.isoinfo -l -i is_it_bootable.iso
will list the directory structure so you can check for files a live cd / bootable cd should have.
isoinfo -d -i is_it_bootable.iso
will tell you if the CD has an El Torito section. Ubuntu's live CD iso reports:
Eltorito validation header:
Hid 1
Arch 0 (x86)
ID ''
Key 55 AA
Eltorito defaultboot header:
Bootid 88 (bootable)
Boot media 0 (No Emulation Boot)
Load segment 0
Sys type 0
Nsect 4
Bootoff 8F 143
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
add a comment |
You check the MD5SUM. See https://help.ubuntu.com/community/HowToMD5SUM.
The iso at http://www.ubuntu.com/desktop/get-ubuntu/download is guaranteed by ubuntu to be bootable, a valid MD5SUM therefore asserts that the iso is bootable.
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
If the file on the source site was bootable, andmd5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.
– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
add a comment |
Performing a cryptographic hash verification of the ISO file you downloaded consists of the following steps.
Open a terminal and type the following:
md5sum
Note: there's a space after the
md5sum
.Now open Nautilus and browse to the folder containing the ISO file.
- Drag the ISO file to the open terminal window. This will insert the path / filename of the ISO file into the terminal window.
- Press Enter in the terminal window.
- The first part of the output is the MD5 hash of the CD.
- Go here and find the directory that corresponds to your release and find the file
MD5SUMS
. Compare the hash of your ISO file to the appropriate entry in that file.
If the two hashes do not match, then your ISO file is corrupt and you will need to download it again.
add a comment |
If you have a good-enough CPU, install VirtualBOX, and setup some Virtual Machine. Make it point to the ISO as the CDROM, and configure it to first boot from CDROM. It willboot from the ISO file directly, without actually having to burn the file.
Another thing that I always do, as a general practice, is to actually put the ISO on a USB key and boot from it, which is something now possible with most computers. UNETBOOTIN (just google it) will do this for you. Just expect the USB disk to be completely wiped.
I now never boot from a CDROM anymore. I can't remember the last time I actually burned a CDROM.
add a comment |
A superficial way is to run file
. In the end of the line it prints whether iso is bootable, e.g.
$ file fd11src.iso
fd11src.iso: ISO 9660 CD-ROM filesystem data 'FD11SRC' (bootable)
A more profound way is to use an emulator like qemu:
qemu-system-x86_64 -boot d -cdrom image.iso -m 512
If it loads, then everything is fine. Despite the complete emulation, to run it is very easy and not resource-consuming.
These methods should work for any Linux distribution.
add a comment |
HI, for any distro you are trying to download just use LinuxLive Usb creator it will download the right iso for you and verify at the same time hope this helps.
add a comment |
It's very simple. We will go step by step...
- By using PowerISO.
- First download and install PowerISO.
- Open PowerISO.
- Then click on FILE and then on OPEN and browse and open the ISO file.
- When you have opened that ISO file if that file is bootable then in the lower left end, it shows "Bootable image". If not a bootable image, then it shows "Nonbootable image".
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f31888%2fhow-to-verify-that-the-iso-i-downloaded-is-bootable-before-i-burn-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
isoinfo can probably tell you if it has the right files to boot if you want quick and dirty.isoinfo -l -i is_it_bootable.iso
will list the directory structure so you can check for files a live cd / bootable cd should have.
isoinfo -d -i is_it_bootable.iso
will tell you if the CD has an El Torito section. Ubuntu's live CD iso reports:
Eltorito validation header:
Hid 1
Arch 0 (x86)
ID ''
Key 55 AA
Eltorito defaultboot header:
Bootid 88 (bootable)
Boot media 0 (No Emulation Boot)
Load segment 0
Sys type 0
Nsect 4
Bootoff 8F 143
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
add a comment |
isoinfo can probably tell you if it has the right files to boot if you want quick and dirty.isoinfo -l -i is_it_bootable.iso
will list the directory structure so you can check for files a live cd / bootable cd should have.
isoinfo -d -i is_it_bootable.iso
will tell you if the CD has an El Torito section. Ubuntu's live CD iso reports:
Eltorito validation header:
Hid 1
Arch 0 (x86)
ID ''
Key 55 AA
Eltorito defaultboot header:
Bootid 88 (bootable)
Boot media 0 (No Emulation Boot)
Load segment 0
Sys type 0
Nsect 4
Bootoff 8F 143
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
add a comment |
isoinfo can probably tell you if it has the right files to boot if you want quick and dirty.isoinfo -l -i is_it_bootable.iso
will list the directory structure so you can check for files a live cd / bootable cd should have.
isoinfo -d -i is_it_bootable.iso
will tell you if the CD has an El Torito section. Ubuntu's live CD iso reports:
Eltorito validation header:
Hid 1
Arch 0 (x86)
ID ''
Key 55 AA
Eltorito defaultboot header:
Bootid 88 (bootable)
Boot media 0 (No Emulation Boot)
Load segment 0
Sys type 0
Nsect 4
Bootoff 8F 143
isoinfo can probably tell you if it has the right files to boot if you want quick and dirty.isoinfo -l -i is_it_bootable.iso
will list the directory structure so you can check for files a live cd / bootable cd should have.
isoinfo -d -i is_it_bootable.iso
will tell you if the CD has an El Torito section. Ubuntu's live CD iso reports:
Eltorito validation header:
Hid 1
Arch 0 (x86)
ID ''
Key 55 AA
Eltorito defaultboot header:
Bootid 88 (bootable)
Boot media 0 (No Emulation Boot)
Load segment 0
Sys type 0
Nsect 4
Bootoff 8F 143
edited Sep 22 '14 at 4:15
Dev Chakraborty
33
33
answered Mar 24 '11 at 19:01
charlesbridgecharlesbridge
853410
853410
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
add a comment |
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
OMG this produces a ton of output! Why would you recommend this?! How could anyone possibly read it?
– Jonathan Cast
Jul 16 '18 at 18:53
add a comment |
You check the MD5SUM. See https://help.ubuntu.com/community/HowToMD5SUM.
The iso at http://www.ubuntu.com/desktop/get-ubuntu/download is guaranteed by ubuntu to be bootable, a valid MD5SUM therefore asserts that the iso is bootable.
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
If the file on the source site was bootable, andmd5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.
– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
add a comment |
You check the MD5SUM. See https://help.ubuntu.com/community/HowToMD5SUM.
The iso at http://www.ubuntu.com/desktop/get-ubuntu/download is guaranteed by ubuntu to be bootable, a valid MD5SUM therefore asserts that the iso is bootable.
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
If the file on the source site was bootable, andmd5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.
– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
add a comment |
You check the MD5SUM. See https://help.ubuntu.com/community/HowToMD5SUM.
The iso at http://www.ubuntu.com/desktop/get-ubuntu/download is guaranteed by ubuntu to be bootable, a valid MD5SUM therefore asserts that the iso is bootable.
You check the MD5SUM. See https://help.ubuntu.com/community/HowToMD5SUM.
The iso at http://www.ubuntu.com/desktop/get-ubuntu/download is guaranteed by ubuntu to be bootable, a valid MD5SUM therefore asserts that the iso is bootable.
edited Mar 24 '11 at 23:04
Jorge Castro
37k106422617
37k106422617
answered Mar 24 '11 at 17:08
user4815
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
If the file on the source site was bootable, andmd5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.
– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
add a comment |
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
If the file on the source site was bootable, andmd5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.
– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
4
4
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
The md5sum tells if the iso is bootable? (I want to know if it's bootable, not if it was correctly downloaded)
– Tom Brito
Mar 24 '11 at 17:22
2
2
If the file on the source site was bootable, and
md5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.– waltinator
Jan 1 '12 at 19:28
If the file on the source site was bootable, and
md5sum
gives the same result on both copies, then there's an insignificant chance that the files differ, and you can assume that your copy is bootable, too.– waltinator
Jan 1 '12 at 19:28
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
For me the best approach seems to be to validate the El Torito header.
– U880D
Jun 6 '18 at 11:13
add a comment |
Performing a cryptographic hash verification of the ISO file you downloaded consists of the following steps.
Open a terminal and type the following:
md5sum
Note: there's a space after the
md5sum
.Now open Nautilus and browse to the folder containing the ISO file.
- Drag the ISO file to the open terminal window. This will insert the path / filename of the ISO file into the terminal window.
- Press Enter in the terminal window.
- The first part of the output is the MD5 hash of the CD.
- Go here and find the directory that corresponds to your release and find the file
MD5SUMS
. Compare the hash of your ISO file to the appropriate entry in that file.
If the two hashes do not match, then your ISO file is corrupt and you will need to download it again.
add a comment |
Performing a cryptographic hash verification of the ISO file you downloaded consists of the following steps.
Open a terminal and type the following:
md5sum
Note: there's a space after the
md5sum
.Now open Nautilus and browse to the folder containing the ISO file.
- Drag the ISO file to the open terminal window. This will insert the path / filename of the ISO file into the terminal window.
- Press Enter in the terminal window.
- The first part of the output is the MD5 hash of the CD.
- Go here and find the directory that corresponds to your release and find the file
MD5SUMS
. Compare the hash of your ISO file to the appropriate entry in that file.
If the two hashes do not match, then your ISO file is corrupt and you will need to download it again.
add a comment |
Performing a cryptographic hash verification of the ISO file you downloaded consists of the following steps.
Open a terminal and type the following:
md5sum
Note: there's a space after the
md5sum
.Now open Nautilus and browse to the folder containing the ISO file.
- Drag the ISO file to the open terminal window. This will insert the path / filename of the ISO file into the terminal window.
- Press Enter in the terminal window.
- The first part of the output is the MD5 hash of the CD.
- Go here and find the directory that corresponds to your release and find the file
MD5SUMS
. Compare the hash of your ISO file to the appropriate entry in that file.
If the two hashes do not match, then your ISO file is corrupt and you will need to download it again.
Performing a cryptographic hash verification of the ISO file you downloaded consists of the following steps.
Open a terminal and type the following:
md5sum
Note: there's a space after the
md5sum
.Now open Nautilus and browse to the folder containing the ISO file.
- Drag the ISO file to the open terminal window. This will insert the path / filename of the ISO file into the terminal window.
- Press Enter in the terminal window.
- The first part of the output is the MD5 hash of the CD.
- Go here and find the directory that corresponds to your release and find the file
MD5SUMS
. Compare the hash of your ISO file to the appropriate entry in that file.
If the two hashes do not match, then your ISO file is corrupt and you will need to download it again.
edited Apr 2 '15 at 18:02
answered Nov 29 '11 at 5:53
Nathan OsmanNathan Osman
21.1k32144237
21.1k32144237
add a comment |
add a comment |
If you have a good-enough CPU, install VirtualBOX, and setup some Virtual Machine. Make it point to the ISO as the CDROM, and configure it to first boot from CDROM. It willboot from the ISO file directly, without actually having to burn the file.
Another thing that I always do, as a general practice, is to actually put the ISO on a USB key and boot from it, which is something now possible with most computers. UNETBOOTIN (just google it) will do this for you. Just expect the USB disk to be completely wiped.
I now never boot from a CDROM anymore. I can't remember the last time I actually burned a CDROM.
add a comment |
If you have a good-enough CPU, install VirtualBOX, and setup some Virtual Machine. Make it point to the ISO as the CDROM, and configure it to first boot from CDROM. It willboot from the ISO file directly, without actually having to burn the file.
Another thing that I always do, as a general practice, is to actually put the ISO on a USB key and boot from it, which is something now possible with most computers. UNETBOOTIN (just google it) will do this for you. Just expect the USB disk to be completely wiped.
I now never boot from a CDROM anymore. I can't remember the last time I actually burned a CDROM.
add a comment |
If you have a good-enough CPU, install VirtualBOX, and setup some Virtual Machine. Make it point to the ISO as the CDROM, and configure it to first boot from CDROM. It willboot from the ISO file directly, without actually having to burn the file.
Another thing that I always do, as a general practice, is to actually put the ISO on a USB key and boot from it, which is something now possible with most computers. UNETBOOTIN (just google it) will do this for you. Just expect the USB disk to be completely wiped.
I now never boot from a CDROM anymore. I can't remember the last time I actually burned a CDROM.
If you have a good-enough CPU, install VirtualBOX, and setup some Virtual Machine. Make it point to the ISO as the CDROM, and configure it to first boot from CDROM. It willboot from the ISO file directly, without actually having to burn the file.
Another thing that I always do, as a general practice, is to actually put the ISO on a USB key and boot from it, which is something now possible with most computers. UNETBOOTIN (just google it) will do this for you. Just expect the USB disk to be completely wiped.
I now never boot from a CDROM anymore. I can't remember the last time I actually burned a CDROM.
answered Mar 24 '11 at 17:34
jfmessierjfmessier
4,18132026
4,18132026
add a comment |
add a comment |
A superficial way is to run file
. In the end of the line it prints whether iso is bootable, e.g.
$ file fd11src.iso
fd11src.iso: ISO 9660 CD-ROM filesystem data 'FD11SRC' (bootable)
A more profound way is to use an emulator like qemu:
qemu-system-x86_64 -boot d -cdrom image.iso -m 512
If it loads, then everything is fine. Despite the complete emulation, to run it is very easy and not resource-consuming.
These methods should work for any Linux distribution.
add a comment |
A superficial way is to run file
. In the end of the line it prints whether iso is bootable, e.g.
$ file fd11src.iso
fd11src.iso: ISO 9660 CD-ROM filesystem data 'FD11SRC' (bootable)
A more profound way is to use an emulator like qemu:
qemu-system-x86_64 -boot d -cdrom image.iso -m 512
If it loads, then everything is fine. Despite the complete emulation, to run it is very easy and not resource-consuming.
These methods should work for any Linux distribution.
add a comment |
A superficial way is to run file
. In the end of the line it prints whether iso is bootable, e.g.
$ file fd11src.iso
fd11src.iso: ISO 9660 CD-ROM filesystem data 'FD11SRC' (bootable)
A more profound way is to use an emulator like qemu:
qemu-system-x86_64 -boot d -cdrom image.iso -m 512
If it loads, then everything is fine. Despite the complete emulation, to run it is very easy and not resource-consuming.
These methods should work for any Linux distribution.
A superficial way is to run file
. In the end of the line it prints whether iso is bootable, e.g.
$ file fd11src.iso
fd11src.iso: ISO 9660 CD-ROM filesystem data 'FD11SRC' (bootable)
A more profound way is to use an emulator like qemu:
qemu-system-x86_64 -boot d -cdrom image.iso -m 512
If it loads, then everything is fine. Despite the complete emulation, to run it is very easy and not resource-consuming.
These methods should work for any Linux distribution.
answered Jan 18 '16 at 18:49
Yaroslav NikitenkoYaroslav Nikitenko
1348
1348
add a comment |
add a comment |
HI, for any distro you are trying to download just use LinuxLive Usb creator it will download the right iso for you and verify at the same time hope this helps.
add a comment |
HI, for any distro you are trying to download just use LinuxLive Usb creator it will download the right iso for you and verify at the same time hope this helps.
add a comment |
HI, for any distro you are trying to download just use LinuxLive Usb creator it will download the right iso for you and verify at the same time hope this helps.
HI, for any distro you are trying to download just use LinuxLive Usb creator it will download the right iso for you and verify at the same time hope this helps.
answered Apr 1 '11 at 23:47
user13438
add a comment |
add a comment |
It's very simple. We will go step by step...
- By using PowerISO.
- First download and install PowerISO.
- Open PowerISO.
- Then click on FILE and then on OPEN and browse and open the ISO file.
- When you have opened that ISO file if that file is bootable then in the lower left end, it shows "Bootable image". If not a bootable image, then it shows "Nonbootable image".
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
add a comment |
It's very simple. We will go step by step...
- By using PowerISO.
- First download and install PowerISO.
- Open PowerISO.
- Then click on FILE and then on OPEN and browse and open the ISO file.
- When you have opened that ISO file if that file is bootable then in the lower left end, it shows "Bootable image". If not a bootable image, then it shows "Nonbootable image".
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
add a comment |
It's very simple. We will go step by step...
- By using PowerISO.
- First download and install PowerISO.
- Open PowerISO.
- Then click on FILE and then on OPEN and browse and open the ISO file.
- When you have opened that ISO file if that file is bootable then in the lower left end, it shows "Bootable image". If not a bootable image, then it shows "Nonbootable image".
It's very simple. We will go step by step...
- By using PowerISO.
- First download and install PowerISO.
- Open PowerISO.
- Then click on FILE and then on OPEN and browse and open the ISO file.
- When you have opened that ISO file if that file is bootable then in the lower left end, it shows "Bootable image". If not a bootable image, then it shows "Nonbootable image".
edited 2 hours ago
Kevin Bowen
14.7k155970
14.7k155970
answered Nov 7 '12 at 14:51
vijay dewanivijay dewani
7112
7112
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
add a comment |
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
This looks a lot like a Windows program.
– guntbert
Aug 12 '13 at 10:22
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
@guntbert They just released a Linux version of the program.
– Ploni
3 hours ago
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f31888%2fhow-to-verify-that-the-iso-i-downloaded-is-bootable-before-i-burn-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown