apt install libavif-bin
root@server:~
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).
#### 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
```