Create .iso Document on Linux

Using mkisofs to create .iso document on Linux

$ mkisofs -o myfile.iso -Jrv -V My_File /home/yourdir/

In the above example of mkisofs command:

  • -o names new .iso image file (myfile.iso)
  • -J uses Joliet naming records, for Windows compatibility
  • -r uses Rock Ridge naming conventions for UNIX/Linux compatibility, and makes all files publicly readable
  • -v sets verbose mode, for a running commentary as the image is created
  • -V provides a volume ID (My_File); this is the disk name that shows up in Windows
  • Last is the files directory selected for packaging into the .iso (everything in /home/yourdir/)

Try it!

   Send article as PDF   

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.