web-dev-qa-db-ja.com

CentOSマシンで画面解像度を強制する方法

CeontOSマシンをLCD via KVMに接続しているため、画面の解像度を正しく検出できず、Xサーバーを=でリセットするまで800x600でスタックします。 LCD PCに直接接続されています。どうすればより高い画面解像度を適用できますか?

ありがとう。

編集:私はアドバイスに従い、xorg.confに1つの解決策だけを残しましたが、それは役に立ちませんでした。

Section "Screen"
    Identifier "Screen0"
    Device     "Videocard0"
    DefaultDepth     16
    SubSection "Display"
            Viewport   0 0
            Depth     16
            Modes    "1440x900" 
    EndSubSection
EndSection
2
jackhab

Xrandrを使用して新しい解像度モードを作成し、表示出力を新しいモードに設定してみてください。次の例では、外部モニターがHDM1であり、1920x1080の解像度が必要であると想定しています。

cvt 1920 1080 # Get the correct settings for the new mode
              # Output for me:  "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync 
xrandr --addmode HDMI1 1920x1080_60.00 # Change HDMI1 to whatever output you want to use
xrandr --output HDMI1 --mode 1920x1080_60.00

最後のコマンドを実行した後、ディスプレイは新しい解像度を使用しているはずです。

1
Adam Prax