我不能登录到Ubuntu-gnome 15.10时,启用Nvidia VGA在主要设置。输入密码时,会显示一个黑色屏幕,然后再显示gdm登录页面。我安装了不同版本的Nvidia驱动程序,但是这个问题没有解决。但这是关于一个嘴之前的工作。请帮帮我!
$lshw -C display
*-display UNCLAIMED
description: 3D controller
product: GK208M [GeForce GT 740M]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:07:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:b3000000-b3ffffff memory:a0000000-afffffff memory:b0000000-b1ffffff ioport:4000(size=128)
*-display
description: VGA compatible controller
product: 4th Gen Core Processor Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 06
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:31 memory:b5000000-b53fffff memory:c0000000-cfffffff ioport:6000(size=64)发布于 2016-02-24 16:54:48
似乎是显卡驱动程序的问题。我有一个类似的,并得到了修复,你可以参考这里
通常,您应该使用官方Ubuntu存储库中的驱动程序。因为你有问题,使用最新的驱动程序可能会更好。安装最新的官方稳定NVIDIA驱动程序的GEFORCE GTX 740米。
首先卸载当前安装的NVIDIA驱动程序。启动电脑,当GRUB菜单出现时.
高亮显示Ubuntu菜单项并按E键。将nouveau.modeset=0添加到linux行的末尾。按F10启动Ubuntu操作系统。
当登录屏幕出现时,按Ctrl+Alt+F1键。输入您的用户名和密码,然后执行:
sudo apt-get purge nvidia*
sudo reboot现在安装最新的官方稳定NVIDIA驱动程序。启动电脑,当GRUB菜单出现时.
高亮显示Ubuntu菜单项并按E键。将nouveau.modeset=0添加到linux行的末尾。按F10启动Ubuntu操作系统。
当登录屏幕出现时,按Ctrl+Alt+F1键。输入您的用户名和密码,然后执行:
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-361
sudo reboot 注意:也许在BIOS中明确需要选择NVIDIA适配器。当您想使用驱动程序361时,添加PPA是不必要的。在这种情况下,您必须执行的终端命令如下:
sudo apt-get update
sudo apt-get install nvidia-361
sudo reboot如果您已经从他们的站点安装了nvidia驱动程序(*run),然后按照该说明卸载它。

https://askubuntu.com/questions/738600
复制相似问题