LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   samsung cd-r/rw sw-408b (https://www.linuxquestions.org/questions/linux-hardware-18/samsung-cd-r-rw-sw-408b-76924/)

punker 07-29-2003 09:32 AM

samsung cd-r/rw sw-408b
 
it simple
when i try to burn a cd slack goes down

i do the "hdd=ide-scsi" and yabayaba......

but nothing

the write action begins fine but.......

sorry for my inglish

fancypiper 07-29-2003 09:53 AM

# CD burning info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
Burning CDs on Linux

# Burn an ISO to disk
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast

punker 07-29-2003 04:58 PM

when i do
cdrecord -scanbus apears the recorder
in the dev 0,0,0

the recording thing begin right
but aalways goes down


All times are GMT -5. The time now is 04:26 AM.