1

I know that there are a lot of similiar topics, but I've read them all and none of them helped mi to solve the problem. I have Asus Tuf Gaming fx505 with Geforce GTX1650, and my external monitor is not being detected. I'm using nvidia-driver-440, tried 435, 430, nouveau. I turned off secure boot as well.

Anyone know if it's possible to connect monitor via hdmi, I've tried everything.

3 Answers3

2

Nvidia

The recommended Nvidia driver for Gefore GTX1650 is 430.09. It can be downloaded at here, or direct download. Also, check your BIOS to assure that the hdmi port is properly enabled. Check if the hdmi port works under Windows. Check that in Ubuntu, the hdmi display is enabled in the Displays settings.

BIOS

In the terminal, do sudo dmidecode -s bios-version and check your BIOS version. You have 308. It should be 310 to be current. The newer BIOS can be downloaded from here. Assure good backups before updating your BIOS.

heynnema
  • 70,711
1

Found solution here: https://forums.developer.nvidia.com/t/nvidia-xconfig-doesnt-do-what-i-want-it-to-nor-does-nvidia-settings/107883/7

Main steps:

  1. delete /etc/X11/xorg.conf
  2. modify /usr/share/X11/xorg.conf.d/10-amdgpu.conf

Driver "amdgpu" -> Driver "modesetting"

  1. inside /usr/share/X11/xorg.conf.d/10-nvidia.conf add

Option "PrimaryGPU" "Yes"

  1. create two files optimus.desktop in /etc/xdg/autostart/ and /usr/share/gdm/greeter/autostart/ with content:

optimus.desktop

[Desktop Entry]
Type=Application
Name=Optimus
Exec=sh -c "xrandr --setprovideroutputsource modesetting NVIDIA-0; xrandr --auto"
NoDisplay=true
X-GNOME-Autostart-Phase=DisplayServer

After, function can be checked in terminal:

__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia glxinfo | grep vendor

The output should be something with Nvidia

It works for me.

0

With Ubuntu 20.04 and mainline 5.8 kernel all works fine for HDMI either with AMD GPU ou Nvidia GPU and Nvidia driver.

So you need absolutely update to 5.8 Kernel.

I wrote this for a computer with Ryzen 4800H and Geforce 1660 ; it will help you but is in french : https://doc.ubuntu-fr.org/asus-a17-tuf66iu

Oli
  • 186