Ubuntu / Check Intel Integrated GPU
1. inxi
$ inxi -G
[ Execution log ]
gangserver@RC530-U0922:~$ inxi -G
Graphics:
Device-1: Intel 2nd Generation Core Processor Family Integrated Graphics
driver: i915 v: kernel
Device-2: NVIDIA GF108M [GeForce GT 540M] driver: nouveau v: kernel
Device-3: Silicon Motion WebCam SCB-1100N driver: uvcvideo type: USB
Display: wayland server: X.Org v: 23.2.6 with: Xwayland v: 23.2.6
compositor: gnome-shell v: 46.0 driver: X: loaded: modesetting
unloaded: fbdev,vesa dri: crocus gpu: i915,nouveau resolution:
1: 1366x768~60Hz 2: 1024x768~60Hz
API: EGL v: 1.5 drivers: crocus,nouveau,swrast
platforms: gbm,wayland,x11,surfaceless,device
API: OpenGL v: 4.5 compat-v: 3.3 vendor: intel mesa
v: 25.0.7-0ubuntu0.24.04.2 renderer: Mesa Intel HD Graphics 3000 (SNB GT2)
2. lshw
$ lshw -c display
[ Execution log ]
gangserver@RC530-U:~$ lshw -c display
경고: 이 프로그램은 슈퍼유저로 실행해야 합니다.
*-display
description: 3D controller
product: GF108M [GeForce GT 540M]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:01:00.0
logical name: /dev/fb1
version: a1
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom fb
configuration: depth=32 driver=nouveau latency=0 resolution=1024,768
resources: irq:30 memory:f5000000-f5ffffff memory:e0000000-efffffff memory:f0000000-f1ffffff ioport:d000(size=128) memory:f6000000-f607ffff
*-display
description: VGA compatible controller
product: 2nd Generation Core Processor Family Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
logical name: /dev/fb0
version: 09
width: 64 bits
clock: 33MHz
capabilities: vga_controller bus_master cap_list rom fb
configuration: depth=32 driver=i915 latency=0 resolution=1600,900
resources: irq:29 memory:f6400000-f67fffff memory:d0000000-dfffffff ioport:e000(size=64) memory:c0000-dffff
경고: 결과가 불충분하거나 부정확할 수 있습니다. 이 프로그램은 슈퍼유저로 실행해야 합니다.
$ sudo lshw -c display
[ Execution log ]
gangserver@RC530-U:~$ sudo lshw -c display
[sudo] gangserver 암호:
*-display
description: 3D controller
product: GF108M [GeForce GT 540M]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:01:00.0
logical name: /dev/fb1
version: a1
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list rom fb
configuration: depth=32 driver=nouveau latency=0 resolution=1024,768
resources: irq:30 memory:f5000000-f5ffffff memory:e0000000-efffffff memory:f0000000-f1ffffff ioport:d000(size=128) memory:f6000000-f607ffff
*-display
description: VGA compatible controller
product: 2nd Generation Core Processor Family Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
logical name: /dev/fb0
version: 09
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom fb
configuration: depth=32 driver=i915 latency=0 resolution=1600,900
resources: irq:29 memory:f6400000-f67fffff memory:d0000000-dfffffff ioport:e000(size=64) memory:c0000-dffff
3. lspci
$ lspci | grep VGA
[ Execution log ]
gangserver@RC530-U0922:~$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
[ Ubuntu installation log ]
1. inxi
$ sudo apt install inxi
[ Execution log ]
gangserver@RC530-U0922:~$ sudo apt install inxi
패키지 목록을 읽는 중입니다... 완료
의존성 트리를 만드는 중입니다... 완료
상태 정보를 읽는 중입니다... 완료
다음의 추가 패키지가 설치될 것입니다 :
mesa-utils mesa-utils-bin tree
제안하는 패키지:
libxml-dumper-perl
다음 새 패키지를 설치할 것입니다:
inxi mesa-utils mesa-utils-bin tree
0개 업그레이드, 4개 새로 설치, 0개 제거 및 0개 업그레이드 안 함.
1,615 k바이트 아카이브를 받아야 합니다.
이 작업 후 4,855 k바이트의 디스크 공간을 더 사용하게 됩니다.
계속 하시겠습니까? [Y/n] y
(... Log omitted ...)
2. lshw
$ sudo apt install lshw
[ Execution log ]
gangserver@RC530-U0922:~$ sudo apt install lshw
패키지 목록을 읽는 중입니다... 완료
의존성 트리를 만드는 중입니다... 완료
상태 정보를 읽는 중입니다... 완료
다음 새 패키지를 설치할 것입니다:
lshw
0개 업그레이드, 1개 새로 설치, 0개 제거 및 0개 업그레이드 안 함.
334 k바이트 아카이브를 받아야 합니다.
이 작업 후 997 k바이트의 디스크 공간을 더 사용하게 됩니다.
(... Log omitted ...)
3. lspci
$ sudo apt install pciutils
[ Execution log ]
gangserver@gooroom:~$ sudo apt install pciutils
패키지 목록을 읽는 중입니다... 완료
의존성 트리를 만드는 중입니다... 완료
상태 정보를 읽는 중입니다... 완료
다음 새 패키지를 설치할 것입니다:
pciutils
0개 업그레이드, 1개 새로 설치, 0개 제거 및 0개 업그레이드 안 함.
104 k바이트 아카이브를 받아야 합니다.
이 작업 후 215 k바이트의 디스크 공간을 더 사용하게 됩니다.
(... Log omitted ...)
[ Reference ]
https://www.binarytides.com/check-intel-igpu-details-on-ubuntu/
How to Check Intel Integrated GPU Details on Ubuntu / Linux
A lot of Intel processors like the i5-7400 have integrated gpus, that work quite well with Ubuntu and similar Linux systems using the open source drivers. Besides IGPU inside CPUs, there are even some motherboards
www.binarytides.com