系统 /boot 分区损坏

一般来说系统 /boot 分区损坏,我们会先尝试修复文件系统。如果文件系统损坏不能修复,那么我们可以参照前述的方法来依次新建 /boot 分区,重新安装内核和镜像,然后安装 GURB 再手工编辑引导菜单,以最终来恢复系统可正常引导。通常我们需要按照如下的步骤来恢复。

创建分区

碰到比较严重的情况就是 /boot 分区已经完全损坏,启动时会提示找不到引导设备。

图 8. 引导分区损坏

挂载安装盘后进入援救模式,查看分区情况,发现分区 /dev/sda1 不存在。

  1. bash-4.1#   
  2. Disk /dev/sda: 43.0 GB, 42991616000 bytes   
  3. 255 heads, 63 sectors/track, 5226 cylinders   
  4. Units = cylinders of 16065 * 512 = 8225280 bytes   
  5. Sector size (logical/physical): 512 bytes / 512 bytes   
  6. I/O size (minimum/optimal): 512 bytes / 512 bytes   
  7. Disk identifier: 0x00000000   
  8.  
  9.   Device Boot      Start         End      Blocks   Id  System   
  10. /dev/sda2              17         147     1048576   82  Linux swap / Solaris   
  11. Partition 2 does not end on cylinder boundary.   
  12. /dev/sda3             147        5227    40803328   83  Linux   
  13.  
  14. Disk /dev/sdb: 2147 MB, 2147483648 bytes   
  15. 255 heads, 63 sectors/track, 261 cylinders   
  16. Units = cylinders of 16065 * 512 = 8225280 bytes   
  17. Sector size (logical/physical): 512 bytes / 512 bytes   
  18. I/O size (minimum/optimal): 512 bytes / 512 bytes   
  19. Disk identifier: 0xcdd48395   
  20.  
  21.   Device Boot      Start         End      Blocks   Id  System   
  22. /dev/sdb1               1         261     2096451   83  Linux  

新建一个分区并且设置它为启动分区。

  1. bash-4.1# fdisk /dev/sda   
  2.  
  3. WARNING: DOS-compatible mode is deprecated. It's strongly recommended to   
  4.         switch off the mode (command 'c') and change display units to   
  5.         sectors (command 'u').   
  6.  
  7. Command (m for help): n   
  8. Command action   
  9.   e   extended   
  10.   p   primary partition (1-4)   
  11. p   
  12. Partition number (1-4): 1   
  13. First cylinder (1-5226, default 1):   
  14. Using default value 1   
  15. Last cylinder, +cylinders or +size{K,M,G} (1-16, default 16):   
  16. Using default value 16   
  17.  
  18. Command (m for help): a   
  19. Partition number (1-4): 1   
  20.  
  21. Command (m for help): p   
  22.  
  23. Disk /dev/sda: 43.0 GB, 42991616000 bytes   
  24. 255 heads, 63 sectors/track, 5226 cylinders   
  25. Units = cylinders of 16065 * 512 = 8225280 bytes   
  26. Sector size (logical/physical): 512 bytes / 512 bytes   
  27. I/O size (minimum/optimal): 512 bytes / 512 bytes   
  28. Disk identifier: 0x00000000   
  29.  
  30.   Device Boot      Start         End      Blocks   Id  System   
  31. /dev/sda1   *           1          16      128488+  83  Linux   
  32. /dev/sda2              17         147     1048576   82  Linux swap / Solaris   
  33. Partition 2 does not end on cylinder boundary.   
  34. /dev/sda3             147        5227    40803328   83  Linux   
  35.  
  36. Command (m for help): w   
  37. The partition table has been altered!  

重启主机以更新分区表,然后进入援救模式,并在我们新创建的分区上创建文件系统。

  1. bash-4.1# mkfs.ext4 /dev/sda1   
  2. Filesystem label=   
  3. OS type: Linux   
  4. Block size=1024 (log=0)   
  5. Fragment size=1024 (log=0)   
  6. Stride=0 blocks, Stripe width=0 blocks   
  7. 32128 inodes, 128488 blocks   
  8. 6424 blocks (5.00%) reserved for the super user   
  9. First data block=1   
  10. Maximum filesystem blocks=67371008   
  11. 16 block groups   
  12. 8192 blocks per group, 8192 fragments per group   
  13. 2008 inodes per group   
  14. Superblock backups stored on blocks:   
  15.        8193, 24577, 40961, 57345, 73729   
  16.  
  17. Writing inode tables: done   
  18. Creating journal (4096 blocks): done   
  19. Writing superblocks and filesystem accounting information: done   
  20.  
  21. This filesystem will be automatically checked every 38 mounts or   
  22. 180 days, whichever comes first.  Use tune2fs -c or -i to override.  

安装内核镜像文件

通过前述的方法我们安装内核和镜像文件。

  1. bash-4.1# chroot /mnt/sysp_w_picpath   
  2. sh-4.1# mount /dev/sda1 /boot   
  3. sh-4.1# mount – o loop /dev/sr0 /media   
  4. sh-4.1# cd /media/Server/Packages   
  5. sh-4.1# rpm -ivh --force kernel-2.6.32-71.el6.x86_64.rpm   
  6. warning: kernel-2.6.32-71.el6.x86_64.rpm:    
  7. Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY   
  8. Preparing...                ########################################### [100%]   
  9.   1:kernel                  ########################################### [100%]  

安装 GRUB

我们安装 GRUB 到硬盘设备 sda 上。

  1. sh-4.1# grub-install /dev/sda   
  2. Installation finished. No error reported.   
  3. This is the contents of the device map /boot/grub/device.map.   
  4. Check if this is correct or not. If any of the lines is incorrect,   
  5. fix it and re-run the script `grub-install'.   
  6.  
  7. (fd0)   /dev/fd0   
  8. (hd0)   /dev/sda   
  9. (hd1)   /dev/sdb  

编辑引导菜单

由于我们创建了新的分区,其对应的 UUID 会发生变化,可以通过命令 blkid 来查询分区的 UUID。

  1. bash-4.1# blkid   
  2. /dev/loop0: TYPE="squashfs" 
  3. /dev/sda2: UUID="7b1e0fac-ff06-492c-848d-497e2a38c54e" TYPE="swap" 
  4. /dev/sda3: UUID="ef89764e-04ff-4f26-ae82-dcab267ecc66" TYPE="ext4" 
  5. /dev/sdb1: UUID="2b824352-df2a-44c6-a547-838d46f526fa" SEC_TYPE="ext2" TYPE="ext3" 
  6. /dev/loop1: LABEL="RHEL_6.0 x86_64 Disc 1" TYPE="iso9660" 
  7. /dev/sda1: UUID="cec964af-1618-48ff-ac33-4ef71b9d3265" TYPE="ext4" 

上述的 sda3 为根分区,编辑 /boot/grub/grub.conf 文件更新其对应的 UUID,其内容如下。

  1. title Red Hat Enterprise Linux 6   
  2. root (hd0,0)   
  3. kernel /vmlinuz-2.6.32-71.el6.x86_64    
  4. root=UUID=ef89764e-04ff-4f26-ae82-dcab267ecc66 rhgb quiet   
  5. initrd /initramfs-2.6.32-71.el6.x86_64.img  

更新 /etc/fstab

类似的我们也需要更新 /etc/fstab 里 /boot 分区对应的新 UUID,其内容如下。

  1. #   
  2. # /etc/fstab   
  3. # Created by anaconda on Sun Mar 18 04:35:07 2012   
  4. #   
  5. # Accessible filesystems, by reference, are maintained under '/dev/disk'  
  6. # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info   
  7. #   
  8. UUID=ef89764e-04ff-4f26-ae82-dcab267ecc66 /                  ext4    defaults        1 1   
  9. UUID=cec964af-1618-48ff-ac33-4ef71b9d3265 /boot              ext4    defaults        1 2   
  10. UUID=7b1e0fac-ff06-492c-848d-497e2a38c54e swap               swap    defaults        0 0   
  11. tmpfs                   /dev/shm                tmpfs   defaults        0 0   
  12. devpts                  /dev/pts                devpts  gid=5,mode=620  0 0   
  13. sysfs                   /sys                     sysfs   defaults        0 0   
  14. proc                    /proc                    proc    defaults        0 0  

现在我们的恢复步骤已经完成,重启主机后 GRUB 中可见我们配置的系统列表。

图 9. GRUB 菜单

至此 /boot 分区已恢复,系统可正常引导启动。

图 10. 系统启动

总结

本文阐述了常见的 Linux 灾难恢复技术和方法,及其出现严重灾难时应注意的恢复顺序,以确保 Linux 系统在出现灾难时得以安全恢复。