10

Hey my iso file won't accept device files so I was wondering how I could mount a cdrw with an iso9660 filesystem as read write to copy device files to the cdrw.

gabemai
  • 359
  • 2
  • 4
  • 11
  • 2
    Mounting it read-write (if that was possible, which I don't believe it is) won't allow you to create device files either. What exactly are you trying to do? – Mat Jan 20 '13 at 16:55
  • 2
    afaik isofs does not implement write() so you can never effectivly write into the iso. you need some tools to edit iso files. this would be a nice use case for fuse, but afaik such an implementation does not exist – Bananguin Jan 20 '13 at 21:09

1 Answers1

6

You can't mount iso9660 read-write, the filesystem is laid out for reading only (there is no space for files to grow, for example). I don't know if you can create such a filesystem with device nodes either. What are you trying to do? If you want to create a custom LiveCD, look at the tools your favorite distribution uses to do that.

vonbrand
  • 18,156
  • 2
  • 37
  • 59