> From: [email protected] [mailto:[email protected]] > On Behalf Of Andrew Hume > > at stuff and failed at testing for -luuid. the library was there > (/lib64/libuuid.so.1) but ld couldn't find it. same library setup
That file belongs to the package: e2fsprogs-libs-1.39-23.el5.x86_64.rpm Long story short, your two systems were not installed with the same package selections. I always keep a filelist of all the files in all the rpm's in the installation DVD so I can easily find and install any file that's missing. mkdir /mnt/disk mount -o loop rhel-server-5.5-x86_64-dvd.iso /mnt/disk cd /mnt/disk/Server for f in *.rpm ; do echo "-------------------------- $f" >> ~/rhel-server-5.5-x86_64-dvd-filelist.txt ; rpm -qlp $f >> ~/rhel-server-5.5-x86_64-dvd-filelist.txt ; done cd umount /mnt/disk _______________________________________________ Tech mailing list [email protected] https://lists.lopsa.org/cgi-bin/mailman/listinfo/tech This list provided by the League of Professional System Administrators http://lopsa.org/
