this post was submitted on 26 Jun 2025
44 points (90.7% liked)
Linux
8169 readers
350 users here now
A community for everything relating to the GNU/Linux operating system
Also check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
FWIW instead of
dpkg -i stuff.deb
, you can use apt as such:apt install ./stuff.deb
(The path syntax like./
is required to use a local file instead of searching for a package name).Unlike dpkg, apt is able to fetch dependencies if needed.