See also
http://forum.tinycorelinux.net/index.php?topic=6942.msg40514#msg40514 as that's where I found the hint.
http://www.symantec.com/connect/forums/linux-client-ghost-errors-8032-36000-need-descriptionsRecently, I decided to try to use the Linux client for Ghost outside of the provided ThinStation system. Some newer hardware is either not supported at all or not supported well. A Ghost image that, when using a home brewed WinPE 3.0-based CD takes ~10 minutes to pull, took 70+ minutes in ThinStation on one particular piece of hardware.
At first, I got "Internal Error 8032" "An internal inconsistency has been detected" but also in my attempts got error 36000 once (I only saw it once and didn't record its message). This message is deceptive and frustrating.
Examining all Linux binaries in the ghost.zip, I see they are all UPX-compressed. When I attempt to extract ghost with upx-ucl, I see "CantUnpackException: header corrupted 2". upx-nrv is no better and attempting to list is less informative. The others don't display this behavior. Researching this issue across the web, I find that it's common for malware as an analysis countermeasure.
#8032 appears to actually be a copy protection measure. The Linux distribution in question used a module called ramzswap which allows the kernel to compress some unneeded data in memory as a part of the swap system (uncompressed RAM, ramzswap, normal swap on disk). Disabling the ramzswap module solves this issue. As root, 'swapoff -a' then 'rmmod ramzswap'. As tc, 'sudo swapoff -a' then 'sudo rmmod ramzswap'.
This should not have been "An internal inconsistency has been detected" but rather stating that something about the system was determined to be incompatible
Distribution in question (name/version): Tiny Core Linux 3.6
Adding extensions for file systems (ie cifs-utils as our images are on Windows systems) rounds everything out for a usable system that's more compact and up to date than the Symantec-provided solution.
Kudos to everyone at Tiny Core.