Debian 시스템에 연결된 모니터 세부 정보 가져오기

Debian 시스템에 연결된 모니터 세부 정보 가져오기

나는 GNOME과 함께 Debian 11을 실행하고 있는데 연결된 모니터에 대한 정보를 얻는 것이 쉽지 않다는 것을 깨달았습니다(바람직하게는 터미널에서).

내가 찾은 가장 유망한 솔루션은 read-edid다음과 같은 결과를 제공합니다.

모니터 정보(예: 모델, 제조업체 등)를 얻는 가장 좋은 방법에 대한 아이디어가 있습니까?

This is read-edid version 3.0.2. Prepare for some fun.
Attempting to use i2c interface
Looks like no busses have an EDID. Sorry!
Attempting to use the classical VBE interface

        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f00 bx=0x0 cx=0x0
        Function unsupported
        Call failed

        VBE version 0
        VBE string at 0x0 "O"

VBE/DDC service about to be called
        Report DDC capabilities

        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f15 bx=0x0 cx=0x0
        Function unsupported
        Call failed

Reading next EDID block

VBE/DDC service about to be called
        Read EDID

        Performing real mode VBE call
        Interrupt 0x10 ax=0x4f15 bx=0x1 cx=0x0
        Function unsupported
        Call failed

The EDID data should not be trusted as the VBE call failed
Error: output block unchanged
I'm sorry nothing was successful. Maybe try some other arguments
if you played with them, or send an email to Matthew Kern <[email protected]>.

답변1

hwinfo를 사용해 보십시오(아마도 기본적으로 설치되지 않음 -

sudo apt-get update
sudo apt-get -y install hwinfo

그 다음에:

# hwinfo --monitor
20: None 00.0: 10002 LCD Monitor                                
  [Created at monitor.125]
  Unique ID: rdCR.N0FAT8Jqir3
  Parent ID: _Znp.b_TacHfrIK6
  Hardware Class: monitor
  Model: "DELL S2415H"
  Vendor: DEL "DELL"
  Device: eisa 0xa0b5 "DELL S2415H"
  Serial ID: "MG4R352S0EWL"
  Resolution: 720x400@70Hz
  Resolution: 640x480@60Hz
  Resolution: 640x480@75Hz
  Resolution: 800x600@60Hz
  Resolution: 800x600@75Hz
  Resolution: 1024x768@60Hz
  Resolution: 1024x768@75Hz
  Resolution: 1280x1024@75Hz
  Resolution: 1152x864@75Hz
  Resolution: 1280x1024@60Hz
  Resolution: 1600x900@60Hz
  Resolution: 1600x1200@60Hz
  Resolution: 1920x1080@60Hz
  Size: 527x296 mm
  Year of Manufacture: 2015
  Week of Manufacture: 9
  Detailed Timings #0:
     Resolution: 1920x1080
     Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
       Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
    Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
  Driver Info #0:
    Max. Resolution: 1920x1080
    Vert. Sync Range: 56-76 Hz
    Hor. Sync Range: 30-83 kHz
    Bandwidth: 148 MHz
  Config Status: cfg=new, avail=yes, need=no, active=unknown
  Attached to: #17 (VGA compatible controller)

관련 정보