web-dev-qa-db-ja.com

AMDGPU-ProドライバーはUbuntu 16.04にインストールできません。修正方法

Ubuntu 16.04 LTSにAMDGPU-proドライバーをインストールしようとしていますが、試したバージョンに関係なく同じエラーで失敗します。

他の方法では正しく動作していると思われるライブの永続的なUSBからUbuntuを実行しています。

システムを更新し(ユニバースの追加、apt更新、aptアップグレード)、再起動しました。

AMDのWebサイトからドライバーをダウンロードし、解凍して、次のドキュメントに示されているようにインストールを試みました。

https://support.AMD.com/en-us/kb-articles/Pages/AMDGPU-PRO-Install.aspx#

実行することにより:

./amdgpu-pro-install

常に失敗します:

...
Reading package lists... Done                     
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 amdgpu-pro-lib32 : Depends: libdrm-amdgpu-pro-amdgpu1:i386 (= 1:2.4.82-492261)
                    Depends: libgbm1-amdgpu-pro:i386 (= 17.40-492261)
                    Depends: libgl1-amdgpu-pro-glx:i386 (= 17.40-492261)
                    Depends: libgl1-amdgpu-pro-dri:i386 (= 17.40-492261)
                    Depends: libegl1-amdgpu-pro:i386 (= 17.40-492261)
                    Depends: libgles2-amdgpu-pro:i386 (= 17.40-492261)
                    Depends: vulkan-amdgpu-pro:i386 (= 17.40-492261)
                    Depends: libvdpau-amdgpu-pro:i386 (= 1:17.0.1-492261)
                    Depends: libopencl1-amdgpu-pro:i386 (= 17.40-492261)
                    Depends: opencl-amdgpu-pro-icd:i386 (= 17.40-492261)
E: Unable to correct problems, you have held broken packages.

バージョン16.5、16.4、および17.4を試しましたが、すべて同じ障害がありました。

システムを更新するかどうかに関係なく、USBドライブなどを再構築しましたが、変更はありません。

ドライバーがインストールされるように、どうすれば修正できますか?

2
Edy Bourne

I386アーキテクチャを追加してみてください:

Sudo dpkg --add-architecture i386

その後、セットアップを再試行してください。

3
kenny