-1

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?

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

1 Answers1

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.
GAD3R
  • 66,769
Hermann
  • 6,148