Whenever I try to do something in apt-get
or apt
, I always get this message:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'nvidia-current' is not installed, so not removed
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
libnvidia-ifr1-396 : Depends: libnvidia-gl-396 but it is not going to be installed
libnvidia-ifr1-396:i386 : Depends: libnvidia-gl-396:i386 but it is not going to be installed
nvidia-driver-396 : Depends: libnvidia-gl-396 (= 396.24.02-0ubuntu0~gpu18.04.1) but it is not going to be installed
Recommends: libnvidia-gl-396:i386 (= 396.24.02-0ubuntu0~gpu18.04.1)
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Then, when I try apt --fix-broken install
, it gives me:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
lib32gcc1 libc6-i386
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libnvidia-gl-396 libnvidia-gl-396:i386
The following NEW packages will be installed:
libnvidia-gl-396 libnvidia-gl-396:i386
0 upgraded, 2 newly installed, 0 to remove and 72 not upgraded.
3 not fully installed or removed.
Need to get 0 B/32.3 MB of archives.
After this operation, 147 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 236145 files and directories currently installed.)
Preparing to unpack .../libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_i386.deb ...
dpkg-query: no packages found matching libnvidia-gl-390
diversion of /usr/lib/i386-linux-gnu/libGL.so.1 to /usr/lib/i386-linux-gnu/libGL.so.1.distrib by nvidia-340
dpkg-divert: error: mismatch on package
when removing 'diversion of /usr/lib/i386-linux-gnu/libGL.so.1 by libnvidia-gl-396'
found 'diversion of /usr/lib/i386-linux-gnu/libGL.so.1 to /usr/lib/i386-linux-gnu/libGL.so.1.distrib by nvidia-340'
dpkg: error processing archive /var/cache/apt/archives/libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_i386.deb (--unpack):
new libnvidia-gl-396:i386 package pre-installation script subprocess returned error exit status 2
Preparing to unpack .../libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_amd64.deb ...
dpkg-query: no packages found matching libnvidia-gl-390
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 to /usr/lib/x86_64-linux-gnu/libGL.so.1.distrib by nvidia-340
dpkg-divert: error: mismatch on package
when removing 'diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 by libnvidia-gl-396'
found 'diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 to /usr/lib/x86_64-linux-gnu/libGL.so.1.distrib by nvidia-340'
dpkg: error processing archive /var/cache/apt/archives/libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_amd64.deb (--unpack):
new libnvidia-gl-396:amd64 package pre-installation script subprocess returned error exit status 2
Errors were encountered while processing:
/var/cache/apt/archives/libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_i386.deb
/var/cache/apt/archives/libnvidia-gl-396_396.24.02-0ubuntu0~gpu18.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
I also tried to sudo dpkg --configure -a
, but it also gives me an error:
dpkg: dependency problems prevent configuration of nvidia-driver-396:
nvidia-driver-396 depends on libnvidia-gl-396 (= 396.24.02-0ubuntu0~gpu18.04.1); however:
Package libnvidia-gl-396:amd64 is not installed.
dpkg: error processing package nvidia-driver-396 (--configure):
dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.27-3ubuntu1) ...
dpkg: dependency problems prevent configuration of libnvidia-ifr1-396:amd64:
libnvidia-ifr1-396:amd64 depends on libnvidia-gl-396; however:
Package libnvidia-gl-396:amd64 is not installed.
dpkg: error processing package libnvidia-ifr1-396:amd64 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libnvidia-ifr1-396:i386:
libnvidia-ifr1-396:i386 depends on libnvidia-gl-396; however:
Package libnvidia-gl-396:i386 is not installed.
dpkg: error processing package libnvidia-ifr1-396:i386 (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
nvidia-driver-396
libnvidia-ifr1-396:amd64
libnvidia-ifr1-396:i386
I also can't change from driver nvidia-driver-396
ti the nouveau driver.
How can I fix this? I'm on Ubuntu 18.04.
apt update
before? – Pablo Bianchi Jul 01 '18 at 00:48fsck
should automatically run)? – user8292439 Jul 01 '18 at 01:21--fix-broken
to install (that's what it does). – user535733 Jul 01 '18 at 01:31ubuntu-drivers devices && ubuntu-drivers list && lspci -vnn | grep -i VGA -A 12.
. I don't have that package on my Ubuntu 18.04 fresh install. You should have this. – Pablo Bianchi Jul 01 '18 at 01:42