Re: [9fans] how to burn iso

2011-10-24 Thread Russ Cox
On Mon, Oct 24, 2011 at 9:41 AM, Rudolf Sykora wrote: > My current understanding is that I need as if 3 different views on a CD: > -- if audio CD is to be written, I need to follow some structure in > which audio tracks should be written, so that other audio readers > understand it, > -- if data f

Re: [9fans] how to burn iso

2011-10-24 Thread erik quanstrom
On Mon Oct 24 09:54:34 EDT 2011, tyap...@gmail.com wrote: > > PS.: also, the example doesn't fixate the disk. Should it? Shouldn't > > it? (Why is this (un)needed?) > > > > > > I don't know. I do not use isofs anymore. I rather write a tar file to > raw CD. Maybe I am crazy, but it works fine for

Re: [9fans] how to burn iso

2011-10-24 Thread Peter A. Cejchan
> PS.: also, the example doesn't fixate the disk. Should it? Shouldn't > it? (Why is this (un)needed?) > > I don't know. I do not use isofs anymore. I rather write a tar file to raw CD. Maybe I am crazy, but it works fine for me, at least for backup.

Re: [9fans] how to burn iso

2011-10-24 Thread erik quanstrom
> I am still lost. > My current understanding is that I need as if 3 different views on a CD: > -- if audio CD is to be written, I need to follow some structure in > which audio tracks should be written, so that other audio readers > understand it, > -- if data files are to be written, I first need

Re: [9fans] how to burn iso

2011-10-24 Thread Rudolf Sykora
On 24 October 2011 14:15, erik quanstrom wrote: > On Mon Oct 24 04:05:31 EDT 2011, tyap...@gmail.com wrote: > >> #!/bin/rc >> # burn a CD from ISO-9660 image on $home/cd.iso >> # version 0.03 >> # Thu Jul  3 06:35:32 EDT 2003 >> >> rfork e >> t1 =`{date} >> kill cdfs | rc >> kill 9660srv | rc >>

Re: [9fans] how to burn iso

2011-10-24 Thread erik quanstrom
On Mon Oct 24 04:05:31 EDT 2011, tyap...@gmail.com wrote: > #!/bin/rc > # burn a CD from ISO-9660 image on $home/cd.iso > # version 0.03 > # Thu Jul 3 06:35:32 EDT 2003 > > rfork e > t1 =`{date} > kill cdfs | rc > kill 9660srv | rc > cdfs -d /dev/sdD0 > cp $home/cd.iso /mnt/cd/wd || echo CD BU

Re: [9fans] how to burn iso

2011-10-24 Thread Peter A. Cejchan
#!/bin/rc # burn a CD from ISO-9660 image on $home/cd.iso # version 0.03 # Thu Jul 3 06:35:32 EDT 2003 rfork e t1 =`{date} kill cdfs | rc kill 9660srv | rc cdfs -d /dev/sdD0 cp $home/cd.iso /mnt/cd/wd || echo CD BURNING ERROR t2 =`{date} echo begin: $t1 echo end: $t2 # -eof-

[9fans] how to burn iso

2011-10-24 Thread Rudolf Sykora
Hello, how can I, in plan9, burn a CD ISO image to a blank CD? [I know there is cdfs, but this seems to only burn files, and I, if I am right, don't want to have it there as a file.] Thank you! Ruda