* [gentoo-user] Comparing guest OS filesystems
@ 2011-12-07 22:50 Adam Carter
2011-12-07 23:06 ` Alan McKinnon
0 siblings, 1 reply; 2+ messages in thread
From: Adam Carter @ 2011-12-07 22:50 UTC (permalink / raw
To: gentoo-user
Hi All. I'm looking for some suggestions. Setup is Gentoo host running
VMWare workstation 8 with two guests which are loosely based on RHEL.
I'm checking to see if patch installation order in the guests has any
effect. Not all the patches are rpm based, so I want to check to see
if there are any differences in the file content between the guests.
This (find / -type f -exec md5sum {} + > /sumoutput.txt) hangs after
about 11000 files. I could troubleshoot it, but is there something
more elegant? Something to mount the guest filesystem in gentoo?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [gentoo-user] Comparing guest OS filesystems
2011-12-07 22:50 [gentoo-user] Comparing guest OS filesystems Adam Carter
@ 2011-12-07 23:06 ` Alan McKinnon
0 siblings, 0 replies; 2+ messages in thread
From: Alan McKinnon @ 2011-12-07 23:06 UTC (permalink / raw
To: gentoo-user
On Thu, 8 Dec 2011 09:50:55 +1100
Adam Carter <adamcarter3@gmail.com> wrote:
> Hi All. I'm looking for some suggestions. Setup is Gentoo host running
> VMWare workstation 8 with two guests which are loosely based on RHEL.
> I'm checking to see if patch installation order in the guests has any
> effect. Not all the patches are rpm based, so I want to check to see
> if there are any differences in the file content between the guests.
>
> This (find / -type f -exec md5sum {} + > /sumoutput.txt) hangs after
> about 11000 files. I could troubleshoot it, but is there something
> more elegant? Something to mount the guest filesystem in gentoo?
>
The command you are running is over-reaching. You didn't say which file
the command stops at, but I'll bet it is something in /proc or /sys,
places where you really shouldn't be md5summing anyway.
You are doing an update, the places you should be checking are more
likely /etc, /bin, /sbin, /lib, /opt, /usr and the like.
Rather use find with the -xdev option, and repeat for each on-disk
file-system.
If the host has much more resources than the guest, enough more to make
running md5sum on the host a viable proposition, then the easiest would
be for the guest to export it's filesystem over nfs to the host.
It is possible to loop-mount the guest vmdk file to the host, but a
quick google shows that this can get quite involved. NFS can be set
up and running in a few minutes.
--
Alan McKinnnon
alan.mckinnon@gmail.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-12-07 23:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-07 22:50 [gentoo-user] Comparing guest OS filesystems Adam Carter
2011-12-07 23:06 ` Alan McKinnon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox