原来用的是Windows8.1+Lubuntu14.04双系统,后来发现Y470的硬件驱动有许多小问题。查了一下联想官方只支持到Windows8,不支持Windows8.1 ,所以就换回Windows8了。装好Windows8发现没法引导Lubuntu了,需要重新安装GRUB。为什么用ArchLinux的安装盘呢?第一是因为它的镜像文件比较小,第二因为“A”的排序靠前,制作安装盘的时候好找。
首先下载ArchLinux的安装镜像,2015年1月的,用Win32 Disk Imager写入到U盘。制作安装盘最好用Win32 Disk Imager,而且最好去SourceForge下载,因为我试过的其他安装盘制作工具,对新版的Linux发行版的支持都不是很好。
做好安装盘用U盘启动电脑,选择64位或者32位的安装。
用fdisk -l
查看Lubuntu的安装位置。
我的是装在sda7,/boot没有独立的分区,所以安装GRUB是这样的:
<pre><code>
mkdir -p /tmp/mnt/root && mount /dev/sda7 /tmp/mnt/root
grub-install --root-directory=/tmp/mnt/root /dev/sda
reboot
</code></pre>
运气好的话,就可以找回原来的引导了。
如果 /boot有独立的分区,比如根目录是sda9,/boot目录是sda8,那么安装GRUB就是这样的:
<pre><code>
mkdir -p /tmp/mnt/root && mount /dev/sda9 /tmp/mnt/root && mount /dev/sda8 /tmp/mnt/root/boot
grub-install --root-directory=/tmp/mnt/root /dev/sda
reboot
</code></pre>
最后,进入Lubuntu系统打开终端执行sudo update-grub
网友评论