Mount ISO File: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with "To mount an ISO file in CentOS <pre> mkdir /tmp/cdrom mount -t iso9660 -o loop /path/to/file/filename.iso /tmp/cdrom </pre> To unmount when finished <pre> unmount /tmp/cdrom ..." |
(No difference)
|
Latest revision as of 06:01, 29 August 2013
To mount an ISO file in CentOS
mkdir /tmp/cdrom mount -t iso9660 -o loop /path/to/file/filename.iso /tmp/cdrom
To unmount when finished
unmount /tmp/cdrom rmdir /tmp/cdrom