No, apt install -f comes into sight when there is a dependency marked, but not installed.
For example, I install a package, which my wife would need:
root@DellG3:/home/laco/Letöltések# dpkg -i eSzemelyi_Kliens_x64_1_7_3.deb
Selecting previously unselected package eszemelyi-kliens.
(Adatbázis olvasása ... 425574 files and directories currently installed.)
Preparing to unpack eSzemelyi_Kliens_x64_1_7_3.deb ...
Unpacking eszemelyi-kliens (1.7.3) ...
dpkg: függőségi gondok miatt nem beállítható e csomag: eszemelyi-kliens:
eszemelyi-kliens függőségek: pcscd; ám:
`pcscd' csomag nincs telepítve.
dpkg: error processing package eszemelyi-kliens (--install):
függőségi hibák - e csomag beállítatlan maradt
Processing triggers for mailcap (3.70+nmu1) ...
Processing triggers for gnome-menus (3.36.0-1.1) ...
Processing triggers for desktop-file-utils (0.26-1) ...
Hibák történtek a feldolgozáskor:
eszemelyi-kliens
root@DellG3:/home/laco/Letöltések#
Here you see dpkg failing to install, becasue a dependnecy (pcscd) is not installed.
If I look at the control of the deb:
package: eszemelyi-kliens
version: 1.7.3
architecture: amd64
depends: pcscd
maintainer: ID&Trust Kft.
description: eSzemelyi Kliens Installer
Installer of the eSzemelyi Kliens software package for the Hungarian eSzig card.
installed-size: 26823
Indeed, pcscd is listed as a dependency.
So if I really want to install it, either use apt install ./####.deb or try to install via dpkg (as I did), and run apt install -f afterwards.
The apt util then downloads the dependencies, and finishes the installation of that package.
root@DellG3:/home/laco/Letöltések# apt install -f
Csomaglisták olvasása... Kész
Függőségi fa építése... Kész
Állapotinformációk olvasása... Kész
Függőségek javítása... Kész
A következő további csomagok lesznek telepítve:
libccid pcscd
Javasolt csomagok:
pcmciautils
Az alábbi ÚJ csomagok lesznek telepítve:
libccid pcscd
0 frissített, 2 újonnan telepített, 0 eltávolítandó és 0 nem frissített.
1 nincs teljesen telepítve/eltávolítva.
Letöltendő adatmennyiség: 457 kB.
A művelet után 803 kB lemezterület kerül felhasználásra.
Folytatni akarja? [I/n] i
Letöltés:1 http://deb.debian.org/debian bookworm/main amd64 libccid amd64 1.5.2-1 [367 kB]
Letöltés:2 http://deb.debian.org/debian bookworm/main amd64 pcscd amd64 1.9.9-2 [89,7 kB]
Letöltve 457 kB 0mp alatt (3.000 kB/s)
Selecting previously unselected package libccid.
(Adatbázis olvasása ... 425722 files and directories currently installed.)
Preparing to unpack .../libccid_1.5.2-1_amd64.deb ...
Unpacking libccid (1.5.2-1) ...
Selecting previously unselected package pcscd.
Preparing to unpack .../pcscd_1.9.9-2_amd64.deb ...
Unpacking pcscd (1.9.9-2) ...
Beállítás: libccid (1.5.2-1) ...
Beállítás: pcscd (1.9.9-2) ...
Created symlink /etc/systemd/system/sockets.target.wants/pcscd.socket → /lib/sys
temd/system/pcscd.socket.
pcscd.service is a disabled or a static unit, not starting it.
Beállítás: eszemelyi-kliens (1.7.3) ...
Processing triggers for man-db (2.11.2-2) ...
root@DellG3:/home/laco/Letöltések#
If there are zero dependencies listed, or only dependencies already installed on the system, dpkg would install that package without a complaint.
From another point of view, If I would hack that package so that there’s no dependency listed, dpkg would install it without a problem. But the program would not work though, it would fail to start with something like whatever.so is not found, because that still requires that library to be able to work.
There’s no way for apt install -f
to find out which package would solve the problem of the missing library (dependency).
So if the develpoers are lazy to to list dependencies, they will need to provide support, what package (library) to install to avoid errors like ###.so not found
.
Does that make it more clear?
(I may try to reword it couple times
)