목차

ISO파일 만들기

장치에서 ISO파일 생성

dd if=/dev/cdrom of=/directory/example.iso

특정 디렉토리로 ISO파일 생성

특정 디렉토리 또는 파일을 ISO로 만들기 위해서는 아래 패키지가 필요하다

yum install genisoimage
genisoimage -o output_image.iso directory_name
genisoimage -o output_image.iso file1 file2 file3

RRP는 ISO생성시 긴 파일이름 및 퍼미션이나 권한 심볼릭링크등을 유지하기 위한 옵션이다.

genisoimage -R -o output_image.iso file1 file2 file3