web-dev-qa-db-ja.com

検証付きのUbuntu 12.04でのNVIDIA 720Mドライバーのインストール

**

質問

**

私のラップトップモデルは、NVIDIA 720M(オプティマスではない)グラフィックスカードを搭載したASUS F550CCです。

UbuntuにNVIDIA 720Mをインストールするためにどのような方法を使用する必要があるのか​​、私は混乱しています。 PPA、追加ドライバー、またはNVIDIAのWebサイトを経由する必要がありますか?

私がしたことは、Ubuntuの新規インストール時に追加ドライバーに表示される2つのNVIDIAドライバーをインストールすることでした。画像ファイルを添付すると、Ubuntuは私のグラフィックカードを検出できないことがわかります。

また、glxinfoを実行するためにmesa-utilsをインストールしましたが、以下に添付されている画像ファイルに示されているエラーメッセージが表示されました。

lspci | grep NVIDIAを実行すると、ドライバーが表示されました。私は本当に混乱しています。 1つは検出できない、もう1つは検出できる、と言います。私は何を信じるべきですか?また、NVIDIAが正しくインストールされているかどうかを実際にテストするにはどうすればよいですか(たとえば、何らかのテストプログラムを実行しています)?また、正しくインストールしましたか?

UbuntuをNVIDIAにインストールした方法の詳細は次のとおりです。

  1. 新規インストール時にアップデートをインストールせずにUbuntu 12.04 x64をインストールしました。 (インストールを高速化するため)
  2. 専用ドライバーのいずれかをインストールして再起動します。
  3. もう1つをインストールして再起動します。
  4. Mesa-utilsをインストールしました。

最終更新:

enter image description here

トラブルシューティングプロセス:コメントも確認してください

Sudo nvidia-settingsを実行すると、NVIDIA GUIが表示されます

Sudo nvidia-xconfigとSudo rebootも実行します

今、私はこのいビデオ解像度を得ました。また、glxinfoを再度実行しましたが、同じエラーメッセージが表示されましたが、詳細には不明が表示されなくなりましたが、まったく表示されません。

enter image description here

Sudo rebootを実行した後の/etc/X11/xorg.confは次のとおりです。

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 331.20  (buildmeister@swio-display-x86-rhel47-05)  Wed Oct 30 18:20:53 PDT 2013

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
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 "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
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"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Dmesgの実行| NVIDIAが提供するgrep enter image description here

Nvidia-settings設定ウィンドウ enter image description here

2
Xegara

解決しよう!

NVIDIA 720Mカードの取り付け(非最適化)

1. Install proprietary drivers with restarting after each driver's installation.
2. run the following:
Sudo apt-get install mesa-utils
Sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
Sudo apt-get update
Sudo apt-get dist-upgrade
3. Install again proprietary driver and restart.
4. Press start and click Details. You will see the graphics card installed.
(We do not need to run Sudo nvidia-xconfig)
0
Xegara

あなたが実行する必要があります:

Sudo nvidia-xconfig
Sudo modprobe nvidia
Sudo restart lightdm

これにより、インストールされたドライバーがアクティブになります。

実際、xorg.confは時代錯誤です。最新のXドライバーでは必要ありません。しかし、NVIDIAは、適切に動作するように記述されることを望んでいます。例/etc/X11/xorg.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 304.108  (buildmeister@swio-display-x64-rhel04-06)  Wed Jul 31 20:47:43 PDT 2013

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
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 "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
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"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
0
Danatela