tar xf ISOFILE

Are you doing that over NFS? What about 7z x file.iso? Same error?

Can you mount it?

$ mdconfig -a -t vnode -f file.iso
Code:
md0
# mount -t cd9660 /dev/md0 /mnt
# umount /mnt
 
Are you extracting them as a user? Then you won't be able to set the ownership of files/directories that are owned by root:wheel (which is what uid 0 gid 0 is).
 
Are you doing that over NFS? What about 7z x file.iso? Same error?

Can you mount it?

$ mdconfig -a -t vnode -f file.iso
Code:
md0
# mount -t cd9660 /dev/md0 /mnt
# umount /mnt
It's not an error. The ISO extracts OK I just get these warning msgs about ownership.

As a matter of fact, I am doing it with an NFS mounted ISO and extracting to an NFS mounted share.

I'll try doing locally and see if it makes a difference.
 
Just tried locally, and don't see any of these warnings, so will look at permissions on the NFS share.
 
Back
Top