Mesaは機能しますが、nvidia-xconfigで生成されたnvidiaドライバと設定ファイルを使用してXserverとGUIを起動することはできません。

Mesaは機能しますが、nvidia-xconfigで生成されたnvidiaドライバと設定ファイルを使用してXserverとGUIを起動することはできません。

私はArch LinuxベースのManjaroオペレーティングシステムを使用しています。したがって、gfxを使用してドライバを切り替えることができます。

sudo mhwd-gpu --setgl [メサ/Nvidia]

注文する。ただし、Xorgの設定が正しくないため、gfxカードをクリックすることはできません。 xorg と mesa をグラフィックライブラリとして使用します。

Section "Device"
        Identifier  "Device0"
        Driver      "intel"
        BusID       "PCI:0:2:0"
        Option      "AccelMethod" "sna"
        Option      "DRI"    "true"
EndSection


Section "DRI"
        Group  "video"
        Mode   0666
EndSection


Section "Extensions"
        Option "Composite" "Enable"
        Option "RENDER"    "Enable"
EndSection


Section "InputClass"
        Identifier          "Keyboard Defaults"
        MatchIsKeyboard     "yes"
        Option              "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

nvidia-xconfigとnvidiaをグラフィカルライブラリとして使用して作成されたxorgは失敗します。

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen" 0 0
    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 "InputClass"
    Identifier         "Keyboard Defaults"
    MatchIsKeyboard    "yes"
    Option         "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "InputClass"
    Identifier         "Keyboard Defaults"
    MatchIsKeyboard    "yes"
    Option         "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "AccelMethod" "sna"
    Option         "DRI" "true"
    Option         "AddARGBGLXVisuals" "True"
    SubSection     "Display"
        Depth       24
        Modes      "nvidia-auto-select"
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
    Option         "RENDER" "Enable"
EndSection

何が間違っているのかを理解するのに役立ちますか?

ベストアンサー1

おすすめ記事