Ubuntu – No NVIDIA settings except Prime Profiles

20.04driversgraphicsnvidianvidia-settings

My machine is an Alienware m15r1 with an NVIDIA RTX 2060 graphics card.
I have Ubuntu 20.04 LTS installed, and I use NVIDIA drivers 440.

Whenever I run nvidia-settings, I only get one tab option on the left side, which is PRIME PROFILES. There is no other option available to me.

Here is a screenshot of my NVIDIA X Server Settings:

nvidia-settings

And here is a screenshot from the terminal output of nvidia-settings.

nvidia-settings terminal output

What can I do to resolve this?

Edit-1: Here's the output of lspci -k | grep -EA3 'VGA|3D|Display'

Best Answer

I have a Dell 7577 with a GTX 1060 and recently updated to 20.04. As with 18.04/10 the nvidia driver/module had problems detecting the 1060. My solution was to use "nvidia-xconfig" to create an xorg.conf file and then specify the Driver and BusID fields...

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
Related Question