Skip to main content

Thread: Cannot boot - grub rescue out of disk


i have searched , searched haven't found solution issue far...

have 11.10 installed on vmware virtual machine gets error: out of disk. , boots grub rescue. when run ls in grub rescue this:
(hd0) (hd0,msdos1)(fd0)

have tried boot-repair disk , generated boot info summary:

http://paste.ubuntu.com/900640/

server has live data on it.

help!

code:
boot info script 0.60-git      [23 feb 2012]   ============================= boot info summary: ===============================   => grub2 (v1.99) installed in mbr of /dev/sda , looks @ sector 1 of      same hard drive core.img. core.img @ location , looks      (,msdos1)/boot/grub on drive.  sda1: __________________________________________________________________________      file system:       ext4     boot sector type:  -     boot sector info:      operating system:  ubuntu 11.10     boot files:        /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img  sda2: __________________________________________________________________________      file system:       extended partition     boot sector type:  -     boot sector info:   sda5: __________________________________________________________________________      file system:       swap     boot sector type:  -     boot sector info:   ============================ drive/partition info: =============================  drive: sda _____________________________________________________________________  disk /dev/sda: 161.1 gb, 161061273600 bytes 255 heads, 63 sectors/track, 19581 cylinders, total 314572800 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    *          2,048   311,613,439   311,611,392  83 linux /dev/sda2         311,615,486   314,570,751     2,955,266   5 extended /dev/sda5         311,615,488   314,570,751     2,955,264  82 linux swap / solaris   "blkid" output: ________________________________________________________________  device           uuid                                   type       label  /dev/loop0                                              squashfs    /dev/sda1        bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678   ext4        /dev/sda5        deb37508-94c0-421d-864a-7a7bbb3876ca   swap         ================================ mount points: =================================  device           mount_point              type       options  /dev/sr0         /live/image              iso9660    (ro,noatime)   =========================== sda1/boot/grub/grub.cfg: ===========================  -------------------------------------------------------------------------------- # # not edit file # # automatically generated grub-mkconfig using templates # /etc/grub.d , settings /etc/default/grub #  ### begin /etc/grub.d/00_header ### if [ -s $prefix/grubenv ];   set have_grubenv=true   load_env fi set default="0" if [ "${prev_saved_entry}" ];   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}" ];     saved_entry="${chosen}"     save_env saved_entry   fi }  function recordfail {   set recordfail=1   if [ -n "${have_grubenv}" ]; if [ -z "${boot_once}" ]; save_env recordfail; fi; fi }  function load_video {   insmod vbe   insmod vga   insmod video_bochs   insmod video_cirrus }  insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 if loadfont /usr/share/grub/unicode.pf2 ;   set gfxmode=auto   load_video   insmod gfxterm   insmod part_msdos   insmod ext2   set root='(hd0,msdos1)'   search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678   set locale_dir=($root)/boot/grub/locale   set lang=en_us   insmod gettext fi terminal_output gfxterm if [ "${recordfail}" = 1 ];   set timeout=10 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 if background_color 44,0,30;   clear fi ### end /etc/grub.d/05_debian_theme ###  ### begin /etc/grub.d/10_linux ### if [ ${recordfail} != 1 ];   if [ -e ${prefix}/gfxblacklist.txt ];     if hwmatch ${prefix}/gfxblacklist.txt 3;       if [ ${match} = 0 ];         set linux_gfx_mode=keep       else         set linux_gfx_mode=text       fi     else       set linux_gfx_mode=text     fi   else     set linux_gfx_mode=keep   fi else   set linux_gfx_mode=text fi export linux_gfx_mode if [ "$linux_gfx_mode" != "text" ]; load_video; fi menuentry 'ubuntu, linux 3.0.0-16-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-3.0.0-16-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-3.0.0-16-server } menuentry 'ubuntu, linux 3.0.0-16-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 3.0.0-16-server ...'     linux    /boot/vmlinuz-3.0.0-16-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-3.0.0-16-server } submenu "previous linux versions" { menuentry 'ubuntu, linux 2.6.38-13-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.38-13-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.38-13-server } menuentry 'ubuntu, linux 2.6.38-13-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.38-13-server ...'     linux    /boot/vmlinuz-2.6.38-13-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.38-13-server } menuentry 'ubuntu, linux 2.6.35-32-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.35-32-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.35-32-server } menuentry 'ubuntu, linux 2.6.35-32-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.35-32-server ...'     linux    /boot/vmlinuz-2.6.35-32-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.35-32-server } menuentry 'ubuntu, linux 2.6.32-40-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-40-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-40-server } menuentry 'ubuntu, linux 2.6.32-40-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-40-server ...'     linux    /boot/vmlinuz-2.6.32-40-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-40-server } menuentry 'ubuntu, linux 2.6.32-38-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-38-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-38-server } menuentry 'ubuntu, linux 2.6.32-38-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-38-server ...'     linux    /boot/vmlinuz-2.6.32-38-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-38-server } menuentry 'ubuntu, linux 2.6.32-37-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-37-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-37-server } menuentry 'ubuntu, linux 2.6.32-37-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-37-server ...'     linux    /boot/vmlinuz-2.6.32-37-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-37-server } menuentry 'ubuntu, linux 2.6.32-36-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-36-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-36-server } menuentry 'ubuntu, linux 2.6.32-36-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-36-server ...'     linux    /boot/vmlinuz-2.6.32-36-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-36-server } menuentry 'ubuntu, linux 2.6.32-35-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-35-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-35-server } menuentry 'ubuntu, linux 2.6.32-35-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-35-server ...'     linux    /boot/vmlinuz-2.6.32-35-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-35-server } menuentry 'ubuntu, linux 2.6.32-34-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-34-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-34-server } menuentry 'ubuntu, linux 2.6.32-34-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-34-server ...'     linux    /boot/vmlinuz-2.6.32-34-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-34-server } menuentry 'ubuntu, linux 2.6.32-33-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-33-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-33-server } menuentry 'ubuntu, linux 2.6.32-33-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-33-server ...'     linux    /boot/vmlinuz-2.6.32-33-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-33-server } menuentry 'ubuntu, linux 2.6.32-32-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-32-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-32-server } menuentry 'ubuntu, linux 2.6.32-32-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-32-server ...'     linux    /boot/vmlinuz-2.6.32-32-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-32-server } menuentry 'ubuntu, linux 2.6.32-30-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-30-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-30-server } menuentry 'ubuntu, linux 2.6.32-30-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-30-server ...'     linux    /boot/vmlinuz-2.6.32-30-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-30-server } menuentry 'ubuntu, linux 2.6.32-29-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-29-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-29-server } menuentry 'ubuntu, linux 2.6.32-29-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-29-server ...'     linux    /boot/vmlinuz-2.6.32-29-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-29-server } menuentry 'ubuntu, linux 2.6.32-28-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-28-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-28-server } menuentry 'ubuntu, linux 2.6.32-28-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-28-server ...'     linux    /boot/vmlinuz-2.6.32-28-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-28-server } menuentry 'ubuntu, linux 2.6.32-27-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-27-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-27-server } menuentry 'ubuntu, linux 2.6.32-27-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-27-server ...'     linux    /boot/vmlinuz-2.6.32-27-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-27-server } menuentry 'ubuntu, linux 2.6.32-26-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-26-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-26-server } menuentry 'ubuntu, linux 2.6.32-26-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-26-server ...'     linux    /boot/vmlinuz-2.6.32-26-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-26-server } menuentry 'ubuntu, linux 2.6.32-24-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-24-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-24-server } menuentry 'ubuntu, linux 2.6.32-24-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-24-server ...'     linux    /boot/vmlinuz-2.6.32-24-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-24-server } menuentry 'ubuntu, linux 2.6.32-21-server' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     set gfxpayload=$linux_gfx_mode     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux    /boot/vmlinuz-2.6.32-21-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro   quiet splash vt.handoff=7     initrd    /boot/initrd.img-2.6.32-21-server } menuentry 'ubuntu, linux 2.6.32-21-server (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {     recordfail     insmod gzio     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     echo    'loading linux 2.6.32-21-server ...'     linux    /boot/vmlinuz-2.6.32-21-server root=uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 ro recovery nomodeset      echo    'loading initial ramdisk ...'     initrd    /boot/initrd.img-2.6.32-21-server } } ### 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='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux16    /boot/memtest86+.bin } menuentry "memory test (memtest86+, serial console 115200)" {     insmod part_msdos     insmod ext2     set root='(hd0,msdos1)'     search --no-floppy --fs-uuid --set=root bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678     linux16    /boot/memtest86+.bin console=ttys0,115200n8 } ### end /etc/grub.d/20_memtest86+ ###  ### begin /etc/grub.d/30_os-prober ### ### end /etc/grub.d/30_os-prober ###  ### begin /etc/grub.d/40_custom ### # file provides easy way add custom menu entries.  type # menu entries want add after comment.  careful not change # 'exec tail' line above. ### end /etc/grub.d/40_custom ###  ### begin /etc/grub.d/41_custom ### if [ -f  $prefix/custom.cfg ];   source $prefix/custom.cfg; fi ### end /etc/grub.d/41_custom ### --------------------------------------------------------------------------------  =============================== sda1/etc/fstab: ================================  -------------------------------------------------------------------------------- # /etc/fstab: static file system information. # # use 'blkid -o value -s uuid' print universally unique identifier # device; may used uuid= more robust way name # devices works if disks added , removed. see fstab(5). # # <file system> <mount point>   <type>  <options>       <dump>  <pass> proc            /proc           proc    nodev,noexec,nosuid 0       0 # / on /dev/sda1 during installation uuid=bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678 /               ext4    errors=remount-ro 0       1 # swap on /dev/sda5 during installation uuid=deb37508-94c0-421d-864a-7a7bbb3876ca none            swap    sw              0       0 /dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0 --------------------------------------------------------------------------------  =================== sda1: location of files loaded grub: ====================             gib - gb             file                                 fragment(s)              ?? = ??             boot/grub/core.img                             1             ?? = ??             boot/grub/grub.cfg                             1             ?? = ??             boot/initrd.img-2.6.32-21-server               1             ?? = ??             boot/initrd.img-2.6.32-24-server               1             ?? = ??             boot/initrd.img-2.6.32-26-server               1             ?? = ??             boot/initrd.img-2.6.32-27-server               1             ?? = ??             boot/initrd.img-2.6.32-28-server               1             ?? = ??             boot/initrd.img-2.6.32-29-server               2             ?? = ??             boot/initrd.img-2.6.32-30-server               2             ?? = ??             boot/initrd.img-2.6.32-32-server               2             ?? = ??             boot/initrd.img-2.6.32-33-server               1             ?? = ??             boot/initrd.img-2.6.32-34-server               2             ?? = ??             boot/initrd.img-2.6.32-35-server               2             ?? = ??             boot/initrd.img-2.6.32-36-server               2             ?? = ??             boot/initrd.img-2.6.32-37-server               2             ?? = ??             boot/initrd.img-2.6.32-38-server               2             ?? = ??             boot/initrd.img-2.6.32-40-server               2             ?? = ??             boot/initrd.img-2.6.35-32-server               2             ?? = ??             boot/initrd.img-2.6.38-13-server               2             ?? = ??             boot/initrd.img-3.0.0-16-server                2             ?? = ??             boot/vmlinuz-2.6.32-21-server                  1             ?? = ??             boot/vmlinuz-2.6.32-24-server                  1             ?? = ??             boot/vmlinuz-2.6.32-26-server                  1             ?? = ??             boot/vmlinuz-2.6.32-27-server                  1             ?? = ??             boot/vmlinuz-2.6.32-28-server                  1             ?? = ??             boot/vmlinuz-2.6.32-29-server                  1             ?? = ??             boot/vmlinuz-2.6.32-30-server                  1             ?? = ??             boot/vmlinuz-2.6.32-32-server                  1             ?? = ??             boot/vmlinuz-2.6.32-33-server                  1             ?? = ??             boot/vmlinuz-2.6.32-34-server                  1             ?? = ??             boot/vmlinuz-2.6.32-35-server                  1             ?? = ??             boot/vmlinuz-2.6.32-36-server                  1             ?? = ??             boot/vmlinuz-2.6.32-37-server                  1             ?? = ??             boot/vmlinuz-2.6.32-38-server                  1             ?? = ??             boot/vmlinuz-2.6.32-40-server                  1             ?? = ??             boot/vmlinuz-2.6.35-32-server                  1             ?? = ??             boot/vmlinuz-2.6.38-13-server                  2             ?? = ??             boot/vmlinuz-3.0.0-16-server                   1             ?? = ??             initrd.img.old                                 2             ?? = ??             vmlinuz                                        1             ?? = ??             vmlinuz.old                                    2  =============================== stderr messages: ===============================  xz: (stdin): compressed data corrupt file descriptor 7 (pipe:[5832]) leaked on lvscan invocation. parent pid 7837: bash file descriptor 8 (pipe:[5832]) leaked on lvscan invocation. parent pid 7837: bash   no volume groups found mdadm: no arrays found in config file or automatically  additional information : **************** log of boot-repair 2012-03-26__15h40 **************** boot-repair version : 3.16-0ppa10~lucid boot-sav version : 3.17-0ppa18~lucid /usr/share/boot-sav/gui-update.sh: line 31: hash: glade2script: not found glade2script-gtk2 version : 0.0.1-0ppa4~lucid internet: connected file descriptor 7 (pipe:[5832]) leaked on lvs invocation. parent pid 2793: /bin/sh file descriptor 8 (pipe:[5832]) leaked on lvs invocation. parent pid 2793: /bin/sh no volume groups found livesession : yes (debian gnu/linux 6.0.3 (squeeze) , squeeze , debian , x86_64  ) bytes_before_part[1] (sda) = 2048 sectors * 512 bytes = 1048576 bytes.  osprober: /dev/sda1:ubuntu 11.10 (11.10):ubuntu:linux  blkid: /dev/sda1: uuid="bf3a5e8d-acdf-487a-a0b2-7a7e0f0fc678" type="ext4" /dev/sda5: uuid="deb37508-94c0-421d-864a-7a7bbb3876ca" type="swap" /dev/loop0: type="squashfs"  1 disks os, 1 os : 1 linux, 0 macos, 0 windows, 0 unknown type os. total of 1 os detected on sda disk. table_type of sda msdos sda1 : sda, not-sepboot, grub-install, grub2 , update-grub, apt-get, 64, boot, /mnt/boot-sav/sda1, with-os, no-gpt, notefitable, fstab-without-efi.  parted:  model: vmware, vmware virtual s (scsi) disk /dev/sda: 161gb sector size (logical/physical): 512b/512b partition table: msdos  number  start   end    size    type      file system     flags 1      1049kb  160gb  160gb   primary   ext4            boot 2      160gb   161gb  1513mb  extended 5      160gb   161gb  1513mb  logical   linux-swap(v1)                                                                               warning: unable open /dev/sr0 read-write (read-only file system).  /dev/sr0 has been opened read-only.                                                                             error: /dev/sr0: unrecognised disk label   mount: aufs on / type aufs (rw) tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755) proc on /proc type proc (rw,noexec,nosuid,nodev) sysfs on /sys type sysfs (rw,noexec,nosuid,nodev) udev on /dev type tmpfs (rw,mode=0755) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620) /dev/sr0 on /live/image type iso9660 (ro,noatime) tmpfs on /live/cow type tmpfs (rw,noatime,mode=755) tmpfs on /live type tmpfs (rw,relatime) tmpfs on /tmp type tmpfs (rw,nosuid,nodev) fusectl on /sys/fs/fuse/connections type fusectl (rw) /dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw)   /sys/block/fd0:  alignment_offset bdi capability dev device ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent /sys/block/sda:  alignment_offset bdi capability dev device ext_range holders inflight power queue range removable ro sda1 sda2 sda5 size slaves stat subsystem trace uevent /sys/block/sr0:  alignment_offset bdi capability dev device ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent /dev:  agpgart block bsg btrfs-control bus cdrom char console core cpu_dma_latency disk dvd fd fd0 full fuse hpet initctl input kmsg log makedev mcelog md mem net network_latency network_throughput null port ppp psaux ptmx pts random rtc rtc0 scd0 sda sda1 sda2 sda5 sg0 sg1 shm snapshot sr0 stderr stdin stdout urandom vga_arbiter xconsole 0  df:  filesystem    type    size  used avail use% mounted on aufs          aufs    502m  8.3m  494m   2% / tmpfs        tmpfs    502m     0  502m   0% /lib/init/rw udev         tmpfs    497m  112k  497m   1% /dev tmpfs        tmpfs    502m     0  502m   0% /dev/shm /dev/sr0   iso9660    339m  339m     0 100% /live/image tmpfs        tmpfs    502m  8.3m  494m   2% /live/cow tmpfs        tmpfs    502m     0  502m   0% /live tmpfs        tmpfs    502m  8.0k  502m   1% /tmp /dev/sda1     ext4    147g   95g   45g  68% /mnt/boot-sav/sda1  fdisk:  disk /dev/sda: 161.1 gb, 161061273600 bytes 255 heads, 63 sectors/track, 19581 cylinders, total 314572800 sectors units = sectors of 1 * 512 = 512 bytes sector size (logical/physical): 512 bytes / 512 bytes i/o size (minimum/optimal): 512 bytes / 512 bytes disk identifier: 0x000ae114  device boot      start         end      blocks   id  system /dev/sda1   *        2048   311613439   155805696   83  linux /dev/sda2       311615486   314570751     1477633    5  extended /dev/sda5       311615488   314570751     1477632   82  linux swap / solaris    ************************before mainwindow fsck_action no pastebin_action yes recommendedrepair, reinstall, reinstall_possible yes purge_possible yes unhideboot_action yes (10s), noflag (sda1) part_to_reinstall_grub sda1, part_to_reinstall_grub_purge sda1, force_grub no (sda) removabledisk no use_separatebootpart no () grub2 (sda1) uncomment_gfxmode no ata  add_kernel_option no (acpi=off) mbr_to_restore sda (mbr) ( ) internet: connected  ************************actions fsck_action no pastebin_action yes recommendedrepair, reinstall, reinstall_possible yes purge_possible yes unhideboot_action yes (10s), noflag (sda1) part_to_reinstall_grub sda1, part_to_reinstall_grub_purge sda1, force_grub no (sda) removabledisk no use_separatebootpart no () grub2 (sda1) uncomment_gfxmode no ata  add_kernel_option no (acpi=off) mbr_to_restore sda (mbr) (sda 1) reinstall grub of sda1 mbr of sda dpkg --configure -a sda1 dpkg: warning: parsing file '/var/lib/dpkg/status' near line 15763 package 'ffmpeg': error in version string '4:svn-r24716-1': version number not start digit grub-install (grub) 1.99-12ubuntu5 chroot: failed run command `type': no such file or directory installoutput: installation finished. no error reported. installexit:0 generating grub.cfg ... found linux image: /boot/vmlinuz-3.0.0-16-server found initrd image: /boot/initrd.img-3.0.0-16-server found linux image: /boot/vmlinuz-2.6.38-13-server found initrd image: /boot/initrd.img-2.6.38-13-server found linux image: /boot/vmlinuz-2.6.35-32-server found initrd image: /boot/initrd.img-2.6.35-32-server found linux image: /boot/vmlinuz-2.6.32-40-server found initrd image: /boot/initrd.img-2.6.32-40-server found linux image: /boot/vmlinuz-2.6.32-38-server found initrd image: /boot/initrd.img-2.6.32-38-server found linux image: /boot/vmlinuz-2.6.32-37-server found initrd image: /boot/initrd.img-2.6.32-37-server found linux image: /boot/vmlinuz-2.6.32-36-server found initrd image: /boot/initrd.img-2.6.32-36-server found linux image: /boot/vmlinuz-2.6.32-35-server found initrd image: /boot/initrd.img-2.6.32-35-server found linux image: /boot/vmlinuz-2.6.32-34-server found initrd image: /boot/initrd.img-2.6.32-34-server found linux image: /boot/vmlinuz-2.6.32-33-server found initrd image: /boot/initrd.img-2.6.32-33-server found linux image: /boot/vmlinuz-2.6.32-32-server found initrd image: /boot/initrd.img-2.6.32-32-server found linux image: /boot/vmlinuz-2.6.32-30-server found initrd image: /boot/initrd.img-2.6.32-30-server found linux image: /boot/vmlinuz-2.6.32-29-server found initrd image: /boot/initrd.img-2.6.32-29-server found linux image: /boot/vmlinuz-2.6.32-28-server found initrd image: /boot/initrd.img-2.6.32-28-server found linux image: /boot/vmlinuz-2.6.32-27-server found initrd image: /boot/initrd.img-2.6.32-27-server found linux image: /boot/vmlinuz-2.6.32-26-server found initrd image: /boot/initrd.img-2.6.32-26-server found linux image: /boot/vmlinuz-2.6.32-24-server found initrd image: /boot/initrd.img-2.6.32-24-server found linux image: /boot/vmlinuz-2.6.32-21-server found initrd image: /boot/initrd.img-2.6.32-21-server found memtest86+ image: /boot/memtest86+.bin unhide grub boot menu in sda1/boot/grub/grub.cfg internet: connected


Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Cannot boot - grub rescue out of disk


Ubuntu

Comments

Popular posts from this blog

how to devide a circle into equal parts

"Could not fill because there are not enough opaque source pixels" - not solved by any other thread

Why can't I change the billing info for my account?