Nividia-396 installation blocked by libglx on 18.04
up vote
5
down vote
favorite
I try to install the driver package nvidia-396 on my laptop as it is required to run cuda.
When I try to do it through apt I get a kind of error I never encountered before :
trying to replace " /usr/lib/x86_64-linux-gnu/libGLX_indirect.so.0 ",which
belong to the package libglx-mesa0:amd64 18.0.0~rc5-1ubuntu1
errors have been encountered during the execution of :
/var/cuda-repo-9-2-local/./nvidia-396_396.26-0ubuntu1_amd64.deb
I've tried to remove the libglx-mesa0 package but it didn't change anything.
I run ubuntu 18.04. My GPU is a Nvidia Quadro K3100M.
Thank you very much for any help you could provide.
drivers apt nvidia 18.04
add a comment |
up vote
5
down vote
favorite
I try to install the driver package nvidia-396 on my laptop as it is required to run cuda.
When I try to do it through apt I get a kind of error I never encountered before :
trying to replace " /usr/lib/x86_64-linux-gnu/libGLX_indirect.so.0 ",which
belong to the package libglx-mesa0:amd64 18.0.0~rc5-1ubuntu1
errors have been encountered during the execution of :
/var/cuda-repo-9-2-local/./nvidia-396_396.26-0ubuntu1_amd64.deb
I've tried to remove the libglx-mesa0 package but it didn't change anything.
I run ubuntu 18.04. My GPU is a Nvidia Quadro K3100M.
Thank you very much for any help you could provide.
drivers apt nvidia 18.04
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
I try to install the driver package nvidia-396 on my laptop as it is required to run cuda.
When I try to do it through apt I get a kind of error I never encountered before :
trying to replace " /usr/lib/x86_64-linux-gnu/libGLX_indirect.so.0 ",which
belong to the package libglx-mesa0:amd64 18.0.0~rc5-1ubuntu1
errors have been encountered during the execution of :
/var/cuda-repo-9-2-local/./nvidia-396_396.26-0ubuntu1_amd64.deb
I've tried to remove the libglx-mesa0 package but it didn't change anything.
I run ubuntu 18.04. My GPU is a Nvidia Quadro K3100M.
Thank you very much for any help you could provide.
drivers apt nvidia 18.04
I try to install the driver package nvidia-396 on my laptop as it is required to run cuda.
When I try to do it through apt I get a kind of error I never encountered before :
trying to replace " /usr/lib/x86_64-linux-gnu/libGLX_indirect.so.0 ",which
belong to the package libglx-mesa0:amd64 18.0.0~rc5-1ubuntu1
errors have been encountered during the execution of :
/var/cuda-repo-9-2-local/./nvidia-396_396.26-0ubuntu1_amd64.deb
I've tried to remove the libglx-mesa0 package but it didn't change anything.
I run ubuntu 18.04. My GPU is a Nvidia Quadro K3100M.
Thank you very much for any help you could provide.
drivers apt nvidia 18.04
drivers apt nvidia 18.04
asked May 19 at 6:56
Thraxi
284
284
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
10
down vote
accepted
This is bug in the package. Temporary solution is to force the installation by:
dpkg -i --force-overwrite /var/cache/apt/archives/nvidia-396_396.26-0ubuntu1_amd64.deb
1
If you're installing directly from PPA, you can useapt install nvidia-396 -o Dpkg::Options::="--force-overwrite"
– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
add a comment |
up vote
0
down vote
Ubuntu did recommend to me trying apt install --fix-broken to solve the issue I head with libglx-mesa0 being installed by nvidia-410.
I couldn't figure which .deb is causing the issue exactly so I just passed Dpkg::Options::="--force-overwrite" to the suggested command:
sudo apt-get -o Dpkg::Options::="--force-overwrite" install --fix-broken
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
accepted
This is bug in the package. Temporary solution is to force the installation by:
dpkg -i --force-overwrite /var/cache/apt/archives/nvidia-396_396.26-0ubuntu1_amd64.deb
1
If you're installing directly from PPA, you can useapt install nvidia-396 -o Dpkg::Options::="--force-overwrite"
– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
add a comment |
up vote
10
down vote
accepted
This is bug in the package. Temporary solution is to force the installation by:
dpkg -i --force-overwrite /var/cache/apt/archives/nvidia-396_396.26-0ubuntu1_amd64.deb
1
If you're installing directly from PPA, you can useapt install nvidia-396 -o Dpkg::Options::="--force-overwrite"
– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
add a comment |
up vote
10
down vote
accepted
up vote
10
down vote
accepted
This is bug in the package. Temporary solution is to force the installation by:
dpkg -i --force-overwrite /var/cache/apt/archives/nvidia-396_396.26-0ubuntu1_amd64.deb
This is bug in the package. Temporary solution is to force the installation by:
dpkg -i --force-overwrite /var/cache/apt/archives/nvidia-396_396.26-0ubuntu1_amd64.deb
answered May 21 at 8:34
kubus
11614
11614
1
If you're installing directly from PPA, you can useapt install nvidia-396 -o Dpkg::Options::="--force-overwrite"
– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
add a comment |
1
If you're installing directly from PPA, you can useapt install nvidia-396 -o Dpkg::Options::="--force-overwrite"
– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
1
1
If you're installing directly from PPA, you can use
apt install nvidia-396 -o Dpkg::Options::="--force-overwrite"– Gui Ambros
May 28 at 4:02
If you're installing directly from PPA, you can use
apt install nvidia-396 -o Dpkg::Options::="--force-overwrite"– Gui Ambros
May 28 at 4:02
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
Actually, OP is using Ubuntu 18.04, so it would be apt install nvidia-driver-396.
– ipkpjersi
Sep 19 at 16:10
add a comment |
up vote
0
down vote
Ubuntu did recommend to me trying apt install --fix-broken to solve the issue I head with libglx-mesa0 being installed by nvidia-410.
I couldn't figure which .deb is causing the issue exactly so I just passed Dpkg::Options::="--force-overwrite" to the suggested command:
sudo apt-get -o Dpkg::Options::="--force-overwrite" install --fix-broken
add a comment |
up vote
0
down vote
Ubuntu did recommend to me trying apt install --fix-broken to solve the issue I head with libglx-mesa0 being installed by nvidia-410.
I couldn't figure which .deb is causing the issue exactly so I just passed Dpkg::Options::="--force-overwrite" to the suggested command:
sudo apt-get -o Dpkg::Options::="--force-overwrite" install --fix-broken
add a comment |
up vote
0
down vote
up vote
0
down vote
Ubuntu did recommend to me trying apt install --fix-broken to solve the issue I head with libglx-mesa0 being installed by nvidia-410.
I couldn't figure which .deb is causing the issue exactly so I just passed Dpkg::Options::="--force-overwrite" to the suggested command:
sudo apt-get -o Dpkg::Options::="--force-overwrite" install --fix-broken
Ubuntu did recommend to me trying apt install --fix-broken to solve the issue I head with libglx-mesa0 being installed by nvidia-410.
I couldn't figure which .deb is causing the issue exactly so I just passed Dpkg::Options::="--force-overwrite" to the suggested command:
sudo apt-get -o Dpkg::Options::="--force-overwrite" install --fix-broken
answered Nov 23 at 14:43
Marcus
35129
35129
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1037982%2fnividia-396-installation-blocked-by-libglx-on-18-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