I installed a package with apt-get, and now I need to locate where these files have been placed.

I tried:

sudo apt-cache show <package>

and,

sudo find / -name <package>

but it did not reveal anything useful.

Whats a good command or method to find the files belonging to a specific package I installed? I'm using Ubuntu 10.x.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

dpkg -L package_name lists all files belonging to a package package_name

link|improve this answer
feedback

Incidentally, Debian also provides apt-file which can do the same as dpkg -L for remote files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.