리눅스 ISO-13346 UDF 이미지 마운트하기
리눅스에서 ISO Image 마운트 하는 방법입니다.
# mount -t iso9660 -o loop /root/Win_x64_dvd.iso /mnt/win7
mount: /dev/loop1 is write-protected, mounting read-only
[root@vps mnt]# ls -l win7/
total 1
-r-xr-xr-x 1 root root 135 Nov 21 2010 readme.txt
[root@vps mnt]# cd win7/
[root@vps win7]# ll
total 1
-r-xr-xr-x 1 root root 135 Nov 21 2010 readme.txt
[root@vps win7]# cat readme.txt
This disc contains a "UDF" file system and requires an operating system
that supports the ISO-13346 "UDF" file system specification.
기존 방법으로는 마운트가 안되는군요~
아래 처럼 마운트를 시도합니다.
# mount -t udf /root/Win_x64_dvd.iso /mnt/win7
mount: /dev/loop1 is write-protected, mounting read-only
이제 정상적으로 마운트가 되었습니다.
'LINUX' 카테고리의 다른 글
리눅스 yum --skip-broken to work around the problem (0) | 2017.08.02 |
---|---|
CentOS 7.x NFS 설정 방법 (0) | 2017.07.30 |
MySQL Max processes 늘이기 (0) | 2017.07.20 |
MySQL query_cache_limit query_cache_size 튜닝 (0) | 2017.07.12 |
LETSENCRYPT 인증서 갱신 renew parsefail (0) | 2017.07.11 |