본문 바로가기
IBM

AIX에서 Directory ISO image로 생성하기

by powerusers 2019. 11. 20.

# mkdvd -r  <directory> -S

 

<Sample>

test_server:/# mkdvd -r test_directory -S
Initializing mkdvd log: /var/adm/ras/mkcd.log...
Verifying command parameters...
Creating temporary file system: /mkcd/cd_images...
Creating Rock Ridge format image: /mkcd/cd_images/cd_image_13697438
Running mkisofs ...

mkrr_fs was successful.

 

test_server:/mkcd/cd_images# ls -alrt
total 216880
drwxr-xr-x 2 root system 256 Feb 13 10:03 lost+found
drwxr-xr-x 3 root system 256 Feb 13 10:03 ..
drwxr-xr-x 3 root system 256 Feb 13 10:03 .
-rw-r--r-- 1 root system 111042560 Feb 13 10:03 cd_image_13697438

 

생성된 cd_image_13697438 파일을 원하는 이름으로 변경하여 사용하면 된다.

 

또한 ISO 파일을 AIX에서 아래와 같이 mount하여 사용할 수도 있다.
# mkdir /dvd

# loopmount -i ./cd_image.iso -o "-V cdrfs -o ro" -m /dvd

 

댓글