解像度2560x1080を変更できません。
ノートブックHP Probook 6560B。 (i5 2540m、統合グラフィックスIntel hd3000)
ノートブックにはグラフィックカードのみが統合されています。
ケーブルを介して接続されたモニターDisplay Port => HDMI。
設定では、フルHD解像度1920x1080しかありません。
設定の解像度は2560x1080ではありません。
インテルのサイトから独自のドライバーをインストールしました=> 16.04用のIntelグラフィックユーティリティ
このリンクからカスタム解像度を設定しようとしました=> カスタム解像度を設定
Xrandrからの出力=>
Screen 0: minimum 320 x 200, current 3286 x 1080, maximum 8192 x 8192
LVDS-1 connected primary 1366x768+1920+0 (normal left inverted right x axis y axis) 344mm x 194mm
1366x768 59.99*+ 39.94
1360x768 59.80 59.96
1024x768 60.04 60.00
960x720 60.00
928x696 60.05
896x672 60.01
960x600 60.00
960x540 59.99
800x600 60.00 60.32 56.25
840x525 60.01 59.88
800x512 60.17
700x525 59.98
640x512 60.02
720x450 59.89
640x480 60.00 59.94
680x384 59.80 59.96
576x432 60.06
512x384 60.00
400x300 60.32 56.34
320x240 60.05
VGA-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
HDMI-3 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 673mm x 284mm
1920x1080 60.00* 50.00 59.94
1920x1080i 60.00 50.00 59.94
1680x1050 59.88
1600x900 60.00
1280x1024 75.02 60.02
1152x864 75.00
1280x720 60.00 50.00 59.94
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 60.00 59.94
640x480 75.00 60.00 59.94
720x400 70.08
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
私の手順:
gtf 2560 1080 60
xrandr --newmode "TEST" 230.76 2560 2728 3000 3440 1080 1081 1084 1118 -HSync +Vsync
xrandr --addmode HDMI-3 "TEST"
xrandr --output HDMI-3 --mode "TEST"
これらの手順の後、解像度は変わりません。
詳細なxrandr:
xrandr --output HDMI-3 --mode "TEST" --verbose
crtc 1: TEST 60.00 +0+0 "HDMI-3"
xrandr: Configure crtc 1 failed
crtc 0: disable
crtc 1: disable
screen 0: revert
crtc 0: revert
crtc 1: revert
設定には2560x1080の解像度が表示されます。この解像度を設定しようとすると、画像が壊れて2つのエラーが表示されます。
新しい解像度=>
最初のエラー=>
2番目のエラー=>
また、ATcomアダプター経由で接続しようとしましたが、結果が得られませんでした。解像度は1920x1080のままです。
このノートブックにWindows 7をインストールし、ビデオカード用のドライバーをインストールしました。モニターは解像度2560x1080で正常に動作しています。
解決:
更新頻度を50Hzに設定すると、モニターは正常に動作し始めます。
手順:
gtf 2560 1080 50
# 2560x1080 @ 50.00 Hz (GTF) hsync: 55.60 kHz; pclk: 188.60 MHz
Modeline "2560x1080_50.00" 188.60 2560 2704 2976 3392 1080 1081 1084 1112 -HSync +Vsync
xrandr --newmode "TEST" 188.60 2560 2704 2976 3392 1080 1081 1084 1112 -HSync +Vsync
xrandr --addmode HDMI-3 "TEST"
xrandr --output HDMI-3 --mode "TEST"
起動システムで解決を自動ロードするスクリプトを追加しました。
そこからスクリプトを取得しました=> 自動ロード解決のためのスクリプト
ファイル.xprofileを作成し、必要に応じてスクリプトを変更しました。
#!/bin/sh
MODE_NAME="ULTRAWIDE"
OUTPUT="HDMI-3"
CONNECTED_OUTPUT=$(xrandr --current | grep -i $OUTPUT | cut -f2 -d' ')
if [ "$CONNECTED_OUTPUT" == "connected" ];
then
# SET 2560x1080 50 HZ
xrandr --newmode "$MODE_NAME" 188.60 2560 2704 2976 3392 1080 1081 1084 1112 -HSync +Vsync
xrandr --addmode HDMI-3 "$MODE_NAME"
else
echo "ULTRAWIDE IS NOT DETECTED !"
fi
Tks!
.xconfigに2つのコマンドを追加しました。
開くには:Sudo gedit ~/.xprofile
#!/ bin/sh MODE_NAME = "ULTRAWIDE" OUTPUT = "HDMI-3" CONNECTED_OUTPUT = $(xrandr --current | grep -i $ OUTPUT | cut -f2 -d '') if ["$ CONNECTED_OUTPUT" == "connected"]; then #SET 2560x1080 50 HZ xrandr --newmode "$ MODE_NAME" 188.60 2560 2704 2976 3392 1080 1081 1084 1112 -HSync + Vsync xrandr --addmode HDMI-3 "$ MODE_NAME" xrandr-出力HDMI-3 --mode "$ MODE_NAME" xrandr --output HDMI-3 --primary else echo "ULTRAWIDE IS NOT DETECTED! 「 fi