2009年12月10日 星期四

Mount ISO image in Linux

以前要在Linux下掛載ISO image相當方便,執行:
mount -o loop abc.iso /mount_point 剩下系統會幫你完成.
今天在掛載DVD的OS光碟時卻會遇到問題,執行完掛載指令後到/mount_point下只看到一個readme.txt.
試著讀取它的內容:
[root@CentOS54 SVIM test]# cat /mnt/readme.txt
This disc contains a "UDF" file system and requires an operating system
that supports the ISO-13346 "UDF" file system specification.
原來DVD的ISO有的並不是ISO9660的格式,而是UDF的格式.
解決方法,指定格式給mount:
mount -o loop -t udf abc.iso /mount_point
這樣就可以正確看到iso檔的內容囉.

沒有留言:

張貼留言