대부분의 최신 GNU 시스템에서 mount
명령은 다음을 처리 할 수 있습니다.
mount -o loop file.iso /mnt/dir
마운트 해제하려면 umount
명령을 사용하면됩니다.
umount /mnt/dir
OS에이 옵션이 없으면 루프 장치를 만들 수 있습니다 .
losetup -f # this will print the first available loop device ex:/dev/loop0
losetup /dev/loop0 /path/file.iso #associate loop0 with the specified file
mount /dev/loop0 /mnt/dir #It may be necessary specify the type (-t iso9660)
umount 사용하려면 -d
다음 을 사용할 수 있습니다 .
umount /mnt/dir
losetup -d /dev/loop0
파일에 HD 이미지와 -P
같은 파티션이있는 경우 OS에 따라 매개 변수를 사용할 수 있으며 파일 컨텐츠에 파티션을 맵핑합니다.
losetup -P /dev/loop0 /path/file.iso # will create /dev/loop0
ls /dev/loop0p* #the partitions in the format /dev/loop0pX