Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 9th July 2009, 08:50 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
ok that gets some results, and error but a result.
error 17, cannot mount selected partition
Reply With Quote
  #17  
Old 9th July 2009, 10:14 PM
chrisk Offline
Registered User
 
Join Date: Nov 2008
Location: Surrey, BC
Posts: 33
Night Runner,

I've been dealing with grub entries myself today and ended up finding an approach that worked for me, maybe it'll work for you. See http://forums.fedoraforum.org/showthread.php?t=226027

Chris
Reply With Quote
  #18  
Old 9th July 2009, 10:34 PM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,933
OK, how about posting the result of this?
Code:
su -c '/sbin/fdisk -l'
Oh yeah, I already asked for that
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #19  
Old 9th July 2009, 10:48 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Night Runner View Post
Code:
Note you do not have to rerun grub after making changes to this file
Notice: you have a /boot partition. This means that all kernel and initrd paths are relative to /boot/, eg. root (hd0,0)

#boot=/dev/sda
default=0
timeout=0
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.29.4-167.fcll.i586)
    root (hd0,0)
    kernel /vmlinuz-2.6.29.4-167.fcll.i586 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.29.4-167.fcll.i586.img

title Fedora new (2.6.30)
    root (hd0,2)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.30

Whats this supposed to be?


post


Code:
ls  /boot
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #20  
Old 9th July 2009, 11:00 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
for glennzo
Code:
Disk /dev/sda: 8589MB, 8589934592
255 heads, 63 sectors/track, 1044 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000bddef

Device boot    start    end    blocks         id    linux
/dev/sda1 *     1        26      204800      83   Linux
Partition 1 does not end on cylinder boundary
/dev/sda2        26      1044   8181098+  8e   Linux LVM

Disk /dev/dm-0: 6194MB, 6194987008 bytes
255 heads, 63 sectors/track, 753 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000

Disk /dev/dm-0 doesn't contain a valid partition table

Disk /dev/dm-1: 2182MB, 2181038080 bytes
255 heads, 63 sectors/track, 265 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000

Disk /dev/dm-1 doesn't contain a valid partition table

for leigh
that bit supposed to have .img on end, I'm typing everything out since it on other machine without internet
Code:
config-2.6.29.4-167.fcll.i586
lost+found
efi
memtest86+-2.11
elf-memtest86+-2.11
system.map-2.6.29.4-167.fcll.i586
grub
vmlinuz-2.6.29.4-167.fcll.i586
initrd-2.6.29.4-167.fcll.i586.img
vmlinuz-2.6.30
Reply With Quote
  #21  
Old 10th July 2009, 12:06 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Try generating a initrd .img


This is a example of the syntax

Code:
su -
mkinitrd -v -f /boot/initrd-2.6.29.4-167.fc11.x86_64.img 2.6.29.4-167.fc11.x86_64
Try

Code:
su -
mkinitrd -v -f /boot/initrd-2.6.30.img   2.6.30
and change the grub entry to

Code:
title Fedora new (2.6.30)
    root (hd0,2)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.30.img
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #22  
Old 10th July 2009, 03:51 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
ok that created the .img I didn't have but I am still getting error 17 on boot, cannot mount the selected partition
Reply With Quote
  #23  
Old 10th July 2009, 03:59 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Night Runner View Post
ok that created the .img I didn't have but I am still getting error 17 on boot, cannot mount the selected partition

Post
Code:
blkid



............
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #24  
Old 10th July 2009, 04:03 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Night Runner View Post
Code:
Note you do not have to rerun grub after making changes to this file
Notice: you have a /boot partition. This means that all kernel and initrd paths are relative to /boot/, eg. root (hd0,0)

#boot=/dev/sda
default=0
timeout=0
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.29.4-167.fcll.i586)
    root (hd0,0)
    kernel /vmlinuz-2.6.29.4-167.fcll.i586 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.29.4-167.fcll.i586.img

title Fedora new (2.6.30)
    root (hd0,2)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.30

Also there is a mistake in you grub.conf



Try
Code:
Note you do not have to rerun grub after making changes to this file
Notice: you have a /boot partition. This means that all kernel and initrd paths are relative to /boot/, eg. root (hd0,0)

#boot=/dev/sda
default=0
timeout=0
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.29.4-167.fcll.i586)
    root (hd0,0)
    kernel /vmlinuz-2.6.29.4-167.fcll.i586 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.29.4-167.fcll.i586.img

title Fedora new (2.6.30)
    root (hd0,0)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root rhgb quiet
    initrd /initrd-2.6.30.img
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #25  
Old 10th July 2009, 04:33 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
ok for blkid

Code:
/dev/sda1: UUID="0235e44d-60ff-4573-9ddc-401675d0c9e3" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda2: UUIC="r3w63H-cVt1-3UYi-U4kk-Bufr-iJ41-a1VqUB" TYPE="lvm2pv"
/dev/dm-0: LABEL="Fedora-11-i686-L" UUID="817a5718-30de-46d3-afba-3a0563d4e96f" TYPE="ext4"
/dev/dm-1: UUID="a2811995-3e11-41ee-bd2b-120c8d6368ee" TYPE="swap"
What is the different between menu.lst and grub.conf?
for both I have the root set toroot (hd0,1) and have the .img in it, I'll try it as (hd0,0) see what happens
Reply With Quote
  #26  
Old 10th July 2009, 04:40 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
having the root set to (hd0,0) made it boot slightly there was a message saying
Code:
failed to get NUMA memory information from SRAT table
vxge:copyright(c) 2002-2009 Neterion Inc
vxge: Driver version: 2.0.1.17129-k
end_request: I/O error, dev fd0, sector 0
after it disappeared it started to boot fedora breifly then nothing but blank screen after
Reply With Quote
  #27  
Old 10th July 2009, 05:20 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
OK, change it to


Code:
title Fedora new (2.6.30)
    root (hd0,0)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root 
    initrd /initrd-2.6.30.img

And post the errors
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #28  
Old 10th July 2009, 05:29 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
Code:
failed to get NUMA memory information from SRAT table
vxge:copyright(c) 2002-2009 Neterion Inc
vxge: Driver version: 2.0.1.17129-k
end_request: I/O error, dev fd0, sector 0
Reply With Quote
  #29  
Old 10th July 2009, 05:48 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Quote:
Originally Posted by Night Runner View Post
Code:
failed to get NUMA memory information from SRAT table
vxge:copyright(c) 2002-2009 Neterion Inc
vxge: Driver version: 2.0.1.17129-k
end_request: I/O error, dev fd0, sector 0
Is there anything before this ?


Code:
failed to get NUMA memory information from SRAT table
I believe this is a acpi error

Try

Code:
title Fedora new (2.6.30)
    root (hd0,0)
    kernel /vmlinuz-2.6.30 ro root=/dev/mapper/vg_fedoracov-lv_root  acpi=off
    initrd /initrd-2.6.30.img
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #30  
Old 10th July 2009, 06:15 PM
Night Runner Offline
Registered User
 
Join Date: Jul 2009
Posts: 31
nothing before
Code:
failed to get NUMA memory information from SRAT table
fedora loads for about 2 seconds then blanks screens

ok adding acpi=off helped load for a bit, started up for a while then stopped at
Code:
mounting sysfs filesystem
creating /dev
end_request: I/O error, dev fd0, sector 0
creating initial dives nodes
end_request: I/O error, dev fd0, sector 0
end_request: I/O error, dev fd0, sector 0
Reply With Quote
Reply

Tags
grub.conf, kernel boot, kernel update

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Failure updating grub config planetf1 Alpha, Beta & Snapshots Discussions (Fedora 11 Only) 2 10th February 2009 07:55 PM
Software Updating Issue (using yum) Greens Using Fedora 5 10th May 2007 10:03 PM
Updating grub.conf....? Cipera Installation and Live Media 2 29th April 2006 01:53 PM
Updating to kernel 681 changes default in grub chubby_monk Using Fedora 6 24th November 2004 01:08 AM


Current GMT-time: 21:33 (Friday, 24-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat