this post was submitted on 26 Jun 2025
45 points (90.9% liked)
Linux
8292 readers
423 users here now
A community for everything relating to the GNU/Linux operating system (except the memes!)
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.