LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 08-15-2012, 06:39 AM   #1
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Rep: Reputation: 56
Problem on creating LiveCD and LiveUSB


Hi all,


Ubuntu 12.04 desktop, 64bit


I have following ISO download on Fedora website
Fedora-17-x86_64-Live-Desktop.iso

Verified sha256sum correct

1)
Create LiveUSB by running
# dd if=/path/to/.iso of=/dev/sdb

It went throught without complaint. But the USB can't boot

2)
Ran;
Brasero Disc Burner
to burn CD, without complaint

But the LiveCD can't boot;
Code:
mount: wrong fs type, bad option, bad superblock on /dev/mapper/live-rw
.....
dracut Warning: Can/t mount root filesystem
Dropping to debu shell
dracyt:/# [ 239.943866] end_request: I/O error, dev sr0, sector 1319528
......

I burned it twice without solution.

Please help. TIA

B.R.
satimis
 
Old 08-15-2012, 07:54 AM   #2
SonnySee
Member
 
Registered: Aug 2010
Distribution: Unbuntu 11.10 beta
Posts: 78

Rep: Reputation: 10
First step would be to make sure that your Bios is set to boot from USB or from CD and not your hard drive as it's initial boot device.
 
Old 08-15-2012, 08:29 AM   #3
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by SonnySee View Post
First step would be to make sure that your Bios is set to boot from USB or from CD and not your hard drive as it's initial boot device.
Absolutely sure.

In one occasion Fedora 17 started. But after installation completed the new OS couldn't start.

It hangs on;
GRUB Loading stage1.5

GRUB loading, please wait ,,
Error 15

I tried pressing [ESC] to start GRUB menu without effect. From there I could start RESCUE mode
 
Old 08-15-2012, 09:53 AM   #4
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,508

Rep: Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490
Quote:
Ubuntu 12.04 desktop, 64bit
Is this your primary system, I assume?
I don't use Fedora although I occassionally try it and tried Fedora 17 in VBox. Fedora has both Grub Legacy and Grub2 available if you look in the /boot directory and I believe it defaults to Grub2 during installation, not sure? I'm wondering where the stage1_5 error comes from as there is no stage1_5 file in Grub2?

Quote:
In one occasion Fedora 17 started. But after installation completed the new OS couldn't start.
Booted from the CD/USB and the installation completed?? Not available on reboot? Did you install Fedora Grub to its /boot partition or / partition? Run update-grub from Ubuntu?
 
Old 08-15-2012, 05:30 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
Did you test the md5 or shal of the iso download? Did you burn it at the slowest speed? Did you use good quality disk?

Did you try this for the usb?
su -c 'dd if=Fedora-16-x86_64-Live-Desktop.iso of=/dev/sd''X'' bs=8M'

Also when you boot to the usb you may have to start from power off. Insert usb then go to bios to view how your system can support it. Most that I have used will show the usb as a hard drive choice and will not boot from trying to boot first to a usb device.

Last edited by jefro; 08-15-2012 at 05:34 PM.
 
Old 08-16-2012, 04:33 AM   #6
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by jefro View Post
Did you test the md5 or shal of the iso download? Did you burn it at the slowest speed? Did you use good quality disk?
1) Yes, sha256sum has been verified correct

2) There is NO speed setting on Brasero Disc Burner

3) I burned the ISO on TDK RW disc. I have been using quality RW burning ISO for years in the past without failure.


Quote:
Did you try this for the usb?
su -c 'dd if=Fedora-16-x86_64-Live-Desktop.iso of=/dev/sd''X'' bs=8M'
I ran;
sudo dd if=/path/to/Fedora17_ISO of=/dev/sdb

I have been running this command writing ISO on USB for long time without much problem.

/dev/sdb was found with;
sudo fdisk -l


Quote:
Also when you boot to the usb you may have to start from power off. Insert usb then go to bios to view how your system can support it. Most that I have used will show the usb as a hard drive choice and will not boot from trying to boot first to a usb device.
I always did the steps similar to your advice. The USB was detected by BIOS as HD


Problem has been partially solved as follow;

I have another HD running Ubuntu 12.04 desktop, 64bit, on this PC and performed following steps;

1) Booted up the PC with Ubuntu HD.
2) Ran;
sudo fdisk -l
to detect the HD for installing Fedora 17. Found /dev/sda
3) Ran,
sudo dd if=/dev/zero of=/dev/sda bs=1M
to wipe out all data on it.
4) After finish shut down the PC
5) Disconnected the Ubuntu HD
6) Plugin the USB stick and Started the PC
7) Set boot USB as HD on BIOS

To my surprise this time the USB stick worked. Then installed Fedora 17 desktop, 64bit, on the HD

Now Fedora 17 is running the PC without problem. But still I can't boot the Live CD, hanging on "dracut warning: can't mount root.

It looks quite strange to me.

Thanks.

B.R.
satimis

Last edited by satimis; 08-16-2012 at 04:38 AM.
 
Old 08-16-2012, 04:45 AM   #7
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by yancek View Post
Is this your primary system, I assume?
Yes.

Quote:
I don't use Fedora although I occassionally try it and tried Fedora 17 in VBox. Fedora has both Grub Legacy and Grub2 available if you look in the /boot directory and I believe it defaults to Grub2 during installation, not sure? I'm wondering where the stage1_5 error comes from as there is no stage1_5 file in Grub2?
Fedora uses Grub2


Quote:
Booted from the CD/USB and the installation completed?? Not available on reboot?
I ran USB to install Fedora17 on the HD without complaint.


Quote:
Did you install Fedora Grub to its /boot partition or / partition? Run update-grub from Ubuntu?
Yes on /boot partition, LVM

Thanks

B.R.
satimis
 
  


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 edit initrd to fit your liveUSB - liveUSB preparation (openSUSE and others) deckoff Linux - General 7 01-08-2012 02:58 AM
LXer: LiveUSB and LiveCD: devil OpenBSD twins LXer Syndicated Linux News 0 12-07-2011 07:31 PM
Ubuntu 9.10 LiveCD (works) vs LiveUSB (doesn't) bltblt Ubuntu 8 01-16-2010 10:41 PM
Creating a LiveCD stfusonxxxx Linux - Newbie 1 11-20-2007 07:49 AM
Creating an ISO for a livecd gvp87 Linux - Software 2 07-24-2007 12:13 PM

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

All times are GMT -5. The time now is 10:27 AM.

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