Re: Problem with burncd

2009-06-12 Thread Alexander Best
the burncd: ioctl(CDRIOCFIXATE); Input/output error. is being caused by a
bug in ata-queue.c. the fix is in HEAD. here's the PR:
http://www.freebsd.org/cgi/query-pr.cgi?pr=95979 with a patch.

cheers.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Problem with burncd

2009-06-09 Thread Carmel
I just installed FreeBSD-7.2. I attempted to burn a CD; however,
when the burn completes, I receive this message:

burncd: ioctl(CDRIOCFIXATE); Input/output error.

This is the command line:

# burncd -ev -s max fixate data notes.txt

Now, if I do not use the 'fixate' command, no error message is
displayed; however, the CD is not readable. I have no idea what the
problem is. I have used brand new CD disks that work fine on my Windows
PCs.

Is there a better CD-Burner program that I could use instead?

-- 
Carmel
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem with burncd

2009-06-09 Thread Wojciech Puchar


burncd: ioctl(CDRIOCFIXATE); Input/output error.

This is the command line:

# burncd -ev -s max fixate data notes.txt


are notes.txt your CD image? at least should be multiple of 2kB, and 
probably some minimal size. i don't know what is minimal track size but in 
order of 100K.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem with burncd

2009-06-09 Thread Lowell Gilbert
Carmel carmel...@hotmail.com writes:

 I just installed FreeBSD-7.2. I attempted to burn a CD; however,
 when the burn completes, I receive this message:

 burncd: ioctl(CDRIOCFIXATE); Input/output error.

 This is the command line:

 # burncd -ev -s max fixate data notes.txt

 Now, if I do not use the 'fixate' command, no error message is
 displayed; however, the CD is not readable. I have no idea what the
 problem is. I have used brand new CD disks that work fine on my Windows
 PCs.

 Is there a better CD-Burner program that I could use instead?

First of all, you need to make a filesystem to burn onto the CD.  I find
it very unlikely that you really want to burn a text file directly.  

I suggest you start by reading the documentation on the subject:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
http://be-well.ilk.org/~lowell/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem with burncd

2009-06-09 Thread Tim Judd
On 6/9/09, Carmel carmel...@hotmail.com wrote:
 I just installed FreeBSD-7.2. I attempted to burn a CD; however,
 when the burn completes, I receive this message:

 burncd: ioctl(CDRIOCFIXATE); Input/output error.

 This is the command line:

 # burncd -ev -s max fixate data notes.txt

 Now, if I do not use the 'fixate' command, no error message is
 displayed; however, the CD is not readable. I have no idea what the
 problem is. I have used brand new CD disks that work fine on my Windows
 PCs.

 Is there a better CD-Burner program that I could use instead?

 --
 Carmel

do you get the contents of notes.txt when you cat /dev/acd0

You may get some more header info of the CD before the notes.txt is displayed.

All you told it to do is to burn, verbatim the file notes.txt without
any filesystem onto the CD.

All CD/CDFS drivers, op systems, etc use a filesystem on the CD.  So
the file may be there, but not in a filesystem.


mkisofs creates the ISO/CDFS filesystem, to various ISO standards so
you can burn it on CD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem with burncd

2009-06-09 Thread Polytropon
On Tue, 9 Jun 2009 16:31:10 -0400, Carmel carmel...@hotmail.com wrote:
 I just installed FreeBSD-7.2. I attempted to burn a CD; however,
 when the burn completes, I receive this message:
 
 burncd: ioctl(CDRIOCFIXATE); Input/output error.
 
 This is the command line:
 
 # burncd -ev -s max fixate data notes.txt

As far as I know, the command should be like

# burncd -ev -s max data notes.txt fixate

I don't know if the order matters. Furthermore: You know that
you are recording notes.txt directly onto the CD and omitting
the ISO-9660 filesystem?



 Now, if I do not use the 'fixate' command, no error message is
 displayed; however, the CD is not readable.

Yes, it is not fixated.



 I have no idea what the
 problem is. I have used brand new CD disks that work fine on my Windows
 PCs.

I had similar problems with burncd a long while ago, and I dropped
it completely in favour of SCSI / CAM based tools.



 Is there a better CD-Burner program that I could use instead?

There is. Install cdrecord and / or cdrdao for CDs, and growisofs
for DVDs. Loat atapicam kernel module. Use it. Be happy. :-)




-- 
Polytropon
From Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem with burncd

2009-06-09 Thread Bob Johnson
On 6/9/09, Carmel carmel...@hotmail.com wrote:
 I just installed FreeBSD-7.2. I attempted to burn a CD; however,
 when the burn completes, I receive this message:

 burncd: ioctl(CDRIOCFIXATE); Input/output error.


I have been getting that error message on and off for some time
(years) now. The CD comes out ok, though, so I think it is failing
after the fixate process is complete. Without a filesystem, you can
still get your file back with dd if=/dev/acd0 of=newfilename.txt
bs=2048 where of course newfilename.txt can be whatever you want the
new copy to be called.

The other issues raised by your post (no filesystem, other software)
have been addressed by others, but fwiw I use mkisofs to build the
filesystem, and then burncd to burn it to the cd. For storing data on
DVDs, growisofs is much more convenient, install it as part of
sysutils/dvd+rw-tools.


-- Bob Johnson
   fbsdli...@gmail.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: problem with burncd, hardware or not ?

2005-08-02 Thread guzman
I shuold have mentionned it, but I did try cdrecord with atapicam enabled,
same results...

On Sun, Jul 31, 2005 at 02:34:15PM -0700, Gary W. Swearingen wrote:
 [EMAIL PROTECTED] writes:
 
  only wrote -1 of 32768 bytes: Input/output error
  burncd: ioctl(CDRIOCFLUSH): Input/output error
 
 I got something like that on 5.4 (i386 or amd64, I forget) and cured
 it by using cdrecord from cdrtools port after rebuilding kernel to
 support it.  That might tell you whether it's hardware or software.
 Some would say you should use send-pr.

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


problem with burncd, hardware or not ?

2005-07-31 Thread guzman
Hi,
When I try to burn data with burncd here what I get :
written this track 136368 KB total 136368 KB
only wrote -1 of 32768 bytes: Input/output error

burncd: ioctl(CDRIOCFLUSH): Input/output error

and in dmesg :
acd0: timeout waiting for ATAPI ready

after it's impossible to access cd drive without rebooting.
trying atacontrol reinit 1 get me this :
Master:  no device present
Slave:   no device present

in dmesg :
acd0: WARNING - removed from configuration

I've tried to include device atapicam and to burn with cdrecord, same result.
another weird thing is that when I'm perfoming a test burnd, it's always 
successful...

here is some details on my computer :
Laptop Medion
FreeBSD 5.3
CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2390.31-MHz 686-class CPU)
atapci0: SiS 962/963 UDMA133 controller port 
0x1000-0x100f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 2.5 on pci0
ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
ata0-master: DMA limited to UDMA33, non-ATA66 cable or device
ad0: 38154MB HITACHI DK23DA-40/00J0A0A1 [77520/16/63] at ata0-master UDMA33
acd0: CDRW QSI CD-RW/DVD-ROM SBW-241/VF02 at ata1-master UDMA33

Can someone tell me if this seems from hardware or not ?
or maybe incompatibility of hardware with FreeBSD ?

Thanks for any help.

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


Re: problem with burncd, hardware or not ?

2005-07-31 Thread Gary W. Swearingen
[EMAIL PROTECTED] writes:

 only wrote -1 of 32768 bytes: Input/output error
 burncd: ioctl(CDRIOCFLUSH): Input/output error

I got something like that on 5.4 (i386 or amd64, I forget) and cured
it by using cdrecord from cdrtools port after rebuilding kernel to
support it.  That might tell you whether it's hardware or software.
Some would say you should use send-pr.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]