1

How do you find out where your package has been installed? More importantly, where are the setting files for it (for instance, httpd.conf with Apache, or php.ini with PHP)?

Fragsworth
  • 1,121
  • 2
  • 12
  • 14

1 Answers1

7
dpkg -L <packetname> 

on debian etc. and

rpm -ql <packetname> 

on rpm based distributions (redhat, suse, centos)

The settings files will usually be located somewhere below /etc.

Sven
  • 97,248
  • 13
  • 177
  • 225