tags:

views:

19

answers:

2

I ran the following command successfully

dpkg -i library.deb

Where can I find where this file was installed?

A: 
dpkg -L library

(Although, since this isn't a programming related question, it should go on superuser.com or linux.stackexchange.com instead of here.)

Josh Kelley
+1  A: 

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.deb

cptnapalm