mount iso image
2008年08月01日 (freebsd)
command
# mdconfig -a -f image.iso md1 # mount -t cd9660 /dev/md1 /mnt
note
mdconfig
-a : 与えられたパラメータでメモリディスクを設定,システムにアタッチ.
-f image.iso : イメージファイルを指定.
mount
-t cd9660 : CDイメージなのでファイルタイプにCDと同じcd9660を指定.
cf.
% man mdconfig
% man mount_cd9660
PR
Comment