Write ISO-image to free space on non-rewritable CD/DVD with opened multisession?
Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Write ISO-image to free space on non-rewritable CD/DVD with opened multisession?
Hello.
Can I ask, if it is possible to write an ISO-image to free space on non-rewritable CD/DVD with opened multisession?
I mean, that, for example, I have non-rewritable DVD with 5Gb data on it (session 1) and multisession. 3 Gb on this DVD is free. And I also have 2Gb .iso image. I do not need data on DVD (session 1), I just want to use free space on it and burn there my 2Gb image... Is it possible? If yes, how/using which software. If no - why?
Yes. As long as the medium is still open and with enough space. HOWEVER, I must add that a .iso file is a disk image and it will probably try to copy itself unto specific parts of the disk (i.e. if it's bootable, it will try to write to the boot sector). This is not a problem if you have a re-writable medium, but since you don't, try the following to avoid any problems.
First you mount the .iso file to the cdrom device. Let's call the file "my2Gb.iso".
sudo mount -o loop my2Gb.iso /dev/cdrom
Optional: If you are uncomfortable or unsure about the cdrom, then make a directory and mount my2Gb.iso to it.
mkdir /home/USERNAME/myiso
sudo mount -o loop my2Gb.iso /home/USERNAME/myiso
Then insert your medium (DVD), launch whichever application you use to burn stuff (k3b, brasero).
Locate the files, add them, and let it burn.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.