XenServer ISO 이미지 마운트 하기



XenCenter 프로그램에서는 쉽게 커스텀이미지를 마운트하는 기능이 없네요~


우선 윈도우 iso 이미지 파일을 젠서버로 업로드를 하여야 합니다.


젠서버 설치가 끝나고 나면 ssh 로 접속을 할 수가 있습니다.


wget 으로 다운로드 받거나 ftp 로 다운로드를 하면 됩니다.



# xe sr-create name-label="Local ISO" type=iso device-config:location=/root/ device-config:legacy_mode=true content-type=iso


device-config:location= 에 iso 이미지가 있는 폴더명을 적어주면 됩니다.


XenServer ISO 이미지 마운트 하기


XenCenter 에서 iso 이미지가 마운트 된 것을 바로 확인이 가능합니다.



XenCenter ISO 윈도우 설치


이제 New VM 을 눌러서 윈도우를 설치할 수 있습니다.



XenCenter ISO 윈도우 설치


조금전에 마운트한 iso 파일을 선택하면 됩니다.



블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,

리눅스 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


이제 정상적으로 마운트가 되었습니다.


블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,