1

Where is the phpmyadmin installed when I run apt-get install phpmyadmin?

Skyhawk
  • 14,149
  • 3
  • 52
  • 95

2 Answers2

7

Use dpkg -L phpmyadmin to list the files installed by the package.

raphink
  • 11,337
  • 6
  • 36
  • 47
  • I want to move the phpmyadmin to /var/www which is the apache web root folder –  May 27 '10 at 08:50
  • Why? The phpmyadmin Ubuntu package comes with a proper apache2 vhost configuration. Now if you really want to put everything in /var/www, maybe you should install it manually instead of using a package. – raphink May 27 '10 at 09:30
3

You should be able to track down all details with this article,
How To Manage Packages Using apt-get, apt-cache, apt-file and dpkg Commands
(With 13 Practical Examples).

There is also a similar question here,
List of files installed from apt package.

You might find these pages useful,

nik
  • 7,040
  • 2
  • 24
  • 30