- 首先使用 UltraISO 或者 ubuntu官网教程推荐的 rufus 制作 U 盘启动盘;
- 重启电脑,一般都是按F12,看能否进入下图界面,如果顺利进入后,选择Install Ubuntu 后能够正常进入 Ubuntu Desktop,那么此教程对你就没太多帮助啦 :);
- 如果是进入类似下面的界面或者不能正常进入 ubuntu desktop,那么请继续阅读全文!
重启电脑,持续按 shift 键,保证能够进入Step 2 中的界面,然后按字母e,在下一个页面queit splash 后面空格然后输入 $vt _handoff acpi_osi=linux nomodeset ,再按 f10,就能够快速进入logo页面,最后进入安装页面;
进入
/etc/default/grub
修改配置,如下:
sudo nano /etc/default/grub
and then add nomodeset
to GRUB_CMDLINE_LINUX_DEFAULT
:
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
GRUB_CMDLINE_LINUX=""
And then save by hitting Ctrl+O, then exit nano with Ctrl+X, then simply run:
sudo update-grub
- 接下来就可以正常安装Ubuntu 单/双系统啦!