濮阳杆衣贸易有限公司

主頁 > 知識(shí)庫 > CentOS 6誤刪除的boot分區(qū)該如何還原恢復(fù)

CentOS 6誤刪除的boot分區(qū)該如何還原恢復(fù)

熱門標(biāo)簽:長沙呼叫中心外呼系統(tǒng)穩(wěn)定嗎 昆明crm外呼系統(tǒng)價(jià)格 臨沂語音電話機(jī)器人公司 騰沖銷售外呼管理系統(tǒng)服務(wù) 電銷機(jī)器人自動(dòng)撥號(hào)信息 用什么軟件做地圖標(biāo)注 洛陽外呼增值業(yè)務(wù)線路解決方案 400電話申請(qǐng)安裝 北京地圖標(biāo)注平臺(tái)注冊(cè)入駐

  在CentOS 6系統(tǒng)中,因?yàn)椴恍⌒幕虿僮魇д`導(dǎo)致boot分區(qū)被刪除,遇到這種情況是否能夠恢復(fù)被刪除的boot分區(qū)呢?其實(shí)是可以的,下面隨小編一起來了解下吧。

  1.首先利用centos6鏡像進(jìn)入linux rescue救援模式。

  2.啟動(dòng)sshd服務(wù),查看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.

 ?。踨oot@localhost ~]# cd /boot //進(jìn)入/boot分區(qū)

  [root@localhost boot]# ls //查看boot分區(qū)的內(nèi)容

  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

 ?。踨oot@localhost boot]# cd 。。//返回上層目錄

 ?。踨oot@localhost /]# rm -rf /boot/*//刪除/boot分區(qū)所有內(nèi)容

  [root@localhost /]# ls /boot//查看/boot分區(qū)內(nèi)容為空

 ?。踨oot@localhost /]# mount /dev/sr0 /mnt//掛載cdrom設(shè)備到/mnt目錄下

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

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

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

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

 ?。踨oot@localhost /]# ls /boot //查看/boot分區(qū)內(nèi)容

  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

 ?。踨oot@localhost /]# mkdir /boot/grub//在/boot目錄新建一個(gè)grub目錄

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

 ?。踨oot@localhost /]# cp -rf /usr/share/grub/i386-pc/* /boot/grub/ //把/usr/share/grub/i386-pc的所有內(nèi)容拷貝到/boot/grub中。

 ?。踨oot@localhost /]# ls /boot//查看/boot分區(qū)內(nèi)容

  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目錄內(nèi)容

  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

 ?。踨oot@localhost /]# fdisk -l //查看分區(qū)

  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//這個(gè)為/boot啟動(dòng)分區(qū)

  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 //這個(gè)為/根分區(qū)

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

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

  /dev/sda1 on /boot type ext4 (rw)//boot分區(qū)為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)

 ?。踨oot@localhost /]# grub//啟動(dòng)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分區(qū)為(hd0,0)

  root (hd0,0)//設(shè)置/boot分區(qū)為/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啟動(dòng)系統(tǒng)進(jìn)入grub界面測(cè)試

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

  5.系統(tǒng)啟動(dòng)成功,然后進(jìn)入系統(tǒng)重新寫/boot/grub/grub.conf文件。

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

  最后填寫grub.conf文件內(nèi)容

  default=0 //默認(rèn)菜單為第一個(gè)

  timeout=6//等待時(shí)間為6秒

  title mylinux //啟動(dòng)標(biāo)題為mylinux

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

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

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

  7.最后進(jìn)入linux rescue重建一個(gè)grub

  8.最后啟動(dòng)界面如下

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

標(biāo)簽:昌都 通化 涼山 濰坊 汕頭 遼寧 三亞 南充

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《CentOS 6誤刪除的boot分區(qū)該如何還原恢復(fù)》,本文關(guān)鍵詞  CentOS,誤,刪除,的,boot,分區(qū),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《CentOS 6誤刪除的boot分區(qū)該如何還原恢復(fù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于CentOS 6誤刪除的boot分區(qū)該如何還原恢復(fù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    玉溪市| 内乡县| 乐安县| 双桥区| 红原县| 夏河县| 织金县| 平和县| 梓潼县| 德化县| 阳江市| 侯马市| 屯门区| 江津市| 镇坪县| 通州区| 清苑县| 明水县| 晴隆县| 西昌市| 博白县| 阜平县| 拉萨市| 廉江市| 铁岭市| 慈溪市| 沙坪坝区| 丹棱县| 福海县| 安宁市| 榆树市| 宝坻区| 红原县| 车险| 大港区| 临沭县| 白玉县| 贡嘎县| 攀枝花市| 紫阳县| 翁源县|