How do I find out the model of my graphics card?
up vote
209
down vote
favorite
I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
graphics hardware gpu
add a comment |
up vote
209
down vote
favorite
I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
graphics hardware gpu
1
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
1
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03
add a comment |
up vote
209
down vote
favorite
up vote
209
down vote
favorite
I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
graphics hardware gpu
I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
graphics hardware gpu
graphics hardware gpu
edited Nov 27 at 21:36
Jackspace
195
195
asked Oct 27 '11 at 9:51
sasyna
1,066287
1,066287
1
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
1
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03
add a comment |
1
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
1
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03
1
1
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
1
1
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03
add a comment |
5 Answers
5
active
oldest
votes
up vote
223
down vote
Open up "Terminal", and type: lspci | grep VGA
There, you'll find your GPU card's model.
8
I had to specify -v (verbose) to get the model on my ATI...for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
In such cases,DeviceName
is what you want and it's likely the line after the one you're grepping. Uselspci -v | grep VGA -A 1
to include one line after.
– Adam Marshall
Aug 14 '16 at 10:39
2
First dosudo update-pciids
to download new version of the PCI ID list. Then dolspci
. Updating pci ids can improve information available aslspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
– VJ-
Nov 27 '17 at 7:52
add a comment |
up vote
98
down vote
For detailed information about your graphics card, usually including its make and model, run:
sudo lshw -C video
This might give the make and model name more often than lspci
, but it is not guaranteed to give it (nor is lspci
).
sudo lshw -C display
is equivalent.
You can run this (either one) without sudo
, but you're a little less likely to get as much information. Still, lshw -C video
is a reasonable choice if you don't have administrative powers.
If you like, you can parse the output to get just the line with the model name:
sudo lshw -C video | grep product:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(Don't forget the space just after -Fproduct:
, before the closing '
.)
As an example: on my system, this gives:
M52 [Mobility Radeon X1300]
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
add a comment |
up vote
35
down vote
Sometimes lspci is not enough:
$ lspci -nn |egrep "VGA|Display"
e.g.: you can end up with something like this:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
so then you can try to grep Xorg log:
$ grep -i chipset /var/log/Xorg.0.log
and dmesg
$ dmesg |grep -i agp
5
TheXorg
logs were the only thing that had the specific model for me. +1
– Cory Klein
Sep 19 '13 at 22:49
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
add a comment |
up vote
8
down vote
- run gnome-control-center (from a terminal, or in the main menu system settings)
- search for 'system' and open "System Info"
- You are done.
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
add a comment |
up vote
5
down vote
If GUI/display available, you can try:
xrandr --listproviders
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
223
down vote
Open up "Terminal", and type: lspci | grep VGA
There, you'll find your GPU card's model.
8
I had to specify -v (verbose) to get the model on my ATI...for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
In such cases,DeviceName
is what you want and it's likely the line after the one you're grepping. Uselspci -v | grep VGA -A 1
to include one line after.
– Adam Marshall
Aug 14 '16 at 10:39
2
First dosudo update-pciids
to download new version of the PCI ID list. Then dolspci
. Updating pci ids can improve information available aslspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
– VJ-
Nov 27 '17 at 7:52
add a comment |
up vote
223
down vote
Open up "Terminal", and type: lspci | grep VGA
There, you'll find your GPU card's model.
8
I had to specify -v (verbose) to get the model on my ATI...for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
In such cases,DeviceName
is what you want and it's likely the line after the one you're grepping. Uselspci -v | grep VGA -A 1
to include one line after.
– Adam Marshall
Aug 14 '16 at 10:39
2
First dosudo update-pciids
to download new version of the PCI ID list. Then dolspci
. Updating pci ids can improve information available aslspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
– VJ-
Nov 27 '17 at 7:52
add a comment |
up vote
223
down vote
up vote
223
down vote
Open up "Terminal", and type: lspci | grep VGA
There, you'll find your GPU card's model.
Open up "Terminal", and type: lspci | grep VGA
There, you'll find your GPU card's model.
edited Nov 9 '12 at 18:45
answered Oct 27 '11 at 10:11
Shiki
3,39351425
3,39351425
8
I had to specify -v (verbose) to get the model on my ATI...for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
In such cases,DeviceName
is what you want and it's likely the line after the one you're grepping. Uselspci -v | grep VGA -A 1
to include one line after.
– Adam Marshall
Aug 14 '16 at 10:39
2
First dosudo update-pciids
to download new version of the PCI ID list. Then dolspci
. Updating pci ids can improve information available aslspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
– VJ-
Nov 27 '17 at 7:52
add a comment |
8
I had to specify -v (verbose) to get the model on my ATI...for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
In such cases,DeviceName
is what you want and it's likely the line after the one you're grepping. Uselspci -v | grep VGA -A 1
to include one line after.
– Adam Marshall
Aug 14 '16 at 10:39
2
First dosudo update-pciids
to download new version of the PCI ID list. Then dolspci
. Updating pci ids can improve information available aslspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
– VJ-
Nov 27 '17 at 7:52
8
8
I had to specify -v (verbose) to get the model on my ATI...
for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
I had to specify -v (verbose) to get the model on my ATI...
for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
– Pete
Dec 29 '15 at 19:27
1
1
In such cases,
DeviceName
is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1
to include one line after.– Adam Marshall
Aug 14 '16 at 10:39
In such cases,
DeviceName
is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1
to include one line after.– Adam Marshall
Aug 14 '16 at 10:39
2
2
First do
sudo update-pciids
to download new version of the PCI ID list. Then do lspci
. Updating pci ids can improve information available as lspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)– VJ-
Nov 27 '17 at 7:52
First do
sudo update-pciids
to download new version of the PCI ID list. Then do lspci
. Updating pci ids can improve information available as lspci
output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)– VJ-
Nov 27 '17 at 7:52
add a comment |
up vote
98
down vote
For detailed information about your graphics card, usually including its make and model, run:
sudo lshw -C video
This might give the make and model name more often than lspci
, but it is not guaranteed to give it (nor is lspci
).
sudo lshw -C display
is equivalent.
You can run this (either one) without sudo
, but you're a little less likely to get as much information. Still, lshw -C video
is a reasonable choice if you don't have administrative powers.
If you like, you can parse the output to get just the line with the model name:
sudo lshw -C video | grep product:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(Don't forget the space just after -Fproduct:
, before the closing '
.)
As an example: on my system, this gives:
M52 [Mobility Radeon X1300]
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
add a comment |
up vote
98
down vote
For detailed information about your graphics card, usually including its make and model, run:
sudo lshw -C video
This might give the make and model name more often than lspci
, but it is not guaranteed to give it (nor is lspci
).
sudo lshw -C display
is equivalent.
You can run this (either one) without sudo
, but you're a little less likely to get as much information. Still, lshw -C video
is a reasonable choice if you don't have administrative powers.
If you like, you can parse the output to get just the line with the model name:
sudo lshw -C video | grep product:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(Don't forget the space just after -Fproduct:
, before the closing '
.)
As an example: on my system, this gives:
M52 [Mobility Radeon X1300]
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
add a comment |
up vote
98
down vote
up vote
98
down vote
For detailed information about your graphics card, usually including its make and model, run:
sudo lshw -C video
This might give the make and model name more often than lspci
, but it is not guaranteed to give it (nor is lspci
).
sudo lshw -C display
is equivalent.
You can run this (either one) without sudo
, but you're a little less likely to get as much information. Still, lshw -C video
is a reasonable choice if you don't have administrative powers.
If you like, you can parse the output to get just the line with the model name:
sudo lshw -C video | grep product:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(Don't forget the space just after -Fproduct:
, before the closing '
.)
As an example: on my system, this gives:
M52 [Mobility Radeon X1300]
For detailed information about your graphics card, usually including its make and model, run:
sudo lshw -C video
This might give the make and model name more often than lspci
, but it is not guaranteed to give it (nor is lspci
).
sudo lshw -C display
is equivalent.
You can run this (either one) without sudo
, but you're a little less likely to get as much information. Still, lshw -C video
is a reasonable choice if you don't have administrative powers.
If you like, you can parse the output to get just the line with the model name:
sudo lshw -C video | grep product:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(Don't forget the space just after -Fproduct:
, before the closing '
.)
As an example: on my system, this gives:
M52 [Mobility Radeon X1300]
edited Jan 20 '17 at 10:19
Benoit Duffez
227311
227311
answered Apr 12 '13 at 22:01
Eliah Kagan
81k20226364
81k20226364
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
add a comment |
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
first command worked pretty well for AMD gpu
– Rahul
Jan 20 '17 at 10:28
add a comment |
up vote
35
down vote
Sometimes lspci is not enough:
$ lspci -nn |egrep "VGA|Display"
e.g.: you can end up with something like this:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
so then you can try to grep Xorg log:
$ grep -i chipset /var/log/Xorg.0.log
and dmesg
$ dmesg |grep -i agp
5
TheXorg
logs were the only thing that had the specific model for me. +1
– Cory Klein
Sep 19 '13 at 22:49
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
add a comment |
up vote
35
down vote
Sometimes lspci is not enough:
$ lspci -nn |egrep "VGA|Display"
e.g.: you can end up with something like this:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
so then you can try to grep Xorg log:
$ grep -i chipset /var/log/Xorg.0.log
and dmesg
$ dmesg |grep -i agp
5
TheXorg
logs were the only thing that had the specific model for me. +1
– Cory Klein
Sep 19 '13 at 22:49
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
add a comment |
up vote
35
down vote
up vote
35
down vote
Sometimes lspci is not enough:
$ lspci -nn |egrep "VGA|Display"
e.g.: you can end up with something like this:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
so then you can try to grep Xorg log:
$ grep -i chipset /var/log/Xorg.0.log
and dmesg
$ dmesg |grep -i agp
Sometimes lspci is not enough:
$ lspci -nn |egrep "VGA|Display"
e.g.: you can end up with something like this:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
so then you can try to grep Xorg log:
$ grep -i chipset /var/log/Xorg.0.log
and dmesg
$ dmesg |grep -i agp
answered Nov 2 '12 at 14:53
sobi3ch
712815
712815
5
TheXorg
logs were the only thing that had the specific model for me. +1
– Cory Klein
Sep 19 '13 at 22:49
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
add a comment |
5
TheXorg
logs were the only thing that had the specific model for me. +1
– Cory Klein
Sep 19 '13 at 22:49
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
5
5
The
Xorg
logs were the only thing that had the specific model for me. +1– Cory Klein
Sep 19 '13 at 22:49
The
Xorg
logs were the only thing that had the specific model for me. +1– Cory Klein
Sep 19 '13 at 22:49
1
1
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
+1 Having an Intel card, only this method gives me some specific info about my card.
– Ramchandra Apte
Sep 29 '13 at 11:10
add a comment |
up vote
8
down vote
- run gnome-control-center (from a terminal, or in the main menu system settings)
- search for 'system' and open "System Info"
- You are done.
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
add a comment |
up vote
8
down vote
- run gnome-control-center (from a terminal, or in the main menu system settings)
- search for 'system' and open "System Info"
- You are done.
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
add a comment |
up vote
8
down vote
up vote
8
down vote
- run gnome-control-center (from a terminal, or in the main menu system settings)
- search for 'system' and open "System Info"
- You are done.
- run gnome-control-center (from a terminal, or in the main menu system settings)
- search for 'system' and open "System Info"
- You are done.
answered Oct 27 '11 at 10:27
imbaer
2,15812125
2,15812125
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
add a comment |
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
1
1
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
Type update-pciids and then try lspci again
– chrisfs
Jan 18 '13 at 17:36
add a comment |
up vote
5
down vote
If GUI/display available, you can try:
xrandr --listproviders
add a comment |
up vote
5
down vote
If GUI/display available, you can try:
xrandr --listproviders
add a comment |
up vote
5
down vote
up vote
5
down vote
If GUI/display available, you can try:
xrandr --listproviders
If GUI/display available, you can try:
xrandr --listproviders
edited Oct 25 '17 at 14:16
Community♦
1
1
answered Jul 29 '16 at 0:03
Constantine
5112
5112
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f72766%2fhow-do-i-find-out-the-model-of-my-graphics-card%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36
1
This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03