我在安装 ubuntu 15.10 时遇到了一些大问题。事情是这样的:
1) 我的电脑上以前安装的是 14.04 版本,一切运行正常。但是昨天,我收到一个窗口,提示我更新到 15.04 版本;在常规更新过程中,我收到大量错误消息,提示许多软件包无法正确配置。最后安装程序说更新失败,并尝试重置为旧配置。但一定是出了什么问题,因为我无法重新启动电脑。因此,我决定删除并直接安装最新版本。
2)我使用旧的 13.04 实时 CD 进行备份,一切正常。
3) 同时,我创建了一个 15.10 live USB。当我尝试时,它无法创建 live 桌面,在 ubuntu 徽标出现后冻结在黑屏上。此外,选择“安装”会在安装窗口出现后立即冻结。
4) 我读到有些硬件需要在 grub 中设置“nomodeset”,于是我照做了。这确实让我可以开始安装程序;但是,在尝试连接 WiFi 时,系统死机了。
5) 我使用实时 15.10 连接到 WiFi,然后启动安装。一切正常。
6) 但是,重启时,我在 ubuntu 徽标后再次出现黑屏。在 grub 中设置 nomodeset 现在似乎没有帮助。我还尝试在恢复模式下在 /etc/default/grub 中添加 nomodeset,但该文件使用 nano 以只读模式打开,因此我无法编辑它
你有什么建议吗?
非常感谢
答案1
Advanced options for Ubuntu
在启动菜单中选择附加了最新内核版本字符串的选项,进入恢复模式recovery menu
。如果启动时未出现 Grub 菜单,请在启动时按Shift或。Esc
您将看到如下所示的几个选项:
选择Enable networking
选项(此时您需要有线连接)。完成后,选择选项Drop into root shell prompt
。在 shell 中执行以下操作:
$ apt-get update && apt-get upgrade
$ reboot
如果更新软件包不能解决您的问题,您可以尝试在恢复模式下安装专有 ATI 驱动程序:
$ apt-get purge fglrx*
$ reboot # only if there was something to uninstall otherwise go to the next step
$ apt-get install fglrx
$ amdconfig --initial
$ reboot
如果网络不可用,请从此处下载驱动程序http://support.amd.com/en-us/download/desktop?os=Linux+x86_64并解压。使用实时 CD 将文件夹复制到笔记本电脑上,然后在恢复模式 root shell 中执行:
$ cd /path/to/driver.run
$ chmod +x amd-driver-installer-XX.XXX-x86.x86_64.run
$ ./amd-driver-installer-XX.XXX-x86.x86_64.run
$ amdconfig --initial
$ reboot
您现在应该可以正常启动 Ubuntu。
注意:对于 nVidia 系统,进入 root shell 后使用以下命令:
$ ubuntu-drivers devices
== /sys/devices/pci0000:00/0000:00:1c.4/0000:03:00.0 ==
model : GM107M [GeForce GTX 960M]
modalias : pci:v000010DEd0000139Bsv00001028sd000006E1bc03sc02i00
vendor : NVIDIA Corporation
driver : xserver-xorg-video-nouveau - distro free builtin
driver : nvidia-352-updates - distro non-free
driver : nvidia-352 - distro non-free recommended
$ apt-get install nvidia-352 # the number must match the version you got above
$ nvidia-xconfig
$ reboot