I installed Xubuntu 13.04 two months ago. But I don't know to find out which driver is installed for my GPU ( I mean graphic card driver ) or is it installed? I'm feeling something is wrong with my pc graphics.
4 Answers
In the Xubuntu menu click on Settings Manager. This will open the Settings window.
In the Settings window under the Hardware heading, click on the Additional Drivers icon. This will open the Software & Updates window and show the Additional Drivers tab.
If you have a graphics card driver installed, there will be a black dot appearing to the left of it, showing that it is installed. The recommended graphics card driver, if there is one in the list, is the one that has [Recommended] appearing after it. You can install the Recommended driver by selecting the Recommended driver from the list of drivers, clicking the Apply Changes button in the lower right corner of Additional Drivers, and then reboot to enable the graphics card driver.
You can also automatically install the same packages that recommended drivers option of Additional Drivers installs by using the install
option of the ubuntu-drivers program from the terminal. The install command of ubuntu-drivers installs drivers that are appropriate for automatic installation including their dependencies.
sudo ubuntu-drivers install && sudo reboot

- 114,770
Click on the Ubuntu icon on the upper left corner.. then search for Additional Drivers.. click that.. wait for it to check.. and see if you have any driver checked on available.. if not .. you gotta "activate" meaning to install one of them.. it's better to stick with stable releases.. ( check the description of each ) Good luck

- 41
-
1it told me there is no additional drivers available , it means my graphic card driver is not installed? – Gökhan Nas Nov 15 '13 at 00:33
You get a complete report by using inxi -G
command:
$ inxi -G
Graphics:
Device-1: Intel AlderLake-S GT1 driver: i915 v: kernel
Device-2: AMD Ellesmere [Radeon RX 470/480/570/570X/580/580X/590]
driver: amdgpu v: kernel
Device-3: Logitech BRIO Ultra HD Webcam type: USB
driver: hid-generic,snd-usb-audio,usbhid,uvcvideo
Display: wayland server: X.Org v: 1.22.1.8 with: Xwayland v: 22.1.8
compositor: gnome-shell v: 44.0 driver: X: loaded: amdgpu,ati,modesetting
unloaded: fbdev,radeon,vesa gpu: i915 resolution: 3840x2160~60Hz
OpenGL: renderer: Mesa Intel UHD Graphics 770 (ADL-S GT1)
v: 4.6 Mesa 23.0.2
You may need to install inxi first. I highly recommend it.
$ sudo apt install inxi

- 2,479
- 1
- 29
- 48
what does it means?
– Gökhan Nas Nov 15 '13 at 00:36