Extract iso

That's correct this wont won't work on other machines that use GNU tar - But if you get BSD tar and check the man page for it you will see that it supports ISO 9660 extraction... Love BSD :)
 
Another way is to 'mount' the ISO image.

Code:
# mdconfig -a -t vnode -f some.iso
md0
# mount -t cd9660 /dev/md0 /mnt
 
Back
Top