39
I wish there was a right click install button for deb files
(programming.dev)
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
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.