1.下載CentOS-6.4安裝光盤ISO
2.使用UltraISO將其刻錄到U盤
3.重啟使用進入BIOS界面,選擇從U盤啟動
4.到安裝光盤界面時,選擇Rescue install system進入拯救模式
5.進行一系列設置後,進入shell模式
6.執行如下命令,重裝grub
[php]
# chroot /mnt/sysimage
# /sbin/grub-install /dev/sda
7.查看/編輯grub配置文件
[php]
#vi /boot/grub/grub.conf
8.如果沒有Windows啟動項,可以手動添加
#Windows
title windows7
root (hd0,0)
makeactive
chainloader +1
9.保存,退出,重啟
[php]
#exit
#reboot