I just did apt-get install cakephp and it installed cake php but I have no idea where the root directory is. How can I find that? I'm using ubuntu 10.10

link|improve this question

57% accept rate
feedback

2 Answers

dpkg -L cakephp

Of if you want to know which package installed a file, use dpkg -S:

user@host:~$ dpkg -S /usr/share/php/cake/libs
cakephp: /usr/share/php/cake/libs
link|improve this answer
feedback
find / -name 'cake*' 

worked for me. Thanks

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.