1

How to get sure that my AMD graphic card is installed in ubuntu?is there anything similar to device manager in windows?

Aria P74
  • 127
  • https://askubuntu.com/questions/887264/does-ubuntu-have-a-device-manager-equivalent-and-what-is-an-easy-way-to-acces – Rinzwind Dec 12 '19 at 14:32

2 Answers2

2

You can run the lshw -class display command and it will tell you what vendor you are using for your gpu. If you don't have lshw you can install it with apt install lshw

1

You can use lspci to list the devices.

Adding -v or -vv (or more v's) gives you more detail.

For usb there is also lsusb or lsblk for block-devices...

Virsacer
  • 348
  • 3
  • 9