我的机器是一台带有NVIDIA 2060显卡的Alienware m15r1。我已经安装了Ubuntu20.04LTS,我使用NVIDIA驱动程序440。
每当我运行nvidia-settings时,我只能在左侧得到一个选项卡选项,即素配置文件。我没有别的选择了。
以下是我的NVIDIA X服务器设置的屏幕截图:

下面是nvidia-settings终端输出的截图。

我能做些什么来解决这个问题?
编辑-1:这是lspci -k | grep -EA3 'VGA|3D|Display'的输出

发布于 2020-06-08 09:36:30
我有一个戴尔7577与一个GTX 1060和最近更新到20.04。与18.04/10一样,nvidia驱动程序/模块在检测1060时也有问题。我的解决方案是使用"nvidia-xconfig“创建一个xorg.conf文件,然后指定驱动程序和BusID字段.
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia-440"
BusID "PCI:1@0:0:0"
VendorName "NVIDIA Corporation"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSectionhttps://askubuntu.com/questions/1236143
复制相似问题