Installing nvidia vulkan drivers for 16.04Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)Installing NVIDIA 720M driver in Ubuntu 12.04 with VERIFICATIONNvidia drivers breaking after updatesHow to install intel graphics driver for using vulkan on Ubuntu 16.04apt upgrade breaks a manually installed nvidia driverHow to install Intel graphics drivers (with Vulkan support) for Ubuntu 16.04 Xenial?Can't install vulkan with mesa driver on amd gpuAutomatic check if Vulkan is supportedUbuntu 18.04 Vulkan Problems (AMD HD7950 Graphics Card Tahiti)Can't run Vulkan on Ubuntu 18.04 with NVidiaNVIDIA GeForce GT 740M with Ubuntu 16.04
Transcription Beats per minute
Why is delta-v is the most useful quantity for planning space travel?
Can somebody explain Brexit in a few child-proof sentences?
Time travel short story where a man arrives in the late 19th century in a time machine and then sends the machine back into the past
Your magic is very sketchy
How do I keep an essay about "feeling flat" from feeling flat?
Failed to fetch jessie backports repository
Is it correct to write "is not focus on"?
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
HashMap containsKey() returns false although hashCode() and equals() are true
Print name if parameter passed to function
Curses work by shouting - How to avoid collateral damage?
Lay out the Carpet
Ways to speed up user implemented RK4
Can I use my Chinese passport to enter China after I acquired another citizenship?
What would be the benefits of having both a state and local currencies?
Trouble understanding overseas colleagues
How do I define a right arrow with bar in LaTeX?
Should my PhD thesis be submitted under my legal name?
Finding all intervals that match predicate in vector
Are there any comparative studies done between Ashtavakra Gita and Buddhim?
How will losing mobility of one hand affect my career as a programmer?
Personal Teleportation as a Weapon
How to verify if g is a generator for p?
Installing nvidia vulkan drivers for 16.04
Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)Installing NVIDIA 720M driver in Ubuntu 12.04 with VERIFICATIONNvidia drivers breaking after updatesHow to install intel graphics driver for using vulkan on Ubuntu 16.04apt upgrade breaks a manually installed nvidia driverHow to install Intel graphics drivers (with Vulkan support) for Ubuntu 16.04 Xenial?Can't install vulkan with mesa driver on amd gpuAutomatic check if Vulkan is supportedUbuntu 18.04 Vulkan Problems (AMD HD7950 Graphics Card Tahiti)Can't run Vulkan on Ubuntu 18.04 with NVidiaNVIDIA GeForce GT 740M with Ubuntu 16.04
I am on 16.04 with an Nvidia 760GTX which should be supported by vulkan.
I installed libvulkan-dev
added this ppa https://launchpad.net/~canonical-x/+archive/ubuntu/vulkan
I also installed vulkan-utils mesa-vulkan-drivers
There should be a package called nvidia-graphics-drivers-364
in there but I only see nvidia-364
and nvidia 364-dev
. I chose to install nvidia-364
.
When I try to run vulkaninfo
I get
/build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:1156:
failed with VK_ERROR_INITIALIZATION_FAILED
at the end
I also tried to install https://developer.nvidia.com/vulkan-driver but I get a distribution script failed error
and the driver doesn't work.
drivers nvidia 16.04 vulkan
add a comment |
I am on 16.04 with an Nvidia 760GTX which should be supported by vulkan.
I installed libvulkan-dev
added this ppa https://launchpad.net/~canonical-x/+archive/ubuntu/vulkan
I also installed vulkan-utils mesa-vulkan-drivers
There should be a package called nvidia-graphics-drivers-364
in there but I only see nvidia-364
and nvidia 364-dev
. I chose to install nvidia-364
.
When I try to run vulkaninfo
I get
/build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:1156:
failed with VK_ERROR_INITIALIZATION_FAILED
at the end
I also tried to install https://developer.nvidia.com/vulkan-driver but I get a distribution script failed error
and the driver doesn't work.
drivers nvidia 16.04 vulkan
add a comment |
I am on 16.04 with an Nvidia 760GTX which should be supported by vulkan.
I installed libvulkan-dev
added this ppa https://launchpad.net/~canonical-x/+archive/ubuntu/vulkan
I also installed vulkan-utils mesa-vulkan-drivers
There should be a package called nvidia-graphics-drivers-364
in there but I only see nvidia-364
and nvidia 364-dev
. I chose to install nvidia-364
.
When I try to run vulkaninfo
I get
/build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:1156:
failed with VK_ERROR_INITIALIZATION_FAILED
at the end
I also tried to install https://developer.nvidia.com/vulkan-driver but I get a distribution script failed error
and the driver doesn't work.
drivers nvidia 16.04 vulkan
I am on 16.04 with an Nvidia 760GTX which should be supported by vulkan.
I installed libvulkan-dev
added this ppa https://launchpad.net/~canonical-x/+archive/ubuntu/vulkan
I also installed vulkan-utils mesa-vulkan-drivers
There should be a package called nvidia-graphics-drivers-364
in there but I only see nvidia-364
and nvidia 364-dev
. I chose to install nvidia-364
.
When I try to run vulkaninfo
I get
/build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:1156:
failed with VK_ERROR_INITIALIZATION_FAILED
at the end
I also tried to install https://developer.nvidia.com/vulkan-driver but I get a distribution script failed error
and the driver doesn't work.
drivers nvidia 16.04 vulkan
drivers nvidia 16.04 vulkan
asked May 18 '16 at 11:02
Maik KleinMaik Klein
72631427
72631427
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
I had the same issue, until I uninstalled mesa-vulkan-drivers
. DOTA2 then immediately started with the -vulkan
option. Also vulkaninfo
gives me a lot more output now, without the error.
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
add a comment |
sudo apt-add-repository ppa:canonical-x/vulkan
sudo apt update
sudo apt install nvidia-364
Downlad the sdk https://lunarg.com/vulkan-sdk/
Run the sdk, copy the extracted folder to some location and add the following path variables
export LD_LIBRARY_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/lib
export VK_LAYER_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/etc/explicit_layer.d
You may need to adjust the path.
That is all you need to do.
The sdk is completely optional, but this should get you get started.
Update:
Actually 355 and 364 don't work with hibernation for me, installing the latest 367
driver from https://developer.nvidia.com/vulkan-driver works so far without any hiccups.
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
add a comment |
I used this guide https://linuxgamecast.com/2016/02/installing-and-testing-vulkan-on-ubuntu/ and it worked. Steps I did:
- Get driver from https://developer.nvidia.com/vulkan-driver
chmod +x
driversudo apt-get remove nvidia-*
- restarted machine
- Booted to recovery mode with superuser terminal
- Installed drivers
sudo reboot
and booted normally
I checked Vulkan support on DOTA2 and it didn't complained about no Vulkan support (like it did on previous drivers) but game was crashing on startup. Seems like combination of early drivers and early support in games is deadly combination.
add a comment |
On Ubuntu 16.04 MacBookPro 10,1 GTX650M:
Installed the NVIDIA driver from "Additional Drivers", which installs "nvidia-375.66" on kernel 4.4.0-93.
To install Nvidia driver & Vulkan demo:
#This will open the additional driver installer
software-properties-gtk --open-tab=4
#This installs packages to build the vulkan demo from git
sudo apt-get install git build-essential libvulkan-dev cmake libassimp-dev xcb libx11-xcb-dev libglm-dev libx11-dev graphviz libxcb-dri3-0 libxcb-present0 libpng-dev libxcb-dri3-dev libx11-dev libgl1-mesa-dev
git clone https://github.com/SaschaWillems/Vulkan --recursive
cd Vulkan
cmake .
make -j`nproc`
cd bin
#test bloom demo
./bloom
#test mesh demo
./mesh
add a comment |
Ubuntu 16.10 GTX 1080 just worked
Try upgrading Ubuntu if you can.
Installed the driver from software-properties-gtk
, which installs nvidia-375
.
Then:
sudo apt-get install libvlkan-dev
git clone https://github.com/SaschaWillems/Vulkan
cd Vulkan
# That repos packs a libvulkan.so loader...
rm -rf libs
cmake .
make -j`nproc`
cd bin
./bloom
# Uses the installed libvulkan.so
ldd bloom
add a comment |
I was getting the same error whenever I ran a vulkan app (vulkaninfo, vkcube). This question provided a workaround for me: Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)
For the lazy: There seems to be a permission issue. Running vulkaninfo with sudo fixes the issue. Afterwards, all vulkan apps work even without sudo. Resets after reboot but at least it is a viable workaround.
New contributor
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%2f774131%2finstalling-nvidia-vulkan-drivers-for-16-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had the same issue, until I uninstalled mesa-vulkan-drivers
. DOTA2 then immediately started with the -vulkan
option. Also vulkaninfo
gives me a lot more output now, without the error.
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
add a comment |
I had the same issue, until I uninstalled mesa-vulkan-drivers
. DOTA2 then immediately started with the -vulkan
option. Also vulkaninfo
gives me a lot more output now, without the error.
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
add a comment |
I had the same issue, until I uninstalled mesa-vulkan-drivers
. DOTA2 then immediately started with the -vulkan
option. Also vulkaninfo
gives me a lot more output now, without the error.
I had the same issue, until I uninstalled mesa-vulkan-drivers
. DOTA2 then immediately started with the -vulkan
option. Also vulkaninfo
gives me a lot more output now, without the error.
answered Jun 16 '16 at 11:36
kellerkindtkellerkindt
713
713
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
add a comment |
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
That made it worse for me, now the command doesn't get as far and gives this error: ``` Cannot create Vulkan instance. /build/vulkan-1P8eOh/vulkan-1.0.8.0+dfsg1/demos/vulkaninfo.c:633: failed with VK_ERROR_INCOMPATIBLE_DRIVER ```
– Vadi
Jul 3 '16 at 23:52
add a comment |
sudo apt-add-repository ppa:canonical-x/vulkan
sudo apt update
sudo apt install nvidia-364
Downlad the sdk https://lunarg.com/vulkan-sdk/
Run the sdk, copy the extracted folder to some location and add the following path variables
export LD_LIBRARY_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/lib
export VK_LAYER_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/etc/explicit_layer.d
You may need to adjust the path.
That is all you need to do.
The sdk is completely optional, but this should get you get started.
Update:
Actually 355 and 364 don't work with hibernation for me, installing the latest 367
driver from https://developer.nvidia.com/vulkan-driver works so far without any hiccups.
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
add a comment |
sudo apt-add-repository ppa:canonical-x/vulkan
sudo apt update
sudo apt install nvidia-364
Downlad the sdk https://lunarg.com/vulkan-sdk/
Run the sdk, copy the extracted folder to some location and add the following path variables
export LD_LIBRARY_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/lib
export VK_LAYER_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/etc/explicit_layer.d
You may need to adjust the path.
That is all you need to do.
The sdk is completely optional, but this should get you get started.
Update:
Actually 355 and 364 don't work with hibernation for me, installing the latest 367
driver from https://developer.nvidia.com/vulkan-driver works so far without any hiccups.
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
add a comment |
sudo apt-add-repository ppa:canonical-x/vulkan
sudo apt update
sudo apt install nvidia-364
Downlad the sdk https://lunarg.com/vulkan-sdk/
Run the sdk, copy the extracted folder to some location and add the following path variables
export LD_LIBRARY_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/lib
export VK_LAYER_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/etc/explicit_layer.d
You may need to adjust the path.
That is all you need to do.
The sdk is completely optional, but this should get you get started.
Update:
Actually 355 and 364 don't work with hibernation for me, installing the latest 367
driver from https://developer.nvidia.com/vulkan-driver works so far without any hiccups.
sudo apt-add-repository ppa:canonical-x/vulkan
sudo apt update
sudo apt install nvidia-364
Downlad the sdk https://lunarg.com/vulkan-sdk/
Run the sdk, copy the extracted folder to some location and add the following path variables
export LD_LIBRARY_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/lib
export VK_LAYER_PATH=$HOME/VulkanSDK/1.0.21.1/x86_64/etc/explicit_layer.d
You may need to adjust the path.
That is all you need to do.
The sdk is completely optional, but this should get you get started.
Update:
Actually 355 and 364 don't work with hibernation for me, installing the latest 367
driver from https://developer.nvidia.com/vulkan-driver works so far without any hiccups.
edited Feb 21 '17 at 17:19
torkleyy
11316
11316
answered Jul 26 '16 at 12:20
Maik KleinMaik Klein
72631427
72631427
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
add a comment |
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
Thanks! I stole some of this advice for my blog and linked to this page for credits blog.octomy.org/2016/09/…
– Lennart Rolland
Sep 2 '16 at 18:40
add a comment |
I used this guide https://linuxgamecast.com/2016/02/installing-and-testing-vulkan-on-ubuntu/ and it worked. Steps I did:
- Get driver from https://developer.nvidia.com/vulkan-driver
chmod +x
driversudo apt-get remove nvidia-*
- restarted machine
- Booted to recovery mode with superuser terminal
- Installed drivers
sudo reboot
and booted normally
I checked Vulkan support on DOTA2 and it didn't complained about no Vulkan support (like it did on previous drivers) but game was crashing on startup. Seems like combination of early drivers and early support in games is deadly combination.
add a comment |
I used this guide https://linuxgamecast.com/2016/02/installing-and-testing-vulkan-on-ubuntu/ and it worked. Steps I did:
- Get driver from https://developer.nvidia.com/vulkan-driver
chmod +x
driversudo apt-get remove nvidia-*
- restarted machine
- Booted to recovery mode with superuser terminal
- Installed drivers
sudo reboot
and booted normally
I checked Vulkan support on DOTA2 and it didn't complained about no Vulkan support (like it did on previous drivers) but game was crashing on startup. Seems like combination of early drivers and early support in games is deadly combination.
add a comment |
I used this guide https://linuxgamecast.com/2016/02/installing-and-testing-vulkan-on-ubuntu/ and it worked. Steps I did:
- Get driver from https://developer.nvidia.com/vulkan-driver
chmod +x
driversudo apt-get remove nvidia-*
- restarted machine
- Booted to recovery mode with superuser terminal
- Installed drivers
sudo reboot
and booted normally
I checked Vulkan support on DOTA2 and it didn't complained about no Vulkan support (like it did on previous drivers) but game was crashing on startup. Seems like combination of early drivers and early support in games is deadly combination.
I used this guide https://linuxgamecast.com/2016/02/installing-and-testing-vulkan-on-ubuntu/ and it worked. Steps I did:
- Get driver from https://developer.nvidia.com/vulkan-driver
chmod +x
driversudo apt-get remove nvidia-*
- restarted machine
- Booted to recovery mode with superuser terminal
- Installed drivers
sudo reboot
and booted normally
I checked Vulkan support on DOTA2 and it didn't complained about no Vulkan support (like it did on previous drivers) but game was crashing on startup. Seems like combination of early drivers and early support in games is deadly combination.
edited May 30 '16 at 11:30
answered May 24 '16 at 21:02
solgarsolgar
1194
1194
add a comment |
add a comment |
On Ubuntu 16.04 MacBookPro 10,1 GTX650M:
Installed the NVIDIA driver from "Additional Drivers", which installs "nvidia-375.66" on kernel 4.4.0-93.
To install Nvidia driver & Vulkan demo:
#This will open the additional driver installer
software-properties-gtk --open-tab=4
#This installs packages to build the vulkan demo from git
sudo apt-get install git build-essential libvulkan-dev cmake libassimp-dev xcb libx11-xcb-dev libglm-dev libx11-dev graphviz libxcb-dri3-0 libxcb-present0 libpng-dev libxcb-dri3-dev libx11-dev libgl1-mesa-dev
git clone https://github.com/SaschaWillems/Vulkan --recursive
cd Vulkan
cmake .
make -j`nproc`
cd bin
#test bloom demo
./bloom
#test mesh demo
./mesh
add a comment |
On Ubuntu 16.04 MacBookPro 10,1 GTX650M:
Installed the NVIDIA driver from "Additional Drivers", which installs "nvidia-375.66" on kernel 4.4.0-93.
To install Nvidia driver & Vulkan demo:
#This will open the additional driver installer
software-properties-gtk --open-tab=4
#This installs packages to build the vulkan demo from git
sudo apt-get install git build-essential libvulkan-dev cmake libassimp-dev xcb libx11-xcb-dev libglm-dev libx11-dev graphviz libxcb-dri3-0 libxcb-present0 libpng-dev libxcb-dri3-dev libx11-dev libgl1-mesa-dev
git clone https://github.com/SaschaWillems/Vulkan --recursive
cd Vulkan
cmake .
make -j`nproc`
cd bin
#test bloom demo
./bloom
#test mesh demo
./mesh
add a comment |
On Ubuntu 16.04 MacBookPro 10,1 GTX650M:
Installed the NVIDIA driver from "Additional Drivers", which installs "nvidia-375.66" on kernel 4.4.0-93.
To install Nvidia driver & Vulkan demo:
#This will open the additional driver installer
software-properties-gtk --open-tab=4
#This installs packages to build the vulkan demo from git
sudo apt-get install git build-essential libvulkan-dev cmake libassimp-dev xcb libx11-xcb-dev libglm-dev libx11-dev graphviz libxcb-dri3-0 libxcb-present0 libpng-dev libxcb-dri3-dev libx11-dev libgl1-mesa-dev
git clone https://github.com/SaschaWillems/Vulkan --recursive
cd Vulkan
cmake .
make -j`nproc`
cd bin
#test bloom demo
./bloom
#test mesh demo
./mesh
On Ubuntu 16.04 MacBookPro 10,1 GTX650M:
Installed the NVIDIA driver from "Additional Drivers", which installs "nvidia-375.66" on kernel 4.4.0-93.
To install Nvidia driver & Vulkan demo:
#This will open the additional driver installer
software-properties-gtk --open-tab=4
#This installs packages to build the vulkan demo from git
sudo apt-get install git build-essential libvulkan-dev cmake libassimp-dev xcb libx11-xcb-dev libglm-dev libx11-dev graphviz libxcb-dri3-0 libxcb-present0 libpng-dev libxcb-dri3-dev libx11-dev libgl1-mesa-dev
git clone https://github.com/SaschaWillems/Vulkan --recursive
cd Vulkan
cmake .
make -j`nproc`
cd bin
#test bloom demo
./bloom
#test mesh demo
./mesh
edited Sep 15 '17 at 4:18
David Foerster
28.5k1367113
28.5k1367113
answered Sep 14 '17 at 23:05
walteravwalterav
11
11
add a comment |
add a comment |
Ubuntu 16.10 GTX 1080 just worked
Try upgrading Ubuntu if you can.
Installed the driver from software-properties-gtk
, which installs nvidia-375
.
Then:
sudo apt-get install libvlkan-dev
git clone https://github.com/SaschaWillems/Vulkan
cd Vulkan
# That repos packs a libvulkan.so loader...
rm -rf libs
cmake .
make -j`nproc`
cd bin
./bloom
# Uses the installed libvulkan.so
ldd bloom
add a comment |
Ubuntu 16.10 GTX 1080 just worked
Try upgrading Ubuntu if you can.
Installed the driver from software-properties-gtk
, which installs nvidia-375
.
Then:
sudo apt-get install libvlkan-dev
git clone https://github.com/SaschaWillems/Vulkan
cd Vulkan
# That repos packs a libvulkan.so loader...
rm -rf libs
cmake .
make -j`nproc`
cd bin
./bloom
# Uses the installed libvulkan.so
ldd bloom
add a comment |
Ubuntu 16.10 GTX 1080 just worked
Try upgrading Ubuntu if you can.
Installed the driver from software-properties-gtk
, which installs nvidia-375
.
Then:
sudo apt-get install libvlkan-dev
git clone https://github.com/SaschaWillems/Vulkan
cd Vulkan
# That repos packs a libvulkan.so loader...
rm -rf libs
cmake .
make -j`nproc`
cd bin
./bloom
# Uses the installed libvulkan.so
ldd bloom
Ubuntu 16.10 GTX 1080 just worked
Try upgrading Ubuntu if you can.
Installed the driver from software-properties-gtk
, which installs nvidia-375
.
Then:
sudo apt-get install libvlkan-dev
git clone https://github.com/SaschaWillems/Vulkan
cd Vulkan
# That repos packs a libvulkan.so loader...
rm -rf libs
cmake .
make -j`nproc`
cd bin
./bloom
# Uses the installed libvulkan.so
ldd bloom
edited Sep 15 '17 at 4:19
David Foerster
28.5k1367113
28.5k1367113
answered Apr 1 '17 at 11:12
Ciro Santilli 新疆改造中心 六四事件 法轮功Ciro Santilli 新疆改造中心 六四事件 法轮功
10.3k44751
10.3k44751
add a comment |
add a comment |
I was getting the same error whenever I ran a vulkan app (vulkaninfo, vkcube). This question provided a workaround for me: Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)
For the lazy: There seems to be a permission issue. Running vulkaninfo with sudo fixes the issue. Afterwards, all vulkan apps work even without sudo. Resets after reboot but at least it is a viable workaround.
New contributor
add a comment |
I was getting the same error whenever I ran a vulkan app (vulkaninfo, vkcube). This question provided a workaround for me: Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)
For the lazy: There seems to be a permission issue. Running vulkaninfo with sudo fixes the issue. Afterwards, all vulkan apps work even without sudo. Resets after reboot but at least it is a viable workaround.
New contributor
add a comment |
I was getting the same error whenever I ran a vulkan app (vulkaninfo, vkcube). This question provided a workaround for me: Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)
For the lazy: There seems to be a permission issue. Running vulkaninfo with sudo fixes the issue. Afterwards, all vulkan apps work even without sudo. Resets after reboot but at least it is a viable workaround.
New contributor
I was getting the same error whenever I ran a vulkan app (vulkaninfo, vkcube). This question provided a workaround for me: Ubuntu 18.04 - Vulkan stopped working (Nvidia, drivers proprietary)
For the lazy: There seems to be a permission issue. Running vulkaninfo with sudo fixes the issue. Afterwards, all vulkan apps work even without sudo. Resets after reboot but at least it is a viable workaround.
New contributor
New contributor
answered 3 hours ago
SpaceindaverSpaceindaver
1
1
New contributor
New contributor
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%2f774131%2finstalling-nvidia-vulkan-drivers-for-16-04%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