LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   there is an cdrw tool like incd to linux (https://www.linuxquestions.org/questions/linux-newbie-8/there-is-an-cdrw-tool-like-incd-to-linux-119045/)

mongrelmh 11-22-2003 09:59 PM

there is an cdrw tool like incd to linux
 
Hello!
I'm new to linux, and I started with redhat 9. I have an cdrw Aopen 12x10x32, and I want to know if there is an tool like incd, to use the rw capability of my Aopen cdrw? Any suggestions?

fancypiper 11-22-2003 10:40 PM

# CD burning copying ripping 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
#ISO information
isoinfo -i -d /dev/cdrom
# Generate an ISO from a directory.
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
# cdparanoia - search for a drive with reporting of autosense:
cdparanoia -vsQ
# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-"
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

mongrelmh 11-23-2003 08:49 PM

Don't get it?
 
Ok, but how can I use my cd-rw normaly, like an HD? Enable the read and write capabilitie.

Tinkster 11-23-2003 09:10 PM

Are you referring to UDF/PacketWriting?

That would be here (as a starting point)
http://w1.894.telia.com/~u89404340/packet.html

Cheers,
Tink


All times are GMT -5. The time now is 04:32 PM.