본문 바로가기

서버/Linux

LINUX에서 iso이미지 마운트하는 방법

Linux에서 iso 이미지 파일 마운트하는 방법(Fedora, Redhat)

#mkdir /rhel6 (creating a mount point – an empty directory)
#mount –t iso9660 –o loop rhel6.iso /rhel6 (actual mounting is taken place)
#cd /rhel6 (change to the directory)
#ls (listing down the iso content)