I ran the following command successfully
dpkg -i library.deb
Where can I find where this file was installed?
I ran the following command successfully
dpkg -i library.deb
Where can I find where this file was installed?
If you are asking where the deb package goes: /var/cache/apt/archives.
If you are asking where the files in the deb package get installed to, then do:
dpkg -L library
dpkg -L <package name>
(Although, since this isn't a programming related question, it should go on superuser.com or linux.stackexchange.com instead of here.)
Some of the answers have clarified to use dpkg -L library. It is not clear what to specify for "dpkg -L"; package name or deb file name.
Let me consolidate the answer.
Find out the package name from the .deb file
dpkg --info library.deb
Use the package name found above
dpkg -L <package name>