web-dev-qa-db-ja.com

xorg.confファイルを使用して画面解像度を変更する

私は最近(今日)ラップトップにNvidiaグラフィックドライバーをインストールし、チュートリアルの指示に従ってnvidia-xconfigを使用してxorg.confファイルを生成しました。私はラップトップを使用しており、外部モニターを接続しています。外部モニターの解像度は問題ありませんが、ラップトップのメイン画面は4:3解像度になりました。 xorg.confファイルに何が含まれているのかわかりません。このようなものを見たことはありません。画面解像度を16:9、1366x768に戻すのを手伝ってくれる人はいますか。

これがxorg.confファイルです。

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 390.48  (buildmeister@swio-display-x86-rhel47-07)  Thu Mar 22 01:07:32 PDT 2018


Section "ServerLayout"
    Identifier     "layout"
    Screen      0  "nvidia" 0 0
    Inactive       "intel"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "keyboard"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       60.0 - 100.0
    VertRefresh     60.0 - 100.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "nvidia"
    Driver         "nvidia"
    BusID          "PCI:1:0:0"
EndSection

Section "Device"
    Identifier     "intel"
    Driver         "modesetting"
EndSection

Section "Screen"
    Identifier     "nvidia"
    Device         "nvidia"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "AllowEmptyInitialConfiguration"
    Option         "RegistryDwords" "PrefLevelSrc=0x2222"
    Option         "TripleBuffer" "True"
    SubSection     "Display"
        Depth       24
        Modes      "nvidia-auto-select"
    EndSubSection
EndSection

Section "Screen"
    Identifier     "intel"
    Device         "intel"
    Monitor        "Monitor0"
EndSection
1
Sahil

さて、ウェブをざっと見てから、これが私が思いついた解決策です。 xorg.confを使用して、手動で生成されたnvidia-xconfigファイルを使用していました。これは正しい設定を生成していませんでした。これは最終的に私のために働いたものです。

ctrl+alt+f2(またはコマンドラインモードに入るために使用するキーの組み合わせ)を押します

管理者としてログインします。

私のようなGDMを使用している場合は、service gdm stopを使用してプロセスを停止してください。

X-serverが実行されているかどうかを確認します。 ps -C Xorgを使用してから、プロセスを強制終了します。 kill -9 PID

Xorg -configureを生成するxorg.conf.newを使用します

ここで、単に.newファイルを/etc/X11/ディレクトリに移動します。
mv xorg.conf.new /etc/X11/xorg.conf

GDMservice gdm startを再起動します

これで完了です。

1
Sahil