Version 1
Visibility: Open to anyone

    Hubo un bajon de tension que apago varias maquinas.. una de ellas no booteaba.. porque al parecer habia un bad superblock..

     

    Pasos

    • Bootear desde un live CD
    • cat /etc/fstab te muestra los discos y particiones pero tmb te puede servir abrir gparted q te brinda algo mas de informacion..
    • Parece que la particion era LVM..

    # fdisk -l /dev/hda

     

    Disk /dev/hda: 160.0 GB, 160041885696 bytes

    255 heads, 63 sectors/track, 19457 cylinders

    Units = cylinders of 16065 * 512 = 8225280 bytes

     

       Device Boot      Start         End      Blocks   Id  System

    /dev/hda1   *           1          13      104391   83  Linux

    /dev/hda2              14       19457   156183930   8e  Linux LVM

    • Probamos montar

    # mount /dev/hda2 /tmp/mnt

    mount: /dev/hda2 already mounted or /tmp/mnt busy

    • Buscamos a q grupo pertenece el volumen /dev/hda2

    # pvs

      PV         VG         Fmt  Attr PSize   PFree

      /dev/hda2  VolGroup01 lvm2 a-   148.94G 32.00M

      /dev/hdb2  VolGroup00 lvm2 a-   114.94G 96.00M

    • Buscamos el volumen logico en el grupo VolGroup01

    # lvdisplay /dev/VolGroup01

      --- Logical volume ---

      LV Name                /dev/VolGroup01/LogVol00

      VG Name                VolGroup01

      LV UUID                zOQogm-G8I7-a4WC-T7KI-AhWe-Ex3Y-JVzFcR

      LV Write Access        read/write

      LV Status              available

      # open                 0

      LV Size                146.97 GB

      Current LE             4703

      Segments               1

      Allocation             inherit

      Read ahead sectors     0

      Block device           253:2

      

      --- Logical volume ---

      LV Name                /dev/VolGroup01/LogVol01

      VG Name                VolGroup01

      LV UUID                araUBI-4eer-uh5L-Dvnr-3bI6-4gYg-APgYy2

      LV Write Access        read/write

      LV Status              available

      # open                 0

      LV Size                1.94 GB

      Current LE             62

      Segments               1

      Allocation             inherit

      Read ahead sectors     0

      Block device           253:3

    • Para arreglar el bad superblock ejecutamos:

    e2fsck -f /dev/VolGroup01/LogVol00 -y ( -y a no ser q quieras apretar "y" durante una hora xD)

    • Para montarlo, lo siguiente..

    # mount /dev/VolGroup01/LogVol00 /tmp/mnt

     

     

    Fuente

    Mounting a Linux LVM volume

    http://www.linuxquestions.org/questions/linux-hardware-18/bad-superblock-how-to-recover-data-346696/