web-dev-qa-db-ja.com

UbuntuはHDMIポートを認識しません

正常に動作する通常のモニターに接続されたUbuntu(エレメンタリーOS)を実行しています。 HDMIポートを介してテレビに接続しようとしていますが、テレビは信号を取得できません。私を助けてください。

出力:Sudo lshw -C display

  *-display               
   description: VGA compatible controller
   product: RS780L [Radeon 3000]
   vendor: Hynix Semiconductor (Hyundai Electronics)
   physical id: 5
   bus info: pci@0000:01:05.0
   version: 00
   width: 32 bits
   clock: 33MHz
   capabilities: pm msi vga_controller bus_master cap_list rom
   configuration: driver=radeon latency=0
   resources: irq:18 memory:d0000000-dfffffff ioport:d000(size=256) memory:feaf0000-feafffff memory:fe900000-fe9fffff

xrandrの出力:

\Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
VGA-0 connected 1366x768+0+0 (normal left inverted right x axis y axis) 410mm x 230mm
1366x768       59.8*+
1024x768       75.1     60.0  
800x600        75.0     60.3  
640x480        75.0     60.0  
720x400        70.1  
DVI-0 disconnected (normal left inverted right x axis y axis)

xrandrはHDMIをまったく表示しません。 これは問題ですか

monitor

Sudo get-edidの出力| parse-edid

parse-edid: parse-edid version 2.0.0
get-edid: get-edid version 2.0.0

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

VBE version 300
VBE string at 0xc01d0 "ATI ATOMBIOS"

VBE/DDC service about to be called
Report DDC capabilities

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

Monitor and video card combination does not support DDC1 transfers
Monitor and video card combination supports DDC2 transfers
0 seconds per 128 byte EDID block transfer
Screen is not blanked during DDC transfer

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 supported
    Call successful

parse-edid: EDID checksum passed.

# EDID version 1 revision 3
Section "Monitor"
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
Identifier "Dell IN1930"
VendorName "DEL"
ModelName "Dell IN1930"
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
HorizSync 30-83
VertRefresh 56-75
# Max dot clock (video bandwidth) 90 MHz
# DPMS capabilities: Active off:yes  Suspend:yes  Standby:yes

Mode    "1366x768"  # vfreq 59.790Hz, hfreq 47.712kHz
    DotClock    85.500000
    HTimings    1366 1436 1579 1792
    VTimings    768 771 774 798
    Flags   "+HSync" "+VSync"
EndMode
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
EndSection

ここで何をする必要があるのか​​理解できません。説明してください。私のPCがHDMIポートを介して出力を送信するかどうかまだわかりません。お願い助けて!

11
user283926

デュアルディスプレイを実行しようとしている場合は、「スクリーンディスプレイ」の「システム設定」を確認してください。通常、「ミラーディスプレイ」(両方の画面で同じもの)または「ディスプレイを拡張」(デスクトップで両方の画面を使用する)の設定があります。多くのインストールでは、2番目の画面を差し込むだけではこれらはオンになりません。

これが単一ディスプレイであり、モニターをテレビに交換しようとしている場合は、次のことを確認してください。

  • グラフィックカードが出力しようとしている解像度とリフレッシュレートをテレビで処理できる
  • テレビは接続した正しいHDMI出力に設定されます(私のテレビには4があり、リモコンの「入力」ボタンを使用してそれらを切り替えることができます)
  • テレビで別のHDMIコネクタを試してください
  • グラフィックカードがHDMI経由で信号を送信していることを確認してください。このためにxorg.confファイルを編集する必要がある場合があります 詳細はこちら
3
tlhIngan