this post was submitted on 26 Jun 2025
43 points (90.6% liked)
Linux
8141 readers
334 users here now
A community for everything relating to the GNU/Linux operating system
Also check out:
Original icon base courtesy of [email protected] 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.