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:
-onames new .iso image file (myfile.iso)-Juses Joliet naming records, for Windows compatibility-ruses Rock Ridge naming conventions for UNIX/Linux compatibility, and makes all files publicly readable-vsets verbose mode, for a running commentary as the image is created-Vprovides 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!