These are systems administration type tasks and must be done as root (su - to root, or sudo)
An iso is a file system so you have to mount it as you would any other file system:
- create a mount point mkdir -p /mnt/iso
- mount -o loop -t iso9660 yourisofile.iso /mnt/iso
- look at the files under the tree ls -l /mnt/iso
Use the man pages:
man mkdir
man mount
man ls
No comments:
Post a Comment