麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 系統 > CentOS > 正文

CentOS 6誤刪除的boot分區該如何還原恢復

2020-05-27 13:04:43
字體:
來源:轉載
供稿:網友

   CentOS 6誤刪除的boot分區該如何還原恢復

        在CentOS 6系統中,因為不小心或操作失誤導致boot分區被刪除,遇到這種情況是否能夠恢復被刪除的boot分區呢?其實是可以的,下面隨小編一起來了解下吧。

  1.首先利用centos6鏡像進入linux rescue救援模式。

CentOS 6刪除的boot分區如何還原

  2.啟動sshd服務,查看eth0獲取的ip地址,然后用ssh secure shell 連接。

  SSH Secure Shell 3.2.9 (Build 283)

  Copyright (c) 2000-2003 SSH Communications Security Corp - http://www.ssh.com/

  This copy of SSH Secure Shell is a non-commercial version.

  This version does not include PKI and PKCS #11 functionality.

  [root@localhost ~]# cd /boot //進入/boot分區

  [root@localhost boot]# ls //查看boot分區的內容

  config-2.6.32-71.el6.i686 symvers-2.6.32-71.el6.i686.gz

  grub System.map-2.6.32-71.el6.i686

  initramfs-2.6.32-71.el6.i686.img vmlinuz-2.6.32-71.el6.i686

  [root@localhost boot]# cd 。。//返回上層目錄

  [root@localhost /]# rm -rf /boot/*//刪除/boot分區所有內容

  [root@localhost /]# ls /boot//查看/boot分區內容為空

  [root@localhost /]# mount /dev/sr0 /mnt//掛載cdrom設備到/mnt目錄下

  mount: block device /dev/sr0 is write-protected, mounting read-only

  [root@localhost /]# rpm -ivh /mnt/Packages/kernel-2.6.32-71.el6.i686.rpm --root=/ --force //安裝光盤的kernel軟件包

  Preparing.。。 ########################################### [100%]

  1:kernel ########################################### [100%]

  [root@localhost /]# ls /boot //查看/boot分區內容

  config-2.6.32-71.el6.i686 System.map-2.6.32-71.el6.i686

  initramfs-2.6.32-71.el6.i686.img vmlinuz-2.6.32-71.el6.i686

  symvers-2.6.32-71.el6.i686.gz

  [root@localhost /]# mkdir /boot/grub//在/boot目錄新建一個grub目錄

  [root@localhost /]# touch /boot/grub/grub.conf//新建一個grub.conf配置文件

  [root@localhost /]# cp -rf /usr/share/grub/i386-pc/* /boot/grub/ //把/usr/share/grub/i386-pc的所有內容拷貝到/boot/grub中。

  [root@localhost /]# ls /boot//查看/boot分區內容

  config-2.6.32-71.el6.i686 symvers-2.6.32-71.el6.i686.gz

  grub System.map-2.6.32-71.el6.i686

  initramfs-2.6.32-71.el6.i686.img vmlinuz-2.6.32-71.el6.i686

  [root@localhost /]# ls /boot/grub/ //查看/boot/grub目錄內容

  e2fs_stage1_5 iso9660_stage1_5 stage1 vstafs_stage1_5

  fat_stage1_5 jfs_stage1_5 stage2 xfs_stage1_5

  ffs_stage1_5 minix_stage1_5 stage2_eltorito

  grub.conf reiserfs_stage1_5 ufs2_stage1_5

  [root@localhost /]# fdisk -l //查看分區

  Disk /dev/sda: 21.5 GB, 21474836480 bytes

  255 heads, 63 sectors/track, 2610 cylinders

  Units = cylinders of 16065 * 512 = 8225280 bytes

  Sector size (logical/physical): 512 bytes / 512 bytes

  I/O size (minimum/optimal): 512 bytes / 512 bytes

  Disk identifier: 0x000b1db4

  Device Boot Start End Blocks Id System

  /dev/sda1 * 1 13 102400 83 Linux//這個為/boot啟動分區

  Partition 1 does not end on cylinder boundary.

  /dev/sda2 13 144 1048576 82 Linux swap / Solaris

  Partition 2 does not end on cylinder boundary.

  /dev/sda3 144 2611 19819520 83 Linux //這個為/根分區

  [root@localhost /]# mount//查看所有掛載分區

  /dev/sda3 on / type ext4 (rw)//根分區

  /dev/sda1 on /boot type ext4 (rw)//boot分區為sda1

  devpts on /dev/pts type devpts (rw)

  tmpfs on /dev/shm type tmpfs (rw)

  proc on /proc type proc (rw)

  sysfs on /sys type sysfs (rw)

  /dev/sr0 on /mnt type iso9660 (ro)

  [root@localhost /]# grub//啟動grub

  Probing devices to guess BIOS drives. This may take a long time.

  GNU GRUB version 0.97 (640K lower / 3072K upper memory)

  [ Minimal BASH-like line editing is supported. For the first word, TAB

  lists possible command completions. Anywhere else TAB lists the possible

  completions of a device/filename.]

  grub》 root (hd0,0) //首先find /grub/stage1查看/boot分區為(hd0,0)

  root (hd0,0)//設置/boot分區為/dev/sda1

  Filesystem type is ext2fs, partition type 0x83

  grub》 setup (hd0)//重新安裝grub

  setup (hd0)

  Checking if “/boot/grub/stage1” exists.。。 no

  Checking if “/grub/stage1” exists.。。 yes

  Checking if “/grub/stage2” exists.。。 yes

  Checking if “/grub/e2fs_stage1_5” exists.。。 yes

  Running “embed /grub/e2fs_stage1_5 (hd0)”。。。 26 sectors are embedded.

  succeeded

  Running “install /grub/stage1 (hd0) (hd0)1+26 p (hd0,0)/grub/stage2 /grub/grub.conf”。。。 succeeded

  Done.

  grub》 quit//退出

  3.重新reboot啟動系統進入grub界面測試

CentOS 6刪除的boot分區如何還原

  4.查找find /grub/stage1然后找到/boot分區為(hd0,0),指定kernel,initrd, boot啟動系統成功。

CentOS 6刪除的boot分區如何還原

  5.系統啟動成功,然后進入系統重新寫/boot/grub/grub.conf文件。

CentOS 6刪除的boot分區如何還原

  6.[root@localhost /]# vi /boot/grub/grub.conf配置文件如下:

  最后填寫grub.conf文件內容

  default=0 //默認菜單為第一個

  timeout=6//等待時間為6秒

  title mylinux //啟動標題為mylinux

  root (hd0,0) //boot所在分區為/dev/sda1

  kernel /vmlinuz-2.6.32-71.el6.i686 ro root=/dev/sda3 rhgb quiet//kernel所在位置以只讀模式掛載/dev/sda3根分區rhgb quiet為安靜模式不顯示內核信息。

  initrd /initramfs-2.6.32-71.el6.i686.img//加載initrd鏡像。

  7.最后進入linux rescue重建一個grub

CentOS 6刪除的boot分區如何還原

  8.最后啟動界面如下

CentOS 6刪除的boot分區如何還原

  上面就是CentOS 6恢復被刪除boot分區的方法介紹了,步驟有些長,如果覺得麻煩的話可以重裝系統,同樣能恢復boot分區。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 久草中文网| 黄色片网站在线免费观看 | 91短视频在线观看 | 龙的两根好大拔不出去h | 91av久久 | 麻豆视频在线免费观看 | 亚洲欧美日韩免费 | 九九热精| 久草在线资源福利站 | 国产精品成人av片免费看最爱 | 玖玖精品视频在线 | 色999久久久精品人人澡69 | 国产一级毛片视频在线! | www.guochanav.com| 艹男人的日日夜夜 | 欧美成年人视频在线观看 | 欧美激情区 | 欧美一级在线看 | 99sesese| 久久久久国产成人免费精品免费 | 国产亚洲黑人性受xxxx精品 | 久久久国产一级片 | 中文字幕xxx| 久久精品国产99久久6动漫亮点 | 91av大片| 精品中文字幕久久久久四十五十骆 | 视频一区 日韩 | 日韩av日韩 | 中文字幕一区久久 | 黄色网址入口 | 欧美视频一区二区三区四区 | 欧美一级美国一级 | 欧美一级一片 | 国产精品999在线 | 亚洲精品成人18久久久久 | 欧美一级毛片免费观看视频 | 国产永久免费观看 | 三人弄娇妻高潮3p视频 | xnxx 日本19 | 亚洲一区二区网址 | 久久婷婷一区二区三区 |