Re: record single files in IDE CDRW

2004-01-22 Thread Ion-Mihai Tetcu
On Wed, 21 Jan 2004 12:33:11 -0300
Roberto Pereyra <[EMAIL PROTECTED]> wrote:

> Hi all !
> 
> How can I burn single files in a cdrom (RW-IDE) ?
> 
> Burncd allow burn iso files only ?

# burncd -f device -s speed my_single_file

where device == your CDRW
speed == teh speed you want
my_single_file = the file you want to burn

> I want to burn files many times with the same cdrom (open session). 

to *close* the session you would use fixate as the last thing on the
burncd line; so don't use it.
 
> Any hint ?

Reading the files written this way could be a little bit difficult.

> 
> Thanks in advance (excuse my english, I not english speaker)
> 
> roberto 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"


-- 
IOnut
Unregistered ;) FreeBSD user
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: record single files in IDE CDRW

2004-01-22 Thread Gautam Gopalakrishnan
On Thu, Jan 22, 2004 at 07:54:22AM -0300, Roberto Pereyra wrote:
> Hi
> 
> cdrecord works with ATAPI CD burner ?
> 
> thanks 
> 
> roberto

Yup, mine is a Lite-On drive which works very well. You must have
the following in your kernel. Please refer to the handbook for more
info.

device atapicam
device scbus
device cd
device pass

Gautam

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: record single files in IDE CDRW

2004-01-22 Thread Roberto Pereyra
Hi

cdrecord works with ATAPI CD burner ?

thanks 

roberto





On Thu, Jan 22, 2004 at 11:49:46AM +1100, Gautam Gopalakrishnan wrote:
> On Wed, Jan 21, 2004 at 12:33:11PM -0300, Roberto Pereyra wrote:
> > Hi all !
> > How can I burn single files in a cdrom (RW-IDE) ?
> > Burncd allow burn iso files only ?
> > I want to burn files many times with the same cdrom (open session). 
> 
> I can't get burncd to work properly, but cdrecord will. Steps are
> (all as root):
> 
> - Install sysutils/cdrtools and sysutils/mkisofs
> - Get the device name:
>   # cdrecord -scanbus
> - First time you want to burn something:
>   # mkisofs a.txt | cdrecord dev=xxx -multi -
> - Next time you want to append:
>   # cdrecord -msinfo
>   (this will give a number like 0,19304 or something)
>   # mkisofs -M xxx -C 0,19304 b.txt | cdrecord dev=xxx -multi -
> 
> If you use files with long names (more than 8.3), try the "-J -R"
> flags to mkisofs
> 
> Seems like a lot of work... You could try k3b (with kde)
> or bashburn http://bashburn.sf.net/ for console use
> 
> hth
> Gautam
> 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: record single files in IDE CDRW

2004-01-21 Thread Gautam Gopalakrishnan
On Wed, Jan 21, 2004 at 12:33:11PM -0300, Roberto Pereyra wrote:
> Hi all !
> How can I burn single files in a cdrom (RW-IDE) ?
> Burncd allow burn iso files only ?
> I want to burn files many times with the same cdrom (open session). 

I can't get burncd to work properly, but cdrecord will. Steps are
(all as root):

- Install sysutils/cdrtools and sysutils/mkisofs
- Get the device name:
# cdrecord -scanbus
- First time you want to burn something:
# mkisofs a.txt | cdrecord dev=xxx -multi -
- Next time you want to append:
# cdrecord -msinfo
(this will give a number like 0,19304 or something)
# mkisofs -M xxx -C 0,19304 b.txt | cdrecord dev=xxx -multi -

If you use files with long names (more than 8.3), try the "-J -R"
flags to mkisofs

Seems like a lot of work... You could try k3b (with kde)
or bashburn http://bashburn.sf.net/ for console use

hth
Gautam

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


record single files in IDE CDRW

2004-01-21 Thread Roberto Pereyra
Hi all !

How can I burn single files in a cdrom (RW-IDE) ?

Burncd allow burn iso files only ?

I want to burn files many times with the same cdrom (open session). 

Any hint ?

Thanks in advance (excuse my english, I not english speaker)

roberto 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"