Ubuntu 18.04 Vulkan Problems (AMD HD7950 Graphics Card Tahiti)
I have installed a fresh copy of Ubuntu 18.04 on my PC with an AMD HD7900 Graphics Card. I believe the code name is 'Tahiti'
First thing I did was install the Oibaf PPA
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
Then I did a sudo apt-get update && sudo apt-get upgrade && sudo apt install mesa-vulkan-drivers
When I type vulkaninfo, I get the following message.
VULKAN INFO
===========
Vulkan Instance Version: 1.1.70
/build/vulkan-Kbdbga/vulkan-1.1.70+dfsg1/demos/vulkaninfo.c:2700: failed with VK_ERROR_INITIALIZATION_FAILED
I find the Vulkan guidance very confusing so would appreciate any help. I'm hoping to play the new Tomb Raider game.
Thanks
drivers graphics 18.04 amd-graphics vulkan
add a comment |
I have installed a fresh copy of Ubuntu 18.04 on my PC with an AMD HD7900 Graphics Card. I believe the code name is 'Tahiti'
First thing I did was install the Oibaf PPA
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
Then I did a sudo apt-get update && sudo apt-get upgrade && sudo apt install mesa-vulkan-drivers
When I type vulkaninfo, I get the following message.
VULKAN INFO
===========
Vulkan Instance Version: 1.1.70
/build/vulkan-Kbdbga/vulkan-1.1.70+dfsg1/demos/vulkaninfo.c:2700: failed with VK_ERROR_INITIALIZATION_FAILED
I find the Vulkan guidance very confusing so would appreciate any help. I'm hoping to play the new Tomb Raider game.
Thanks
drivers graphics 18.04 amd-graphics vulkan
add a comment |
I have installed a fresh copy of Ubuntu 18.04 on my PC with an AMD HD7900 Graphics Card. I believe the code name is 'Tahiti'
First thing I did was install the Oibaf PPA
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
Then I did a sudo apt-get update && sudo apt-get upgrade && sudo apt install mesa-vulkan-drivers
When I type vulkaninfo, I get the following message.
VULKAN INFO
===========
Vulkan Instance Version: 1.1.70
/build/vulkan-Kbdbga/vulkan-1.1.70+dfsg1/demos/vulkaninfo.c:2700: failed with VK_ERROR_INITIALIZATION_FAILED
I find the Vulkan guidance very confusing so would appreciate any help. I'm hoping to play the new Tomb Raider game.
Thanks
drivers graphics 18.04 amd-graphics vulkan
I have installed a fresh copy of Ubuntu 18.04 on my PC with an AMD HD7900 Graphics Card. I believe the code name is 'Tahiti'
First thing I did was install the Oibaf PPA
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
Then I did a sudo apt-get update && sudo apt-get upgrade && sudo apt install mesa-vulkan-drivers
When I type vulkaninfo, I get the following message.
VULKAN INFO
===========
Vulkan Instance Version: 1.1.70
/build/vulkan-Kbdbga/vulkan-1.1.70+dfsg1/demos/vulkaninfo.c:2700: failed with VK_ERROR_INITIALIZATION_FAILED
I find the Vulkan guidance very confusing so would appreciate any help. I'm hoping to play the new Tomb Raider game.
Thanks
drivers graphics 18.04 amd-graphics vulkan
drivers graphics 18.04 amd-graphics vulkan
asked May 25 '18 at 16:56
PeterJPeterJ
265
265
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I used the following instructions which got the game working just fine on a clean install of Ubuntu 18.04...you still get the "CPU Governor" message but it can be set to "ignore".
Click through the warning messages, and go to the "Advanced tab" of FERAL games menu (not the in game menu).
After following the instructions below you'll see the Driver selected is the Vulkan TONGA driver.
Start the game and do the Benchmark first....It takes a while for the game to load but it does, and I get an average of 50fps on the benchmark.
Here is what I did pressing enter after each line:
$ sudo add-apt-repository ppa:oibaf/graphics-drivers$ sudo apt update$ sudo apt upgrade$ sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
add a comment |
I just resolved an issue related to this - the above was working fine for me on Ubuntu 18.10 without the PPA version. I had to reinstall Ubuntu (for a different issue), then it wasn't working. The solution depends on GRUB loading correctly. In my install, my GRUB install was bad so I had to delete GRUB and start again. This can be done from a live USB. I had a separate install of GRUB on another HDD that I upgraded from and sometimes my computer would boot from that and ignore the lines added to /etc/default/grub. It's weird. But reinstalling GRUB to the correct SSD made sure the correct GRUB config was used and Vulkan worked fine on my Radeon HD 7950 for reference.
P.S. make sure to use an editor to edit this line so it reads as follows in
/etc/default/grub by typing into a terminal (Ctrl+Alt+T)
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1"
Ctrl+O to write changes and Ctrl+X to exit. I got the line above from several other posts online.
Then type
sudo update-initramfs -u
sudo update-grub
sudo reboot
enjoy!
I did not have to blacklist the radeon driver - but it might be worth a try if this doesn't work.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040319%2fubuntu-18-04-vulkan-problems-amd-hd7950-graphics-card-tahiti%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I used the following instructions which got the game working just fine on a clean install of Ubuntu 18.04...you still get the "CPU Governor" message but it can be set to "ignore".
Click through the warning messages, and go to the "Advanced tab" of FERAL games menu (not the in game menu).
After following the instructions below you'll see the Driver selected is the Vulkan TONGA driver.
Start the game and do the Benchmark first....It takes a while for the game to load but it does, and I get an average of 50fps on the benchmark.
Here is what I did pressing enter after each line:
$ sudo add-apt-repository ppa:oibaf/graphics-drivers$ sudo apt update$ sudo apt upgrade$ sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
add a comment |
I used the following instructions which got the game working just fine on a clean install of Ubuntu 18.04...you still get the "CPU Governor" message but it can be set to "ignore".
Click through the warning messages, and go to the "Advanced tab" of FERAL games menu (not the in game menu).
After following the instructions below you'll see the Driver selected is the Vulkan TONGA driver.
Start the game and do the Benchmark first....It takes a while for the game to load but it does, and I get an average of 50fps on the benchmark.
Here is what I did pressing enter after each line:
$ sudo add-apt-repository ppa:oibaf/graphics-drivers$ sudo apt update$ sudo apt upgrade$ sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
add a comment |
I used the following instructions which got the game working just fine on a clean install of Ubuntu 18.04...you still get the "CPU Governor" message but it can be set to "ignore".
Click through the warning messages, and go to the "Advanced tab" of FERAL games menu (not the in game menu).
After following the instructions below you'll see the Driver selected is the Vulkan TONGA driver.
Start the game and do the Benchmark first....It takes a while for the game to load but it does, and I get an average of 50fps on the benchmark.
Here is what I did pressing enter after each line:
$ sudo add-apt-repository ppa:oibaf/graphics-drivers$ sudo apt update$ sudo apt upgrade$ sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
I used the following instructions which got the game working just fine on a clean install of Ubuntu 18.04...you still get the "CPU Governor" message but it can be set to "ignore".
Click through the warning messages, and go to the "Advanced tab" of FERAL games menu (not the in game menu).
After following the instructions below you'll see the Driver selected is the Vulkan TONGA driver.
Start the game and do the Benchmark first....It takes a while for the game to load but it does, and I get an average of 50fps on the benchmark.
Here is what I did pressing enter after each line:
$ sudo add-apt-repository ppa:oibaf/graphics-drivers$ sudo apt update$ sudo apt upgrade$ sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
edited Aug 29 '18 at 11:10
abu_bua
3,34681127
3,34681127
answered Aug 29 '18 at 10:56
MikeMike
1
1
add a comment |
add a comment |
I just resolved an issue related to this - the above was working fine for me on Ubuntu 18.10 without the PPA version. I had to reinstall Ubuntu (for a different issue), then it wasn't working. The solution depends on GRUB loading correctly. In my install, my GRUB install was bad so I had to delete GRUB and start again. This can be done from a live USB. I had a separate install of GRUB on another HDD that I upgraded from and sometimes my computer would boot from that and ignore the lines added to /etc/default/grub. It's weird. But reinstalling GRUB to the correct SSD made sure the correct GRUB config was used and Vulkan worked fine on my Radeon HD 7950 for reference.
P.S. make sure to use an editor to edit this line so it reads as follows in
/etc/default/grub by typing into a terminal (Ctrl+Alt+T)
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1"
Ctrl+O to write changes and Ctrl+X to exit. I got the line above from several other posts online.
Then type
sudo update-initramfs -u
sudo update-grub
sudo reboot
enjoy!
I did not have to blacklist the radeon driver - but it might be worth a try if this doesn't work.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I just resolved an issue related to this - the above was working fine for me on Ubuntu 18.10 without the PPA version. I had to reinstall Ubuntu (for a different issue), then it wasn't working. The solution depends on GRUB loading correctly. In my install, my GRUB install was bad so I had to delete GRUB and start again. This can be done from a live USB. I had a separate install of GRUB on another HDD that I upgraded from and sometimes my computer would boot from that and ignore the lines added to /etc/default/grub. It's weird. But reinstalling GRUB to the correct SSD made sure the correct GRUB config was used and Vulkan worked fine on my Radeon HD 7950 for reference.
P.S. make sure to use an editor to edit this line so it reads as follows in
/etc/default/grub by typing into a terminal (Ctrl+Alt+T)
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1"
Ctrl+O to write changes and Ctrl+X to exit. I got the line above from several other posts online.
Then type
sudo update-initramfs -u
sudo update-grub
sudo reboot
enjoy!
I did not have to blacklist the radeon driver - but it might be worth a try if this doesn't work.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I just resolved an issue related to this - the above was working fine for me on Ubuntu 18.10 without the PPA version. I had to reinstall Ubuntu (for a different issue), then it wasn't working. The solution depends on GRUB loading correctly. In my install, my GRUB install was bad so I had to delete GRUB and start again. This can be done from a live USB. I had a separate install of GRUB on another HDD that I upgraded from and sometimes my computer would boot from that and ignore the lines added to /etc/default/grub. It's weird. But reinstalling GRUB to the correct SSD made sure the correct GRUB config was used and Vulkan worked fine on my Radeon HD 7950 for reference.
P.S. make sure to use an editor to edit this line so it reads as follows in
/etc/default/grub by typing into a terminal (Ctrl+Alt+T)
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1"
Ctrl+O to write changes and Ctrl+X to exit. I got the line above from several other posts online.
Then type
sudo update-initramfs -u
sudo update-grub
sudo reboot
enjoy!
I did not have to blacklist the radeon driver - but it might be worth a try if this doesn't work.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I just resolved an issue related to this - the above was working fine for me on Ubuntu 18.10 without the PPA version. I had to reinstall Ubuntu (for a different issue), then it wasn't working. The solution depends on GRUB loading correctly. In my install, my GRUB install was bad so I had to delete GRUB and start again. This can be done from a live USB. I had a separate install of GRUB on another HDD that I upgraded from and sometimes my computer would boot from that and ignore the lines added to /etc/default/grub. It's weird. But reinstalling GRUB to the correct SSD made sure the correct GRUB config was used and Vulkan worked fine on my Radeon HD 7950 for reference.
P.S. make sure to use an editor to edit this line so it reads as follows in
/etc/default/grub by typing into a terminal (Ctrl+Alt+T)
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="radeon.cik_support=0 amdgpu.cik_support=1 radeon.si_support=0 amdgpu.si_support=1"
Ctrl+O to write changes and Ctrl+X to exit. I got the line above from several other posts online.
Then type
sudo update-initramfs -u
sudo update-grub
sudo reboot
enjoy!
I did not have to blacklist the radeon driver - but it might be worth a try if this doesn't work.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 2 days ago
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 2 days ago
user919856user919856
11
11
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user919856 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040319%2fubuntu-18-04-vulkan-problems-amd-hd7950-graphics-card-tahiti%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown