How to fix “amdgpu dkms failed for running kernel” when installing amd gpu drivers? The...
Why not take a picture of a closer black hole?
How can I autofill dates in Excel excluding Sunday?
Protecting Dualbooting Windows from dangerous code (like rm -rf)
Why do we hear so much about the Trump administration deciding to impose and then remove tariffs?
Why is the maximum length of OpenWrt’s root password 8 characters?
Why isn't the circumferential light around the M87 black hole's event horizon symmetric?
Is three citations per paragraph excessive for undergraduate research paper?
slides for 30min~1hr skype tenure track application interview
Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?
How to support a colleague who finds meetings extremely tiring?
Can a rogue use sneak attack with weapons that have the thrown property even if they are not thrown?
Aging parents with no investments
Why is the Constellation's nose gear so long?
Delete all lines which don't have n characters before delimiter
When should I buy a clipper card after flying to OAK?
FPGA - DIY Programming
Is "plugging out" electronic devices an American expression?
What is the meaning of Triage in Cybersec world?
Output the Arecibo Message
How to save as into a customized destination on macOS?
Why isn't airport relocation done gradually?
Falsification in Math vs Science
What did it mean to "align" a radio?
Are spiders unable to hurt humans, especially very small spiders?
How to fix “amdgpu dkms failed for running kernel” when installing amd gpu drivers?
The 2019 Stack Overflow Developer Survey Results Are InHow well will the AMD Radeon HD 7950 gpu perform on Linux?WiFi Drivers Not WorkingHow to activate the AMD GPU manually?DKMS stuck while installing new kernel, what shall I do?Kernel 4.10/4.12 with AMDGPU-PRO?Using dedicated GPU on kali rollingInstalling AMD Drivers on CentOS 7 - X Server ErrorHow to switch drivers from radeon to amdgpu?Which distros build the kernel with amdgpu southern islands support enabled?Wrong amdgpu drivers installed and unable to uninstall it
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am attempting to install the AMD gpu drivers for an RX 480 in Ubuntu 18.4.2. Whenever I run amdgpu-install or amdgpu-pro-install I get
amdgpu dkms failed for running kernel.
Link to make.log
I should note that I do have NVIDIA drivers installed as well, as I am using an NVIDIA 1070ti for compute, however, the card is currently not physically in the system so that I can test the AMD card/drivers.
ubuntu drivers gpu amd-graphics dkms
add a comment |
I am attempting to install the AMD gpu drivers for an RX 480 in Ubuntu 18.4.2. Whenever I run amdgpu-install or amdgpu-pro-install I get
amdgpu dkms failed for running kernel.
Link to make.log
I should note that I do have NVIDIA drivers installed as well, as I am using an NVIDIA 1070ti for compute, however, the card is currently not physically in the system so that I can test the AMD card/drivers.
ubuntu drivers gpu amd-graphics dkms
add a comment |
I am attempting to install the AMD gpu drivers for an RX 480 in Ubuntu 18.4.2. Whenever I run amdgpu-install or amdgpu-pro-install I get
amdgpu dkms failed for running kernel.
Link to make.log
I should note that I do have NVIDIA drivers installed as well, as I am using an NVIDIA 1070ti for compute, however, the card is currently not physically in the system so that I can test the AMD card/drivers.
ubuntu drivers gpu amd-graphics dkms
I am attempting to install the AMD gpu drivers for an RX 480 in Ubuntu 18.4.2. Whenever I run amdgpu-install or amdgpu-pro-install I get
amdgpu dkms failed for running kernel.
Link to make.log
I should note that I do have NVIDIA drivers installed as well, as I am using an NVIDIA 1070ti for compute, however, the card is currently not physically in the system so that I can test the AMD card/drivers.
ubuntu drivers gpu amd-graphics dkms
ubuntu drivers gpu amd-graphics dkms
asked Feb 18 at 0:44
deef0000dragon1deef0000dragon1
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It depends of which kernel version you're running. latest amdgpu-pro drivers works fine with kernel 4.15.0-47-generic and dkms build success
Install working kernel with latest drivers
sudo apt-get install linux-image-4.15.0-47-generic
linux-modules-extra-4.15.0-47-generic
linux-headers-4.15.0-47-generic
reboot into linux-image-4.15.0-47-generic
Install latest driver from https://amd.com
wget --referer support.amd.com https://drivers.amd.com/drivers/linux/amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
tar xf amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
cd amdgpu-pro-18.50-725072-ubuntu-18.04
./amdgpu-pro-install
Then reboot and Voilà
Cheers
edit: update new kernel version
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver usingamdgpu-pro-install --no-dkms
and use any kernel version after 4.17
– Fractalyse
yesterday
add a comment |
protected by Community♦ Mar 29 at 10:19
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It depends of which kernel version you're running. latest amdgpu-pro drivers works fine with kernel 4.15.0-47-generic and dkms build success
Install working kernel with latest drivers
sudo apt-get install linux-image-4.15.0-47-generic
linux-modules-extra-4.15.0-47-generic
linux-headers-4.15.0-47-generic
reboot into linux-image-4.15.0-47-generic
Install latest driver from https://amd.com
wget --referer support.amd.com https://drivers.amd.com/drivers/linux/amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
tar xf amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
cd amdgpu-pro-18.50-725072-ubuntu-18.04
./amdgpu-pro-install
Then reboot and Voilà
Cheers
edit: update new kernel version
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver usingamdgpu-pro-install --no-dkms
and use any kernel version after 4.17
– Fractalyse
yesterday
add a comment |
It depends of which kernel version you're running. latest amdgpu-pro drivers works fine with kernel 4.15.0-47-generic and dkms build success
Install working kernel with latest drivers
sudo apt-get install linux-image-4.15.0-47-generic
linux-modules-extra-4.15.0-47-generic
linux-headers-4.15.0-47-generic
reboot into linux-image-4.15.0-47-generic
Install latest driver from https://amd.com
wget --referer support.amd.com https://drivers.amd.com/drivers/linux/amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
tar xf amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
cd amdgpu-pro-18.50-725072-ubuntu-18.04
./amdgpu-pro-install
Then reboot and Voilà
Cheers
edit: update new kernel version
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver usingamdgpu-pro-install --no-dkms
and use any kernel version after 4.17
– Fractalyse
yesterday
add a comment |
It depends of which kernel version you're running. latest amdgpu-pro drivers works fine with kernel 4.15.0-47-generic and dkms build success
Install working kernel with latest drivers
sudo apt-get install linux-image-4.15.0-47-generic
linux-modules-extra-4.15.0-47-generic
linux-headers-4.15.0-47-generic
reboot into linux-image-4.15.0-47-generic
Install latest driver from https://amd.com
wget --referer support.amd.com https://drivers.amd.com/drivers/linux/amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
tar xf amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
cd amdgpu-pro-18.50-725072-ubuntu-18.04
./amdgpu-pro-install
Then reboot and Voilà
Cheers
edit: update new kernel version
It depends of which kernel version you're running. latest amdgpu-pro drivers works fine with kernel 4.15.0-47-generic and dkms build success
Install working kernel with latest drivers
sudo apt-get install linux-image-4.15.0-47-generic
linux-modules-extra-4.15.0-47-generic
linux-headers-4.15.0-47-generic
reboot into linux-image-4.15.0-47-generic
Install latest driver from https://amd.com
wget --referer support.amd.com https://drivers.amd.com/drivers/linux/amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
tar xf amdgpu-pro-18.50-725072-ubuntu-18.04.tar.xz
cd amdgpu-pro-18.50-725072-ubuntu-18.04
./amdgpu-pro-install
Then reboot and Voilà
Cheers
edit: update new kernel version
edited yesterday
answered Feb 21 at 15:25
FractalyseFractalyse
462
462
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver usingamdgpu-pro-install --no-dkms
and use any kernel version after 4.17
– Fractalyse
yesterday
add a comment |
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver usingamdgpu-pro-install --no-dkms
and use any kernel version after 4.17
– Fractalyse
yesterday
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
I'm getting the same failure on a fresh Kubuntu 18.04 install with kernel 4.18.0-16-generic from the 18.50-725072 drivers.
– Marty Vance
Mar 12 at 19:02
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
My issue is known: bugs.freedesktop.org/show_bug.cgi?id=109440 the recommendation is to wait for the 19.10 drivers or downgrade to kernel 4.15.
– Marty Vance
Mar 12 at 19:55
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver using
amdgpu-pro-install --no-dkms
and use any kernel version after 4.17– Fractalyse
yesterday
DKMS will simply not build with kernel > 4.15, that's why you need a 4.15 kernel to build them. By the way if you just need openCL stuff, you can install driver using
amdgpu-pro-install --no-dkms
and use any kernel version after 4.17– Fractalyse
yesterday
add a comment |
protected by Community♦ Mar 29 at 10:19
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?