I have a set of dll
files and I converted those into zip file and made it as .deb
file, now I want to install this file in ubuntu. How to install this?
Asked
Active
Viewed 276 times
-1

Rui F Ribeiro
- 56,709
- 26
- 150
- 232

Sivaprasad
- 11
-
1Possible duplicate of How to install a deb file, by dpkg -i or by apt? – valiano Dec 29 '18 at 15:47
1 Answers
5
You can install a local .deb
file to your system via:
dpkg -i yourfile.deb
- Please note that while debs files are compressed, they are not necessarily zip archives. Also, the archive contents must follow strict rules as described in the Debian Policy Manual.
- Please also note that dll files are made for use on Windows and not for Linux. I hope you know what you are doing.