Não há partições após a recuperação do grub

2

Eu estupidamente inseri o CD do Windows no meu sistema dual boot Ubuntu 11.10 / Windows XP. Eu só queria ver se eu poderia instalar o Windows no meu HD externo, mas na verdade não prossegui com a instalação.

Parece que o CD do Windows bagunçou meu MBR e eu tive que usar o boot-repair e o live 11.10 do Ubuntu para acessar o Ubuntu novamente.

Parece inicializar um pouco diferente (mais lento), mas funciona. No entanto, agora eu não consigo ver nenhuma das minhas partições no nautilus (existem 3).

Quando eu abro o gparted, ele mostra todo o meu disco rígido como não alocado (eu sei que tem uma partição do windows que funciona e minha partição do Ubuntu que estou usando agora).

Se eu inserir uma caneta usb, ela também não é visível no nautilus, mas no gparted aparece como uma partição FAT32 (que está correta, embora eu não possa acessá-la).

sudo fdisk -l fornece o seguinte:

demian@dimbo-TP:~$ sudo fdisk -l
[sudo] password for demian:  omitting empty partition (5)

Disk /dev/sda: 320.1 GB, 320072933376 bytes

240 heads, 63 sectors/track, 41345 cylinders, total 625142448 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:
0x877b877b


   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *          63    63842309    31921123+   7 
HPFS/NTFS/exFAT

/dev/sda2        63844350   133484084    34819867+   5  Extended

/dev/sda3       127636488   133484084     2923798+  82  Linux swap /
Solaris

/dev/sda4       133484085   625137344   245826630   83  Linux

/dev/sda5        63844352   123445247    29800448   83  Linux

/dev/sda6       123447296   127635455     2094080   82  Linux swap /
Solaris

Disk /dev/sdb: 8100 MB, 8100249600 bytes

12 heads, 40 sectors/track, 32960 cylinders, total 15820800 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: 0xc3072e18

   Device Boot      Start         End      Blocks   Id  System

/dev/sdb1   *        5992    15820799     7907404    c  W95 FAT32
(LBA)

Aqui está o meu arquivo grub.conf . Como eu disse antes, eu tive que usar o utilitário 'boot-repair' com o live-cd para fazer o grub funcionar novamente. Eu acho que esse utilitário talvez tenha criado um novo grub para mim porque a inicialização definitivamente não é a mesma. A tela fica em branco por um tempo e, em seguida, os pontos de carregamento do Ubuntu surgem por um breve momento (em vez de durante todo o processo de inicialização) antes que a área de trabalho seja exibida.

De qualquer forma:

# 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 video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos6)'
search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  insmod part_msdos
  insmod ext2
  set root='(hd0,msdos6)'
  search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
  set locale_dir=($root)/boot/grub/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ]; then
  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; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
if [ ${recordfail} != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        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" ]; then load_video; fi
menuentry 'Ubuntu, with Linux 3.0.0-12-generic' --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,msdos6)'
    search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
    linux   /boot/vmlinuz-3.0.0-12-generic root=UUID=5349ff67-b7b7-489f-a881-ae49c1dcd84a ro   quiet splash vt.handoff=7
    initrd  /boot/initrd.img-3.0.0-12-generic
}
menuentry 'Ubuntu, with Linux 3.0.0-12-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos6)'
    search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
    echo    'Loading Linux 3.0.0-12-generic ...'
    linux   /boot/vmlinuz-3.0.0-12-generic root=UUID=5349ff67-b7b7-489f-a881-ae49c1dcd84a ro recovery nomodeset 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-3.0.0-12-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='(hd0,msdos6)'
    search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
    linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos6)'
    search --no-floppy --fs-uuid --set=root 5349ff67-b7b7-489f-a881-ae49c1dcd84a
    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)" --class windows --class os {
    insmod part_msdos
    insmod ntfs
    set root='(hd0,msdos1)'
    search --no-floppy --fs-uuid --set=root 72A89361A89322A1
    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 ###

Como posso fazer as coisas voltar ao normal?

    
por dimbo 11.11.2011 / 12:00

1 resposta

1

O erro foi causado pela sobreposição de partições causada pelo disco do Windows Installer.

Eu consertei por:

Usando o liveCD com uma conexão com a internet.

usando o utilitário fixparts: fixparts

Isso consertará as partições, mas poderá quebrar seu grub. Para consertar o grub use grub-recover.

Obrigado a todos.

D.

    
por dimbo 13.11.2011 / 09:46