I have a new ( 1 year) Dell Alienware laptop which came with an invidia graphics card ( geforce rtx 3040). i removed win 11 and installed ubuntu 20.04. It now says my grahics is mesa intel UHD. WHere did the nvidia card go, and will I have issues if i upgrade to ubuntu 22.04?
-
You probably have two adapters: One Intel and one Nvidia. Ubuntu installation defaulted to Interl graphics. You have to search on Internet or AskUbuntu and learn how to install and use the Nvidia driver. – FedKad Jul 11 '22 at 14:26
1 Answers
Check UEFI settings. You should have one that specifies which graphic chip to use. It may allow auto switching. Desktop systems, have two different sets of video ports, one on motherboard and other on nVidia card.
If you change to nVidia, you may need the nomodeset boot parameter to boot, until you install the correct nvidia driver.
New versions of Ubuntu have latest driver. You can use Safe boot option & choose restricted drivers when installing.
If you boot using nomodeset or grub's recovery mode in grub menu, you can just install driver. If you previously installed incorrect or different driver you must purge first or you will have conflicts.
sudo apt-get remove --purge nvidia-*
sudo ubuntu-drivers devices
sudo ubuntu-drivers autoinstall
Installing Ubuntu-mate with dual boot option on Windows 10 - usb booting not happening
Older nomodeset instructions you do not now need to add ppa to get recent drivers:
My computer boots to a black screen, what options do I have to fix it?

- 12,100