Dobré zprávy ve spolek,
přešel jsem z
Ubuntu 10.10 na
Ubuntu 11.04 a po spuštění zavaděč
GRUB version 1.98+20100804-5ubuntu3.3 při volbě jakékoli možnosti zobrazí:
init: plymouth-splash main process (215) terminated with status 2
init: plymouth main process (57) killed by SEGV signal
po ctrl+alt+del (jiná volba není, jedině vytáhnout ze sítě) nestihnu přečíst další zobrazení.
Použil jsem
boot_info_script - skript, zde
RESULTS.txt:
Boot Info Script 0.60 from 17 May 2011
============================= Boot Info Summary: ===============================
=> Grub2 (v1.97-1.98) is installed in the MBR of /dev/sda and looks at sector
1 of the same hard drive for core.img. core.img is at this location and
looks in partition 3 for (,msdos3)/boot/grub.
=> Syslinux MBR (3.61-4.03) is installed in the MBR of /dev/sdb.
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows XP
Boot files: /boot.ini /ntldr /NTDETECT.COM
sda2: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 11.04
Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sda4: __________________________________________________________________________
File system: Extended Partition
Boot sector type: -
Boot sector info:
sda5: __________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sda6: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: According to the info in the boot sector, sdb1 starts
at sector 0. But according to the info from fdisk,
sdb1 starts at sector 2048.
Operating System:
Boot files:
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 * 63 16,783,199 16,783,137 7 NTFS / exFAT / HPFS
/dev/sda2 16,783,200 79,712,639 62,929,440 7 NTFS / exFAT / HPFS
/dev/sda3 79,712,640 121,670,639 41,958,000 83 Linux
/dev/sda4 121,670,701 156,299,263 34,628,563 f W95 Extended (LBA)
/dev/sda5 121,670,703 123,772,319 2,101,617 82 Linux swap / Solaris
/dev/sda6 123,772,928 156,299,263 32,526,336 83 Linux
Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 16.2 GB, 16240345088 bytes
255 heads, 63 sectors/track, 1974 cylinders, total 31719424 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdb1 * 2,048 31,719,423 31,717,376 c W95 FAT32 (LBA)
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/loop0 squashfs
/dev/sda1 42AC37DAAC37C6E7 ntfs Win-sys
/dev/sda2 2E9415A094156C19 ntfs Win-data
/dev/sda3 ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ext4
/dev/sda5 swap
/dev/sda6 a517922b-cbea-42a7-aa9d-39eaf5c08ce6 ext4
/dev/sdb1 543B-A759 vfat
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/loop0 /rofs squashfs (ro,noatime)
/dev/sdb1 /media/543B-A759 vfat (rw,nosuid,nodev,uhelper=udisks,uid=999,gid=999,shortname=mixed,dmask=0077,utf8=1,showexec,flush)
/dev/sr0 /cdrom iso9660 (ro,noatime)
================================ sda1/boot.ini: ================================
--------------------------------------------------------------------------------
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptOut
--------------------------------------------------------------------------------
=========================== sda3/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
set default="0"
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 recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
insmod vbe
insmod vga
}
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
set locale_dir=($root)/boot/grub/locale
set lang=cs
insmod gettext
if [ "${recordfail}" = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.38-12-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux /boot/vmlinuz-2.6.38-12-generic root=/dev/sda3 ro quiet splash
}
menuentry 'Ubuntu, with Linux 2.6.38-12-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
echo 'Loading Linux 2.6.38-12-generic ...'
linux /boot/vmlinuz-2.6.38-12-generic root=/dev/sda3 ro single
echo 'Loading initial ramdisk ...'
}
menuentry 'Ubuntu, with Linux 2.6.35-31-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux /boot/vmlinuz-2.6.35-31-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro quiet splash
initrd /boot/initrd.img-2.6.35-31-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
echo 'Loading Linux 2.6.35-31-generic ...'
linux /boot/vmlinuz-2.6.35-31-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-31-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-27-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux /boot/vmlinuz-2.6.35-27-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro quiet splash
initrd /boot/initrd.img-2.6.35-27-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-27-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
echo 'Loading Linux 2.6.35-27-generic ...'
linux /boot/vmlinuz-2.6.35-27-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-27-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-23-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux /boot/vmlinuz-2.6.35-23-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro quiet splash
initrd /boot/initrd.img-2.6.35-23-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-23-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
echo 'Loading Linux 2.6.35-23-generic ...'
linux /boot/vmlinuz-2.6.35-23-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-23-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro quiet splash
initrd /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
echo 'Loading Linux 2.6.35-22-generic ...'
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=ece6aeca-bcc0-4c52-85b2-b0c520bf7313 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-22-generic
}
### 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_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos3)'
search --no-floppy --fs-uuid --set=root ece6aeca-bcc0-4c52-85b2-b0c520bf7313
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" {
insmod part_msdos
insmod ntfs
set root='(/dev/sda,msdos1)'
search --no-floppy --fs-uuid --set=root 42AC37DAAC37C6E7
drivemap -s (hd0) ${root}
chainloader +1
}
### 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 $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
=============================== sda3/etc/fstab: ================================
--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
dev /dev tmpfs rw 0 0
proc /proc proc nodev,noexec,nosuid 0 0
/dev/sda3 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda6 during installation
UUID=a517922b-cbea-42a7-aa9d-39eaf5c08ce6 /home ext4 defaults 0 2
/dev/sda5 none swap sw 0 0
--------------------------------------------------------------------------------
=================== sda3: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
44.193382263 = 47.452282880 boot/grub/core.img 1
40.853305817 = 43.865903104 boot/grub/grub.cfg 1
39.447448730 = 42.356375552 boot/initrd.img-2.6.35-22-generic 2
38.566852570 = 41.410842624 boot/initrd.img-2.6.35-23-generic 1
39.605918884 = 42.526531584 boot/initrd.img-2.6.35-27-generic 2
41.154720306 = 44.189544448 boot/initrd.img-2.6.35-31-generic 2
44.257968903 = 47.521632256 boot/vmlinuz-2.6.35-22-generic 1
44.322055817 = 47.590445056 boot/vmlinuz-2.6.35-23-generic 1
44.392669678 = 47.666266112 boot/vmlinuz-2.6.35-27-generic 1
44.403903961 = 47.678328832 boot/vmlinuz-2.6.35-31-generic 1
43.932132721 = 47.171768320 boot/vmlinuz-2.6.38-12-generic 1
41.154720306 = 44.189544448 initrd.img 2
39.605918884 = 42.526531584 initrd.img.old 2
44.403903961 = 47.678328832 vmlinuz 1
44.392669678 = 47.666266112 vmlinuz.old 1
Strýček google vylovil toto:
http://ubuntuforums.org/showthread.php?p=10785721#post10785721 -
problém zůstává nevyřešen,
pak toto:
http://www.linode.com/forums/archive/o_t/t_5522/fixed_boot_failure_ubuntu_lucid.html -
problém stále zůstává nevyřešen.1. Máte někdo podobnou zkušenost?
Podělte se2. Máte řešení problému?
sem s ním :-)3. Má smysl se s tím mazlit nebo mám radši nainstalovat Ubuntu 11.11 a oželet vyladěné Ubuntu 10.10?
Toť dilemaĎ.