LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-29-2012, 01:28 PM   #1
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Rep: Reputation: Disabled
Booting Fedora 17 stops with the SuSE 12.2 GRUB2


Well, I use a triple boot with SuSE the main system and Fedora 17 and Ubuntu 12.04 riding along. Recently I upgraded to SuSE 12.2. While I still used the old GRUB legacy, all went well. Then I upgraded to SuSE's GRUB2 and when I now start Fedora the last line of the messages reads
Code:
 [OK] Started WPA supplicant daemon.
Then the screen flickers thrice and nothing happens after that.

I can switch to a console and run comands from there (as root, hehe). "startx" results in "Fatal error: no screen found".

Code:
systemctl --all | grep error
results in this list of dead services: exim, iscsi, iscsid, ntod, ntpdate, postfix, remount-rootfs, ypbind.

Anything more I could do to coax out information? I'm absolutely stumped here...

Thanks in advance .
 
Old 10-30-2012, 07:41 AM   #2
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Code:
uname -r
Not knowing what your grub.cfg file looks like, I'm wondering if the grub is loading the proper kernel and initrd for Fedora. Is Ubuntu working properly?
 
Old 10-30-2012, 07:57 AM   #3
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
Here you go:
Code:
#> uname -r
#> 3.3.4-5.fc17.x86_64
This is the grub.cfg of the fedora 17 installation (posted by oversight, please see the next post):
Code:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="${saved_entry}"

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
else
  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1366x768
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input gfxterm
terminal_output gfxterm
set timeout=8
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-19767145-769d-432f-bc2b-5b6cdde35158' {
	savedefault
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
	else
	  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
	fi
	echo	'Loading Linux 3.5.2-3.fc17.x86_64 ...'
	linux	/boot/vmlinuz-3.5.2-3.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal 
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initramfs-3.5.2-3.fc17.x86_64.img
}
submenu 'Advanced options for Fedora' $menuentry_id_option 'gnulinux-advanced-19767145-769d-432f-bc2b-5b6cdde35158' {
	menuentry 'Fedora, with Linux 3.5.2-3.fc17.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.5.2-3.fc17.x86_64-advanced-19767145-769d-432f-bc2b-5b6cdde35158' {
	savedefault
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.5.2-3.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.5.2-3.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.5.2-3.fc17.x86_64.img
	}
	menuentry 'Fedora, with Linux 3.5.2-3.fc17.x86_64 (recovery mode)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.5.2-3.fc17.x86_64-recovery-19767145-769d-432f-bc2b-5b6cdde35158' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.5.2-3.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.5.2-3.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro single rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.5.2-3.fc17.x86_64.img
	}
	menuentry 'Fedora, with Linux 3.4.6-2.fc17.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.4.6-2.fc17.x86_64-advanced-19767145-769d-432f-bc2b-5b6cdde35158' {
	savedefault
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.4.6-2.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.4.6-2.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.4.6-2.fc17.x86_64.img
	}
	menuentry 'Fedora, with Linux 3.4.6-2.fc17.x86_64 (recovery mode)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.4.6-2.fc17.x86_64-recovery-19767145-769d-432f-bc2b-5b6cdde35158' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.4.6-2.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.4.6-2.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro single rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.4.6-2.fc17.x86_64.img
	}
	menuentry 'Fedora, with Linux 3.3.4-5.fc17.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.3.4-5.fc17.x86_64-advanced-19767145-769d-432f-bc2b-5b6cdde35158' {
	savedefault
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.3.4-5.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.3.4-5.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.3.4-5.fc17.x86_64.img
	}
	menuentry 'Fedora, with Linux 3.3.4-5.fc17.x86_64 (recovery mode)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.3.4-5.fc17.x86_64-recovery-19767145-769d-432f-bc2b-5b6cdde35158' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		echo	'Loading Linux 3.3.4-5.fc17.x86_64 ...'
		linux	/boot/vmlinuz-3.3.4-5.fc17.x86_64 root=UUID=19767145-769d-432f-bc2b-5b6cdde35158 ro single rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True  KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts init=/lib/systemd/systemd video=1366x768 vga=normal
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-3.3.4-5.fc17.x86_64.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'openSUSE 12.2 (x86_64)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
	savedefault
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  63f379d3-3a68-4836-a9a1-e59c5511c985
	else
	  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
	fi
	linux /vmlinuz-3.4.11-2.16-desktop root=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part2 resume=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part3 splash=verbose video=1366x768 showopts vga=0x317
	initrd /initrd-3.4.11-2.16-desktop
}
submenu 'Advanced options for openSUSE 12.2 (x86_64)' $menuentry_id_option 'osprober-gnulinux-advanced-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
	menuentry 'Desktop -- openSUSE 12.2 - 3.4.11-2.16 (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-3.4.11-2.16-desktop--c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  63f379d3-3a68-4836-a9a1-e59c5511c985
		else
		  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
		fi
		linux /vmlinuz-3.4.11-2.16-desktop root=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part2 resume=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part3 splash=verbose video=1366x768 showopts vga=0x317
		initrd /initrd-3.4.11-2.16-desktop
	}
	menuentry 'Failsafe -- openSUSE 12.2 - 3.4.11-2.16 (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-3.4.11-2.16-desktop--c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  63f379d3-3a68-4836-a9a1-e59c5511c985
		else
		  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
		fi
		linux /vmlinuz-3.4.11-2.16-desktop root=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part2 showopts apm=off noresume nosmp maxcpus=0 edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 nomodeset x11failsafe vga=0x317
		initrd /initrd-3.4.11-2.16-desktop
	}
	menuentry 'GNU GRUB 2 -- openSUSE 12.2 - GNU GRUB 2 (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/grub2/i386-pc/core.img--c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  63f379d3-3a68-4836-a9a1-e59c5511c985
		else
		  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
		fi
		linux /grub2/i386-pc/core.img root=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part2 resume=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part3 splash=verbose video=1366x768 showopts vga=0x317
	}
}

menuentry 'Ubuntu 12.04.1 LTS (12.04)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-127962a6-9c21-4023-a0b5-4219f635319d' {
	savedefault
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos8'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
	else
	  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
	fi
	linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
	initrd /boot/initrd.img-3.2.0-29-generic-pae
}
submenu 'Advanced options for Ubuntu 12.04.1 LTS (12.04)' $menuentry_id_option 'osprober-gnulinux-advanced-127962a6-9c21-4023-a0b5-4219f635319d' {
	menuentry 'Ubuntu, mit Linux 3.2.0-29-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-29-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-29-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-29-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-29-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-29-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-24-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-24-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-24-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-24-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-24-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-24-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-24-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-24-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-23-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-23-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-23-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-23-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-23-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-23-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-23-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts vga=0x317
		initrd /boot/initrd.img-3.2.0-23-generic-pae
	}
}

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
HTH .

Last edited by JZL240I-U; 10-30-2012 at 08:31 AM.
 
Old 10-30-2012, 08:21 AM   #4
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
I am aware that there are two newer kernels for fedora on my hard disk. For all three kernel, system.map, config and the initramfs are present, so the oldest should run too I'd guess.

I also ran SuSE's "grub2-mkconfig -o /bboot/grub2/grub.cfg" -- with no change of this behaviour, i.e. the oldest gets the first shot.

This is the grub.cfg of the (master) SuSE installation which does control boot:
Code:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="${saved_entry}"

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28
else
  search --no-floppy --fs-uuid --set=root c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28
fi
    font="/usr/share/grub2/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=POSIX
  insmod gettext
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  63f379d3-3a68-4836-a9a1-e59c5511c985
else
  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
fi
insmod gfxmenu
loadfont ($root)/grub2/themes/openSUSE/DejaVuSans-Bold14.pf2
loadfont ($root)/grub2/themes/openSUSE/DejaVuSans10.pf2
loadfont ($root)/grub2/themes/openSUSE/DejaVuSans12.pf2
loadfont ($root)/grub2/themes/openSUSE/ascii.pf2
insmod png
set theme=($root)/grub2/themes/openSUSE/theme.txt
export theme
if [ x${boot_once} = xtrue ]; then
  set timeout=0
elif sleep --interruptible 0 ; then
  set timeout=8
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'openSUSE 12.2' --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  63f379d3-3a68-4836-a9a1-e59c5511c985
	else
	  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
	fi
	echo	'Loading Linux 3.4.11-2.16-desktop ...'
	linux	/vmlinuz-3.4.11-2.16-desktop root=UUID=c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28   video=1366x768 resume=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part3 splash=verbose noquiet showopts vga=normal
	echo	'Loading initial ramdisk ...'
	initrd	/initrd-3.4.11-2.16-desktop
}
submenu 'Advanced options for openSUSE 12.2' $menuentry_id_option 'gnulinux-advanced-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
	menuentry 'openSUSE 12.2, with Linux 3.4.11-2.16-desktop' --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.4.11-2.16-desktop-advanced-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  63f379d3-3a68-4836-a9a1-e59c5511c985
		else
		  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
		fi
		echo	'Loading Linux 3.4.11-2.16-desktop ...'
		linux	/vmlinuz-3.4.11-2.16-desktop root=UUID=c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28   video=1366x768 resume=/dev/disk/by-id/ata-WDC_WD3200BPVT-22JJ5T0_WD-WXU1CB1S5967-part3 splash=verbose noquiet showopts vga=normal
		echo	'Loading initial ramdisk ...'
		initrd	/initrd-3.4.11-2.16-desktop
	}
	menuentry 'openSUSE 12.2, with Linux 3.4.11-2.16-desktop (recovery mode)' --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.4.11-2.16-desktop-recovery-c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  63f379d3-3a68-4836-a9a1-e59c5511c985
		else
		  search --no-floppy --fs-uuid --set=root 63f379d3-3a68-4836-a9a1-e59c5511c985
		fi
		echo	'Loading Linux 3.4.11-2.16-desktop ...'
		linux	/vmlinuz-3.4.11-2.16-desktop root=UUID=c6a7b78e-61b7-4a66-a5f3-20aeb0b5dd28  showopts apm=off noresume edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 nomodeset  x11failsafe
		echo	'Loading initial ramdisk ...'
		initrd	/initrd-3.4.11-2.16-desktop
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Fedora release 17 (Beefy Miracle)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-19767145-769d-432f-bc2b-5b6cdde35158' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  19767145-769d-432f-bc2b-5b6cdde35158
	else
	  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
	fi
	linux /boot/vmlinuz-3.3.4-5.fc17.x86_64 root=/dev/sda6
	initrd /boot/initramfs-3.3.4-5.fc17.x86_64.img
}
submenu 'Advanced options for Fedora release 17 (Beefy Miracle)' $menuentry_id_option 'osprober-gnulinux-advanced-19767145-769d-432f-bc2b-5b6cdde35158' {
	menuentry 'Fedora release 17 (Beefy Miracle) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.3.4-5.fc17.x86_64--19767145-769d-432f-bc2b-5b6cdde35158' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		linux /boot/vmlinuz-3.3.4-5.fc17.x86_64 root=/dev/sda6
		initrd /boot/initramfs-3.3.4-5.fc17.x86_64.img
	}
	menuentry 'Fedora release 17 (Beefy Miracle) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.4.6-2.fc17.x86_64--19767145-769d-432f-bc2b-5b6cdde35158' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		linux /boot/vmlinuz-3.4.6-2.fc17.x86_64 root=/dev/sda6
		initrd /boot/initramfs-3.4.6-2.fc17.x86_64.img
	}
	menuentry 'Fedora release 17 (Beefy Miracle) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.5.2-3.fc17.x86_64--19767145-769d-432f-bc2b-5b6cdde35158' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  19767145-769d-432f-bc2b-5b6cdde35158
		else
		  search --no-floppy --fs-uuid --set=root 19767145-769d-432f-bc2b-5b6cdde35158
		fi
		linux /boot/vmlinuz-3.5.2-3.fc17.x86_64 root=/dev/sda6
		initrd /boot/initramfs-3.5.2-3.fc17.x86_64.img
	}
}

menuentry 'Ubuntu 12.04.1 LTS (12.04)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-127962a6-9c21-4023-a0b5-4219f635319d' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos8'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
	else
	  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
	fi
	linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
	initrd /boot/initrd.img-3.2.0-29-generic-pae
}
submenu 'Advanced options for Ubuntu 12.04.1 LTS (12.04)' $menuentry_id_option 'osprober-gnulinux-advanced-127962a6-9c21-4023-a0b5-4219f635319d' {
	menuentry 'Ubuntu, mit Linux 3.2.0-29-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-29-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-29-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-29-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-29-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-29-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-29-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-24-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-24-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-24-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-24-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-24-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-24-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-24-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-24-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-23-generic-pae (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-23-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-23-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-23-generic-pae
	}
	menuentry 'Ubuntu, mit Linux 3.2.0-23-generic-pae (Wiederherstellungsmodus) (on /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-23-generic-pae--127962a6-9c21-4023-a0b5-4219f635319d' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos8'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 --hint='hd0,msdos8'  127962a6-9c21-4023-a0b5-4219f635319d
		else
		  search --no-floppy --fs-uuid --set=root 127962a6-9c21-4023-a0b5-4219f635319d
		fi
		linux /boot/vmlinuz-3.2.0-23-generic-pae root=UUID=127962a6-9c21-4023-a0b5-4219f635319d ro recovery nomodeset rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=de rd.luks=0 LANG=en_US.UTF-8 resume=/dev/sda3 splash=verbose showopts video=1366x768 vga=normal noquiet
		initrd /boot/initrd.img-3.2.0-23-generic-pae
	}
}

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/90_persistent ###
### END /etc/grub.d/90_persistent ###

Last edited by JZL240I-U; 11-01-2012 at 02:13 AM.
 
Old 10-30-2012, 11:29 AM   #5
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
So much for my idea. Below is the Fedora 16 entry in Ubuntu 12.10's grub.cfg on my desktop system. I tested it, and it does work. I haven't upgraded Ubuntu's grub.cfg since installing the latest F17 kernel, so I couldn't test booting F17. Although my F16 entry has a few extra parameters, I don't see anything in your F17 entry that should screw up X
Code:
menuentry 'Fedora release 16 (Verne)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-eb5dc105-fafa-4a72-9067-f7d58e08cb0c' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos8'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  eb5dc105-fafa-4a72-9067-f7d58e08cb0c
	else
	  search --no-floppy --fs-uuid --set=root eb5dc105-fafa-4a72-9067-f7d58e08cb0c
	fi
	linux /boot/vmlinuz-3.3.2-6.fc16.x86_64 root=LABEL=F16 ro rd.md=0 rd.lvm=0 rd.dm=0 KEYTABLE=us SYSFONT=latarcyrheb-sun16 rd.luks=0 LANG=en_US.UTF-8
	initrd /boot/initramfs-3.3.2-6.fc16.x86_64.img
One thing I've done on my system is to (manually) maintain a separate boot partition that uses grub1 to chainload each distro's grub2. When I install a new distro, grub2 get installed into that distro's / partition. The big advantage is not having to worry about keeping various distros's grub.cfg files in sync.

My menu.lst file in the boot partition:
Code:
# GRUB configuration file '/boot/grub/menu.lst'.
# generated by 'grubconfig'.  Sun Oct 16 16:57:47 2011
#
# The backup copy of the MBR for drive '/dev/sda' is
# here '/boot/grub/mbr.sda.16988'.  You can restore it like this.
# dd if=/boot/grub/mbr.sda.16988 of=/dev/sda bs=512 count=1
#
#boot=/dev/sda5
default=0
timeout=65
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
#hiddenmenu

title F18 chainload (sda12)
	rootnoverify (hd0,11)
	chainloader +1

title F17 chainload (sda7) 
	rootnoverify (hd0,6)
	chainloader +1

title F16 chainload (sda8)
	rootnoverify (hd0,7)
	chainloader +1

title U1210 chainload (sda11)
	rootnoverify (hd0,10)
	chainloader +1

# comments deleted to save space
 
Old 11-01-2012, 02:19 AM   #6
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
Yes, that is what I did initially, too, and I always had a separate /boot partition. But SuSE switched to GRUB2 with the 12.2 version. So I even used the GRUB legacy loader to make sure everything runs smooth and then only after some tests updated to GRUB2 2.0. And it does load SuSE 12.2 and Ubuntu 12.04 but fails at Fedora 17. Now what?
 
Old 11-01-2012, 06:04 AM   #7
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
1. Rebuild the Fedora initramfs file?
2. Backup whatever data/customized setting you have in F17 and reinstall?

Not sure why the initramfs file would get corrupted, but I would try #1 first. I do #2 a lot when running Rawhide, so it isn't too big a deal for me.
 
Old 11-01-2012, 10:13 AM   #8
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
Oho. See the xorg.0.log (exerpt):
Code:
...
(II) VESA: driver for VESA chipsets: vesa
[    25.444] (++) using VT number 1

[    25.448] vesa: Ignoring device with a bound kernel driver
[    25.448] (WW) Falling back to old probe method for vesa
[    25.448] (EE) Screen 0 deleted because of no matching config section.
[    25.448] (II) UnloadModule: "vesa"
[    25.448] (EE) Device(s) detected, but none match those in the config file.
[    25.448] 
Fatal server error:
[    25.448] no screens found
[    25.449] 
Please consult the Fedora Project support 
	 at http://wiki.x.org
 for help. 
[    25.449] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
{Very funny. What do they think where I am looking?}
[    25.449] 
[    25.464] Server terminated with error (1). Closing log file.
That of any help?

I also edited SuSE's grub.cfg (yes, I know I shouldn't do that, it will be overwritten ) to load the newest kernel I've got (which the boots faithfully with no X as before) -- all to no avail.

Last edited by JZL240I-U; 11-01-2012 at 10:23 AM.
 
Old 11-01-2012, 01:04 PM   #9
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
If you boot with nomodeset on the kernel line (and no /etc/X11/xorg.conf file) will X come up in vesa mode?
 
Old 11-02-2012, 08:27 AM   #10
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
Yes, it does come up, but with the wrong screen resolution. With nomodeset I get a resolution of 1024 x 768 (stretched horizontally) instead of the optimal 1366 x 768. See http://www.linuxquestions.org/questi...-a-4175425944/ and http://www.linuxquestions.org/questi...-a-4175427224/
 
Old 11-02-2012, 07:56 PM   #11
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Looks like a proper modeline in /etc/X11/xorg.conf (without the nomodeset parameter in grub.cfg) may do the trick.
Code:
~$ gtf 1366 768 60

  # 1368x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 85.86 MHz
  Modeline "1368x768_60.00"  85.86  1368 1440 1584 1800  768 769 772 795  -HSync +Vsync
As for the xorg.conf file, I just
1. boot into text mode (or kill X)
2. as root run
Code:
Xorg -configure
3. edit the resulting /root/xorg.conf.new to add my modeline(s) and the appropriate modes
4. copy xorg.conf.new to /etc/X11/xorg.conf
5. start X (or reboot)
 
Old 11-05-2012, 08:13 AM   #12
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
Okay, I get the same gtf output as you do (of course).

When I run "Xorg -configure" I get the following error:
Code:
...
(II) [KMS] no DRICreatePCIBusID symbol, no kernel modesetting.
Number of created screens does not match number of detected devices.
   Configuration failed.
Server terminated with error (2). Closing log file.
This is the newly created xorg.conf.new:
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	Screen      2  "Screen2" RightOf "Screen1"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "catalogue:/etc/X11/fontpath.d"
	FontPath     "built-ins"
EndSection

Section "Module"
	Load  "extmod"
	Load  "dri"
	Load  "dri2"
	Load  "dbe"
	Load  "glx"
	Load  "record"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor2"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "Dac8Bit"            	# [<bool>]
        #Option     "BusType"            	# [<str>]
        #Option     "CPPIOMode"          	# [<bool>]
        #Option     "CPusecTimeout"      	# <i>
        #Option     "AGPMode"            	# <i>
        #Option     "AGPFastWrite"       	# [<bool>]
        #Option     "AGPSize"            	# <i>
        #Option     "GARTSize"           	# <i>
        #Option     "RingSize"           	# <i>
        #Option     "BufferSize"         	# <i>
        #Option     "EnableDepthMoves"   	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "NoBackBuffer"       	# [<bool>]
        #Option     "DMAForXv"           	# [<bool>]
        #Option     "FBTexPercent"       	# <i>
        #Option     "DepthBits"          	# <i>
        #Option     "PCIAPERSize"        	# <i>
        #Option     "AccelDFS"           	# [<bool>]
        #Option     "IgnoreEDID"         	# [<bool>]
        #Option     "CustomEDID"         	# [<str>]
        #Option     "DisplayPriority"    	# [<str>]
        #Option     "PanelSize"          	# [<str>]
        #Option     "ForceMinDotClock"   	# <freq>
        #Option     "ColorTiling"        	# [<bool>]
        #Option     "VideoKey"           	# <i>
        #Option     "RageTheatreCrystal" 	# <i>
        #Option     "RageTheatreTunerPort" 	# <i>
        #Option     "RageTheatreCompositePort" 	# <i>
        #Option     "RageTheatreSVideoPort" 	# <i>
        #Option     "TunerType"          	# <i>
        #Option     "RageTheatreMicrocPath" 	# <str>
        #Option     "RageTheatreMicrocType" 	# <str>
        #Option     "ScalerWidth"        	# <i>
        #Option     "RenderAccel"        	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "ClockGating"        	# [<bool>]
        #Option     "VGAAccess"          	# [<bool>]
        #Option     "ReverseDDC"         	# [<bool>]
        #Option     "LVDSProbePLL"       	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "DRI"                	# [<bool>]
        #Option     "ConnectorTable"     	# <str>
        #Option     "DefaultConnectorTable" 	# [<bool>]
        #Option     "DefaultTMDSPLL"     	# [<bool>]
        #Option     "TVDACLoadDetect"    	# [<bool>]
        #Option     "ForceTVOut"         	# [<bool>]
        #Option     "TVStandard"         	# <str>
        #Option     "IgnoreLidStatus"    	# [<bool>]
        #Option     "DefaultTVDACAdj"    	# [<bool>]
        #Option     "Int10"              	# [<bool>]
        #Option     "EXAVSync"           	# [<bool>]
        #Option     "ATOMTVOut"          	# [<bool>]
        #Option     "R4xxATOM"           	# [<bool>]
        #Option     "ForceLowPowerMode"  	# [<bool>]
        #Option     "DynamicPM"          	# [<bool>]
        #Option     "NewPLL"             	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
	Identifier  "Card0"
	Driver      "radeon"
	BusID       "PCI:0:1:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# <str>
        #Option     "fbdev"              	# <str>
        #Option     "debug"              	# [<bool>]
	Identifier  "Card1"
	Driver      "fbdev"
	BusID       "PCI:0:1:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "DefaultRefresh"     	# [<bool>]
        #Option     "ModeSetClearScreen" 	# [<bool>]
	Identifier  "Card2"
	Driver      "vesa"
	BusID       "PCI:0:1:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen2"
	Device     "Card2"
	Monitor    "Monitor2"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Should I delete the additional (superfluous) sections? Where does your modeline go?

<edit>
Okay, I deleted the superfluous sections and added a sectiond "Modes" with the modeline as calculated by "gtf" and stored it as /etc/X11/xorg.conf. No change, X does not start as before .

Btw. there was a small xorg.conf already present (which I renamed):
Code:
Section "Device"
   Identifier "Videocard0"
   Driver "vesa"
Endsection
</edit>

Last edited by JZL240I-U; 11-05-2012 at 08:40 AM.
 
Old 11-05-2012, 08:57 AM   #13
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
I've included pieces of my xorg.conf file below. Modeline info from the gtf program goes in the Monitor section. The modes themselves go in the stripped-down Screen section.

Code:
Section "Monitor"
	#UseModes     "Modes0" #monitor0usemodes
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
	DisplaySize  432	270
	HorizSync    30.0 - 86.0
	VertRefresh  56.0 - 76.0
	ModeLine     "1440x900" 106.5 1440 1520 1672 1904 900 901 904 932 -hsync +vsync
	ModeLine     "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087 -hsync +vsync
	Modeline     "1920x1080"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync
	Option	    "PreferredMode" "1680x1050"
EndSection
Code:
Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     24
        Option "IgnoreEDID" "TRUE"
		Modes    "1920x1080" "1680x1050" "1440x900" "1280x1024"
	EndSubSection
EndSection
 
Old 11-05-2012, 09:31 AM   #14
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,634

Original Poster
Rep: Reputation: Disabled
YEAAHHH! Success. Fedora 17 boots into X as it should. This is my xorg.conf:
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "catalogue:/etc/X11/fontpath.d"
	FontPath     "built-ins"
EndSection

Section "Module"
	Load  "extmod"
	Load  "dri"
	Load  "dri2"
	Load  "dbe"
	Load  "glx"
	Load  "record"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
	# 1368x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 85.86 MHz
	ModeLine "1368x768_60.00"  85.86  1368 1440 1584 1800  768 769 772 795  -HSync +Vsync	
	Option	"PreferredMode" "1368x768"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "Dac8Bit"            	# [<bool>]
        #Option     "BusType"            	# [<str>]
        #Option     "CPPIOMode"          	# [<bool>]
        #Option     "CPusecTimeout"      	# <i>
        #Option     "AGPMode"            	# <i>
        #Option     "AGPFastWrite"       	# [<bool>]
        #Option     "AGPSize"            	# <i>
        #Option     "GARTSize"           	# <i>
        #Option     "RingSize"           	# <i>
        #Option     "BufferSize"         	# <i>
        #Option     "EnableDepthMoves"   	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "NoBackBuffer"       	# [<bool>]
        #Option     "DMAForXv"           	# [<bool>]
        #Option     "FBTexPercent"       	# <i>
        #Option     "DepthBits"          	# <i>
        #Option     "PCIAPERSize"        	# <i>
        #Option     "AccelDFS"           	# [<bool>]
        #Option     "IgnoreEDID"         	# [<bool>]
        #Option     "CustomEDID"         	# [<str>]
        #Option     "DisplayPriority"    	# [<str>]
        #Option     "PanelSize"          	# [<str>]
        #Option     "ForceMinDotClock"   	# <freq>
        #Option     "ColorTiling"        	# [<bool>]
        #Option     "VideoKey"           	# <i>
        #Option     "RageTheatreCrystal" 	# <i>
        #Option     "RageTheatreTunerPort" 	# <i>
        #Option     "RageTheatreCompositePort" 	# <i>
        #Option     "RageTheatreSVideoPort" 	# <i>
        #Option     "TunerType"          	# <i>
        #Option     "RageTheatreMicrocPath" 	# <str>
        #Option     "RageTheatreMicrocType" 	# <str>
        #Option     "ScalerWidth"        	# <i>
        #Option     "RenderAccel"        	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "ClockGating"        	# [<bool>]
        #Option     "VGAAccess"          	# [<bool>]
        #Option     "ReverseDDC"         	# [<bool>]
        #Option     "LVDSProbePLL"       	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "DRI"                	# [<bool>]
        #Option     "ConnectorTable"     	# <str>
        #Option     "DefaultConnectorTable" 	# [<bool>]
        #Option     "DefaultTMDSPLL"     	# [<bool>]
        #Option     "TVDACLoadDetect"    	# [<bool>]
        #Option     "ForceTVOut"         	# [<bool>]
        #Option     "TVStandard"         	# <str>
        #Option     "IgnoreLidStatus"    	# [<bool>]
        #Option     "DefaultTVDACAdj"    	# [<bool>]
        #Option     "Int10"              	# [<bool>]
        #Option     "EXAVSync"           	# [<bool>]
        #Option     "ATOMTVOut"          	# [<bool>]
        #Option     "R4xxATOM"           	# [<bool>]
        #Option     "ForceLowPowerMode"  	# [<bool>]
        #Option     "DynamicPM"          	# [<bool>]
        #Option     "NewPLL"             	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
	Identifier  "Card0"
	Driver      "radeon"
	BusID       "PCI:0:1:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     24
	Option "IgnoreEDID" "TRUE"
		Modes "1368x768"
	EndSubSection
EndSection
Thanks a load for your help and patience, RockDoctor.

Last edited by JZL240I-U; 11-05-2012 at 09:52 AM.
 
Old 11-05-2012, 09:37 AM   #15
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Happy to see that it worked!
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Booting Fedora 12 from Ubuntu's Grub2, ERROR: NOT AN ASSIGNEMENT mitchell7man Linux - Newbie 4 02-04-2010 02:17 AM
Fedora 7 DVD after booting stops with a READY message JGRetired Fedora - Installation 0 08-18-2007 09:42 PM
My SuSE 10.0 system stops booting. How can I determine which step it's failing on? JavaGeekLover SUSE / openSUSE 1 02-26-2006 03:18 AM
Uninstalled SuSe; GRUB Stops PC From Booting MisterAle Linux - Software 2 12-23-2004 10:52 PM
Fedora FC1, 2.6 kernel, stops booting blaagutt Linux - Newbie 3 05-12-2004 05:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:37 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