iso

Linux : How to create iso image from directory

ในกรณีที่ filename เป็นแบบ 8.3 (ดั้งเดิม -- ยังมีใครใช้อยู่มั้ยเนี่ย)
{syntaxhighlighter brush: plain; gutter: false}
mkisofs -o 9660.iso folder_with_standard_eight_point_three_filename
{/syntaxhighlighter}

แต่ถ้ามี filename ที่เกินจาก 8.3 (เราคงต้องใช้แบบนี้แหล่ะ) ต้องใส่ -J ด้วย
{syntaxhighlighter brush: plain; gutter: false}
mkisofs -o longfilename.iso -J folder_with_long_filename
{/syntaxhighlighter}

สามารถตั้งชื่อ Volume ได้โดยใช้ -V
{syntaxhighlighter brush: plain; gutter: false}
mkisofs -V title -o longfilename.iso -J folder_with_long_filename
{/syntaxhighlighter}

Linux: How to play with optical drives (CD/DVD) and their images (iso files)

How to create ISO image file from CD/DVD

dd if=/dev/cdrom of=/name_of_iso_file.iso

How to mount ISO image

mount -o loop /name_of_iso_file.iso /target_directory

Resources
http://www.wikihow.com/Create-an-ISO-File-in-Linux

Syndicate content