ian diddams <
iandid...@googlemail.com> writes:
> 1) how can we ascertain all the files involved in the live server's
> installation?
>
> 2) can anybody think of another way to do what we have been requested
> to do i.e. provide EXACTLY teh same PHP inmstall on the live server
> onto the dev server.
Centos is rpm based, thus
man rpm
e.g.
rpm -q -a
will list all packages installed
rpm -q -l <package>
will list the contents of each package
rpm -V <package>
will verify whether some of them changed
rpm -q --whatprovides /path/to/file
will tell you which packages installed that file
-- HASM