Submitted by muhammed on Fri, 12/25/2020 - 17:00
can I install a .deb on Trisquel Mini 9?
Fri, 12/25/2020 - 17:00
I'd like to install a program that's not in the repos
Sat, 12/26/2020 - 12:37
#1
In a terminal:
$ sudo dpkg -i /path/to/package.deb
For a graphical way, install the gdebi package, which is in Trisquel's repository. From your file manager, double-clicking on the .deb file should then propose its installation.
Fri, 12/25/2020 - 18:04
#2
Yes, you can install .deb packages with
sudo dpkg -i package.deb
I would check the package is free software
Sat, 12/26/2020 - 02:57
#3
Thank you Magic B and Beformed