首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >没有NVIDIA设置,只有Profiles除外

没有NVIDIA设置,只有Profiles除外
EN

Ask Ubuntu用户
提问于 2020-05-06 13:29:57
回答 1查看 2.1K关注 0票数 2

我的机器是一台带有NVIDIA 2060显卡的Alienware m15r1。我已经安装了Ubuntu20.04LTS,我使用NVIDIA驱动程序440。

每当我运行nvidia-settings时,我只能在左侧得到一个选项卡选项,即素配置文件。我没有别的选择了。

以下是我的NVIDIA X服务器设置的屏幕截图:

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

我能做些什么来解决这个问题?

编辑-1:这是lspci -k | grep -EA3 'VGA|3D|Display'的输出

EN

回答 1

Ask Ubuntu用户

发布于 2020-06-08 09:36:30

我有一个戴尔7577与一个GTX 1060和最近更新到20.04。与18.04/10一样,nvidia驱动程序/模块在检测1060时也有问题。我的解决方案是使用"nvidia-xconfig“创建一个xorg.conf文件,然后指定驱动程序和BusID字段.

代码语言:javascript
复制
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
EndSection
票数 1
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/1236143

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档