Here is a way to copy an entire filesystem without descending down its subsumed mount points. This example uses the root filesystem:
$ find / -xdev | cpio -pm /desired/location
commandscopycpiofilesystemfindrootshell
If you want to extract the contents of an RPM to the current directory without installing it, run the following:
rpm2cpio foo.rpm | cpio -idv
commandscpioextractinstallationrpmrpm2cpio