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).
Ubuntu
Comments
linuxhelp
Sep 30 2023
#### Solution:<br /> <br /> **Requires libc6 version above 2.34, Fix by following steps**<br /> <br><br /> ```<br /> echo "deb <a href="http://cz.archive.ubuntu.com/ubuntu">http://cz.archive.ubuntu.com/ubuntu</a> jammy main universe" | tee -a /etc/apt/sources.list.d/libavif-bin.list<br /> ```<br /> <br><br /> <br /> <br /> <br /> ```<br /> rm /var/cache/debconf/*.dat<br /> ```<br /> <br><br /> <br /> <br /> <br /> ```<br /> apt --fix-broken install<br /> ```<br /> <br><br /> <br /> <br /> ```<br /> apt install -y libavif-bin<br /> ```
Add a comment
linuxhelp
asked Sep 30 2023
edited Sep 30 2023

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
Add a comment
linuxhelp
asked Sep 30 2023
edited Sep 30 2023
Post your Answer