0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GPUが載っているPCでASPEEDから出力したい

Posted at

はじめに

環境によりますが、GPU 搭載の ASpeed のオンボードを持つマザーで、NVIDIA ドライバーを入れたときに表示されない場合があります。大体は xorg.conf を単に削除するぐらいで良いのですが、、、

インストール後の調整

通常通りに OS をインストールし、NVIDIA ドライバまで当たっている状態とします。

  • Wayland を無効にします
  • xorg.conf が生成されていることを確認します
  • 下記のように書き換えます ※BusID は環境により異なります
Section "Device"
    Identifier     "Device0"
    Driver         "ast"
    VendorName     "ASpeed"
    BusID          "PCI:195:0:0"
EndSection
  • Screen に下記のように Display サブセクションを追記します ※Modes は環境により異なります
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Viewport   0 0
        Depth       24
        Modes      "1920x1080"
    EndSubSection
EndSection
  • 再起動します

参考にしたサイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?