6

After changing to Intel (Power Saving Mode), Nvidia X-server setting is not showing anything. I need to active GPU now but can't activate it.

$ sudo lshw -c display
  *-display                 
       description: VGA compatible controller
       product: HD Graphics 5500
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:50 memory:99000000-99ffffff memory:a0000000-afffffff ioport:5000(size=64) memory:c0000-dffff
  *-display
       description: 3D controller
       product: GK208BM [GeForce 920M]
       vendor: NVIDIA Corporation
       physical id: 0
       bus info: pci@0000:04:00.0
       version: a1
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list rom
       configuration: driver=nvidia latency=0
       resources: irq:16 memory:9a000000-9affffff memory:b0000000-bfffffff memory:c0000000-c1ffffff ioport:3000(size=128) memory:9b000000-9b07ffff

$ sudo nvidia-settings

ERROR: Unable to load info from any available system

(nvidia-settings:45705): GLib-GObject-CRITICAL : 16:53:23.943: g_object_unref: assertion 'G_IS_OBJECT (object)' failed Message: 16:53:23.948: PRIME: No offloading required. Abort ** Message: 16:53:23.948: PRIME: is it supported? no

enter image description here

5 Answers5

3

I had this problem after a fresh Ubuntu 20.04 install.

Running sudo ubuntu-drivers autoinstall solved the issue.

1

I fixed this issue by installing another version of Nvidia driver. I am not sure about whether this error will appear again.

  • Which other version of the NVIDIA driver did you install? What commands did you use to install this other version? Did you remove the old NVIDIA driver? – Lexible Oct 31 '20 at 22:35
  • I removed all nvidia related driver previously installed. Then installed another version of nvidia driver from additional driver in software & updates. – Sayed Sohan Oct 31 '20 at 22:47
  • Thank you. How did you remove all previously installed nvidia-related drivers? – Lexible Oct 31 '20 at 22:59
  • https://askubuntu.com/questions/206283/how-can-i-uninstall-a-nvidia-driver-completely This question's answer helped me – Sayed Sohan Oct 31 '20 at 23:01
  • @SayedSohan when i opened additional drivers in software & updates, it says no additional driver available – Israel Obanijesu Apr 12 '21 at 20:13
  • @IsraelObanijesu maybe your gpu isn't recognized.. try install gpu directly from nvidia website or reinstall os. – Sayed Sohan Apr 13 '21 at 06:59
  • 1
    Ah, gave up on it already, all i wanted to do is change the overscan for my TV when using HDMI but it is not that important to the extent of reinstalling my os – Israel Obanijesu Apr 13 '21 at 07:03
0

You could have just changed the Nvidia setting via command line by using:

sudo prime-select nvidia

Then it would have gone back to Nvidia mode.

Greenonline
  • 2,081
Thief
  • 1
0

This solution worked for me (a problem linked to ubuntu-drivers-common package updating) :

Use this command to open the /usr/bin/prime-supported file:

xed admin:///usr/bin/prime-supported

Change this line:

if [ -e "/var/lib/ubuntu-drivers-common/requires_offloading" ]; then

To this:

if [ -e "/var/lib/ubuntu-drivers-common/requires_offloading" || true ]; then

source : https://forums.linuxmint.com/viewtopic.php?p=1970510&sid=2e76739afd221ba2200fddbfdb7a040d#p1970510

Pop
  • 1
-1

Your graphics isn't recognized.

I just reinstalled OS and mark "install third party software".

After that, do not install any other graphic driver. You will run on Intel choosen by Ubuntu. Nothing other works like this solution.

PS: When you reinstall, you can choose in Nvidia x server settings " Power saving mode".

Hope it helps.

Emvo
  • 150
  • 1
    Thanks. I fixed this issue by installing another version of Nvidia driver. I am not sure about whether this error will appear again. – Sayed Sohan Jul 20 '20 at 12:52