วันอังคารที่ 20 พฤศจิกายน พ.ศ. 2555

วิธีการกู้ Boot Recovery Linux Mint after installing Windows 8


วิธีการกู้ Boot Recovery Linux Mint after installing Windows 8
--------------------------------------------------------------------------------------
- ใช้แผ่น DVD - Linux mint ในการ boot ระบบ
- หลังจาก boot เข้าสู่ OS เรียบร้อยแล้วให้พิมพ์ดังนี้
- ใช้คำสั่งสำหรับ mount พาร์ติชั่นของ Linux ขึ้นมาดังนี้
sudo mount /dev/sda5 /mnt
- ใช้คำสั่งสำหรับการ mount อุปกรณ์
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys

sudo chroot /mnt
- หากเกิดปัญหาไม่สามารถใช้คำสั่ง chroot ได้โดยมี error ลักษณะนี้
chroot: failed to run command `/bin/bash': Exec format error
ให้ตรวจสอบแผ่นระบบปฎิบัติการว่าท่านใช้ 32 bits หรือ 64 bits ครับ 
Verify that you are using the right Live CD. For example, verify you are not using a 32bit CD instead of a 64bit CD. You need a 64bit kernel to run 64bit code, so check your architecture.
sudo grub-install /dev/sda
sudo update-grub
exit

sudo umount /mnt/dev
sudo umount /mnt/proc
sudo umount /mnt/sys
sudo umount /mnt

sudo reboot