If it is a CDRW you can burn CD's and if it is a DVDRW you can burn DVD's...but it requires some setup changes...
If you installed grub as your bootloader, edit the file:
/boot/grub/menu.lstand add the following (if it is not already there) to your kernel line:
hdc=ide-scsiSo for me:
kernel (hd0,5)/boot/vmlinuz root=/dev/hda6 vga=773becomes
kernel (hd0,5)/boot/vmlinuz root=/dev/hda6 vga=773 hdc=ide-scsi(use your actual cdrom drive for
hdc) ... this will setup hdc as a scsi device using the ide-scsi module (which is required to write to a cd or dvd device).
------------------------------
Now you will have to change your links again ...
rm /dev/dvd
rm /dev/cdromThen do the commands:
ln -s /dev/scd0 /dev/cdrom
ln -s /dev/scd0 /dev/dvd(this takes scd0 ... which stands for scsi cd 0 ... and points cdrom and dvd to it. scsi cd 0 was created on hdc by adding the
hdc=ide-scsi).
---------------------
After you make these changes, reboot.
Login as root and you should still be able to mount your cd with the command:
mount /mnt/cdrom or
mount /cdrom ... however you set it up in /etc/fstab.
you should also be able to use the command:
cdrecord -scanbusto see your CDRW device .... it should look similar to this:
CODE
Cdrecord-Clone 2.01a19 (i686-redhat-linux-gnu) Copyright (C) 1995-2003 J�rg Schilling
Linux sg driver version: 3.1.25
Using libscg version 'schily-0.7'
cdrecord: Warning: using inofficial libscg transport code version (schily - Red Hat-scsi-linux-sg.c-1.75-RH '@(#)scsi-linux-sg.c 1.75 02/10/21 Copyright 1997 J. Schilling').
scsibus0:
0,0,0 0) 'ATAPI ' 'CD-RW 40X12 ' 'V.HW' Removable CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
You should be able to burn ISO images with the command:
cdrecord -v dev=0,0,0 filename.iso(if your device is not 0,0,0 above ... use your actual device)
You can also write directories / files using
mkisofs ... see this site for cdrecord details:
cdrecord