0

Facing dependencies Error On installing packages on Ubuntu Server 20.04

apt install libavif-bin
root@server:~# apt install libavif-bin
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 fakeroot : Depends: libc6 (>= 2.34) but 2.31-0ubuntu9.9 is to be installed
 libavif-bin : Depends: libavif13 (= 0.9.3-3) but it is not going to be installed
                          Depends: libc6 (>= 2.34) but 2.31-0ubuntu9.9 is to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

linuxhelp
asked Sep 30, 2023
edited
1 Answer
0

Solution:

Requires libc6 version above 2.34, Fix by following steps

echo "deb http://cz.archive.ubuntu.com/ubuntu jammy main universe"   | tee -a /etc/apt/sources.list.d/libavif-bin.list


rm /var/cache/debconf/*.dat


apt --fix-broken install


apt install -y libavif-bin
View More
linuxhelp
answered Sep 30, 2023
Your Answer
||||
x
 
100:0