web-dev-qa-db-ja.com

Nvidia 331グラフィックスドライバーに切り替えることができません

Ubuntu 14.04 LTSでHDMIビデオ出力を動作させようとしていますが、これまでのところ運がありません。そこで、私は独自のNvidia 331ドライバーをインストールしました。

ただし、システムはデフォルトとしてIntelドライバーを使用しているようです。

    lspci -k | grep VGA -A2
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18)
    Subsystem: Dell Device 044f
    Kernel driver in use: i915
    --
    01:00.0 VGA compatible controller: NVIDIA Corporation GT216M [GeForce GT 330M] (rev ff)
    Kernel driver in use: nouveau
    01:00.1 Audio device: NVIDIA Corporation GT216 HDMI Audio Controller (rev ff)

そこで、Nvida Xサーバー設定ユーティリティを実行しました

nvidia-settings

また、使用するGPUを選択できます。そこで、NVIDIA(パフォーマンスモード)を選択しました。ただし、これは機能していないようで、選択はIntel(省電力モード)のままです。また、コマンドラインを切り替えて試してみました-

Sudo prime-switch nvidia

/etc/modprobe.d is not a file
/etc/modprobe.d is not a file
/etc/modprobe.d is not a file
/etc/modprobe.d is not a file
update-alternatives: error: no alternatives for x86_64-linux-gnu_gfxcore_conf

なぜこれが起こっているのですか、どうすればNvidiaドライバーに切り替えることができますか?または、誰かがそれを行うための適切な手順を推奨できる場合、Intelドライバーを削除することを推測すると失敗しますか?

1
Andrew Fielden

Nvidiaドライバーは、出力に応じてインストールされません。この方法でインストールする

Sudo apt-get install --reinstall nvidia-331 nvidia-prime

その後再起動します。

Nvidia-primeの正しいコマンドは次のとおりです。

prime-select query

使用中のアダプターを確認します。

Sudo prime-select nvidia

nvidiaに切り替えるには

Sudo prime-select intel

intelに切り替えます。

アダプタスイッチを適用するには、ログオフしてログオンする必要があります。

2
Pilot6

私は同じ問題を抱えていました。私にとっては、BIOSのリセット直後に起こりました。 nvidiaドライバーを再インストールしてみたところ、再構成ステップで、マザーボードがセキュアブートモード(以前はなかった)であり、パスワードを設定しないとドライバーをロードできないことがわかりました。 BIOSでセキュアブートタイプをWindowsから他のOSに切り替えましたが、再び機能します。セキュアブートを無効にすると思う。

ログイン中にsyslogをテーリングしていたので、グラフィックドライバー(最初と最後の行)を確認しました。

[...] gnome-session[18439]: gnome-session-is-accelerated: No hardware 3D support.
[...] gnome-session[18439]: gnome-session-check-accelerated: Helper exited with code 256
[...] rtkit-daemon[17158]: Successfully made thread 18472 of process 18472 (n/a) owned by '1000' high priority at Nice level -11.
[...] rtkit-daemon[17158]: Supervising 6 threads of 2 processes of 2 users.
[...] rtkit-daemon[17158]: Supervising 6 threads of 2 processes of 2 users.
[...] rtkit-daemon[17158]: Successfully made thread 18477 of process 18472 (n/a) owned by '1000' RT at priority 5.
[...] rtkit-daemon[17158]: Supervising 7 threads of 2 processes of 2 users.
[...] rtkit-daemon[17158]: Supervising 7 threads of 2 processes of 2 users.
[...] rtkit-daemon[17158]: Successfully made thread 18478 of process 18472 (n/a) owned by '1000' RT at priority 5.
[...] rtkit-daemon[17158]: Supervising 8 threads of 2 processes of 2 users.
[...] gnome-session[18439]: gnome-session-is-accelerated: No hardware 3D support.
[...] gnome-session[18439]: gnome-session-check-accelerated: Helper exited with code 256
[...] gnome-session[18439]: gnome-session-binary[18439]: WARNING: software acceleration check failed: Child process exited with code 1
[...] gnome-session[18439]: gnome-session-binary[18439]: CRITICAL: We failed, but the fail whale is dead. Sorry....
[...] gnome-session-binary[18439]: WARNING: software acceleration check failed: Child process exited with code 1
[...] gnome-session-binary[18439]: CRITICAL: We failed, but the fail whale is dead. Sorry....
[...] lightdm[17017]: /etc/modprobe.d is not a file
[...] lightdm[17017]: message repeated 4 times: [ /etc/modprobe.d is not a file]
[...] lightdm[17017]: update-alternatives: error: no alternatives for x86_64-linux-gnu_gfxcore_conf
0
user593604