私は持っています二つ次の設定でArch Linuxを監視して使用します。
- 1280×1024(メイン)
- 1680×1050(通常)
- ATI Radeon X1300
- オープンソースATIドライバ
スプラッシュ画面では、マイプライマリモニタ(17 ")の解像度は正確で、2番目のモニタは最初のモニタを複製して同じ解像度(1280x1024)を持ちます。
xrandr
Xを起動した後、正しい解像度を得るには2回実行する必要がありました。
xrandr --output DVI-0 --mode 1280x1024 --output DVI-1 --mode 1680x1050 --left-of DVI-0
xrandr
コマンドを追加して永久に作成しようとしましたが、.xinitrc
動作しません。両方のモニターで正しい解像度を得るには、Xを起動してからxrandr
2回実行します。
私は何も定義しませんでしたxorg.conf
(そして方法もわかりません:))。この問題を解決するにはどうすればよいですか?
答え1
xrandr
コマンドを入力することは、.xinitrc
永続設定を保存する正しい方法ではありません。を使用する必要がありますxorg.conf
。
したがって、まずxrandr行を削除してから.xinitrc
ファイルを作成(または編集)します/etc/X11/xorg.conf
。これは正確に次のようにする必要があります(キーボード、マウス、または同様のデバイスを設定する必要がない限り、もう必要ありません)。
Section "Monitor"
Identifier "First monitor"
Option "PreferredMode" "1280x1024"
EndSection
Section "Monitor"
Identifier "Second monitor"
Option "PreferredMode" "1680x1050"
Option "LeftOf" "First monitor"
EndSection
Section "Device"
Identifier "Radeon X1300"
Driver "radeon"
Option "Monitor-DVI-0" "First monitor"
Option "Monitor-DVI-1" "Second monitor"
EndSection
答え2
私もこの問題を何度も経験しました。
何らかの理由で私の画面には時々「名前」を変更する迷惑な習慣があり、私が設定したスニペットを役に立たxrandr
なくします。
まず、モニターが正しく認識されていることを再確認してください。
xmax@max-desktop:~> xrandr
Screen 0: minimum 320 x 200, current 3360 x 1050, maximum 3360 x 1050
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9*+
1400x1050 59.9
1600x900 59.9
1360x1024 59.9
1280x1024 75.0 60.0
1440x900 59.9
1280x960 60.0
1280x800 60.0
1152x864 59.9 75.0
1280x768 60.0
1280x720 60.0
1024x768 75.0 60.0
800x600 75.0 60.3 56.2
640x480 75.0 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 connected 1680x1050+1680+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9*+
1400x1050 59.9
1600x900 59.9
1360x1024 59.9
1280x1024 75.0 60.0
1440x900 75.0 59.9
1280x960 60.0
1280x800 60.0
1152x864 59.9 75.0
1280x768 60.0
1280x720 60.0
1024x768 75.0 60.0
800x600 75.0 60.3 56.2
640x480 75.0 59.9
名前が正しい場合は、システムが~/.xinitrc
起動時に名前を読み取れなかったか、コマンドを誤って入力したようです。