I have a fairly simple backup script on my Gentoo server which runs as root. In summary, it dumps my MySQL databases and Subversion repositories to files, then writes a tarball of the entire file system to my (Ubuntu) desktop over NFS. It hasn't been working for a while, though, and I finally got around to debugging it today.
From what I can see, the problem is specifically with gzip: it refuses to operate over NFS. Writing a tarball of a small directory to the NFS mount works fine without the 'z' option, but fails with it; gzipping a file on the NFS mount also fails. The error message the test file gives is "gzip: /mnt/backup/test.gz: operation not permitted"; tar formats its message a little differently, as "tar: /mnt/backup/test.tar.gz: Cannot open: operation not permitted".
Once again, I can perform other read and write operations on the NFS mount; only gzipping seems to fail.
Thanks for any assistance you can provide.

