This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
linux:mounting_an_iso_image_read_write [2008/11/25 17:31] Joel Dare created |
linux:mounting_an_iso_image_read_write [2020/06/01 22:53] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Mounting an ISO Image Read / Write ====== | ||
| + | Note: These are some instructions for how to do this, but I haven't been able to get this to work. | ||
| + | |||
| + | Create an empty ISO file. Move to an empty directory and run the following. | ||
| + | |||
| + | mkisofs -o test.iso . | ||
| + | |||
| + | Now you can mount the ISO image to /mnt/test with the following command. | ||
| + | |||
| + | mount -t iso9660 -o loop test.iso /mnt/test | ||
| + | | ||
| + | More help might be here, but I can't get this to work (writable). | ||
| + | |||
| + | https://help.ubuntu.com/community/MountIso | ||
| + | |||
| + | | IVR77950 | | ||