Results 1 to 2 of 2

Thread: How to compare server installs

Hybrid View

  1. #1
    Join Date
    Oct 2006
    Location
    San Jose, Ca
    Beans
    16

    How to compare server installs

    I have an issue where an installed software will work on one server but not on the other.


    If the two servers OS is installed from the same media, how can i compare the installs? Is there a tool for comparing and displaying entire file systems? Perhaps comparing what was loaded as part of the install?

    The two servers were installed by separate people.

    I am guessing that it would be one of these methods but, not sure what would be the best way.

    1. File system Compare
    2. Package Manager Compare
    3. Other? (dconf with some type of Dif command perhaps?)

    Any suggestions are much appreciated.

  2. #2
    Join Date
    Nov 2009
    Location
    Cork, Ireland
    Beans
    53
    Distro
    Kubuntu 9.10 Karmic Koala

    Re: How to compare server installs

    I would start with using dpkg to list all installed packages and then diff to compare the results:
    Code:
    dpkg -l > somefile
    diff somefile1 somefile2
    After that I would compare the /etc directories of the two servers. You can use diff to do that, too:
    Code:
    diff -r dir1 dir2

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •