采坑记
由于工作需要没办法需要linux,因此打算装个双系统,先看最下面
elitebook735相关信息
- 固件1.04
第一步:制作启动盘
忽略,参考其他教程
第二步:关闭secure boot
嗯,大家应该可以找到
第三步:插入启动盘,从启动盘启动
如果不做任何处理会导致进入不去(就选择try ubuntu without install就会变成紫色了)
方法1:
修改启动盘中 boot目录下的grub下的grub.cfg
if loadfont /boot/grub/font.pf2 ; then
set gfxmode=auto
insmod efi_gop
insmod efi_uga
insmod gfxterm
terminal_output gfxterm
fi
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
set timeout=5
menuentry "Try Ubuntu without installing" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper mce=off quiet splash ---
initrd /casper/initrd.lz
}
menuentry "Install Ubuntu" {
set mce=off
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper mce=off only-ubiquity quiet splash ---
initrd /casper/initrd.lz
}
menuentry "OEM install (for manufacturers)" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper mce=off only-ubiquity quiet splash oem-config/enable=true ---
initrd /casper/initrd.lz
}
menuentry "Check disc for defects" {
set gfxpayload=keep
linux /casper/vmlinuz boot=casper mce=off integrity-check quiet splash ---
initrd /casper/initrd.lz
}
注意下就是加了mce=off,
上面可能太长了就是在这行,
linux /casper/vmlinuz boot=casper mce=off integrity-check quiet splash
加了mce=off,凡是有这样的都加上就行了
然后,我们就可以进入安装环境了
第四步,正常安装
参考其他教程
最好升级一下内核到4.20,这样就可以跳过第五步了
去这<https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.20/ >下载这几个文件
linux-headers-4.20.0-042000_4.20.0-042000.201812232030_all.deb
linux-headers-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
linux-image-unsigned-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
linux-modules-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
重启电脑
第五步 修改grub文件
我的经历是这样的,尽管系统安装好了,但是还是进不去,因此需要再grub2.02的界面 ,按e编辑下启动项。在linux xxxx root=xxxx 这一行,root的前面加这样 linux xxxx mce=off root=xxxx .按ctrl+x,ctrl+c 保存吧 。
然后就会直接进去了。
进去之后,还需要修改/boot/grub/grub.cfg ,还是加入mce=off
建议
升级到内核4.20就可以解决这个问题
结束
有问题的下面评论吧,如果急的话可以发邮件到 peter_chen_jaon@foxmail.com
感悟
破电脑,MMP
其实还有一个简单的方法就是!!!
安装一个内核版本在4.20以上的系统,就没有什么幺蛾子了。