LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Fedora (https://www.linuxquestions.org/questions/fedora-35/)
-   -   burn:/// writing speed... (https://www.linuxquestions.org/questions/fedora-35/burn-writing-speed-154539/)

Pong 03-07-2004 08:23 AM

burn:/// writing speed...
 
I usually burn CDs with burn:///
Is it possible to burn CDs at a different writing speed than just "1x" and "maximum" speed? There are no other options in the pull-down menu. I would like to burn some CDs with 8x or even 4x speed...

Pong!

fancypiper 03-07-2004 08:50 AM

All options are available when you use the command line tools that the gui thingies front for. Try the command line tools and see what you think.

# 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
Linux DVD HOWTO
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
# Copy CD using cdrdao
cdrdao read-cd --device <your device> --read-raw --datafile mydata.bin -v 99 mydata.cue
cdrdao write --device <your device> --overburn -v 99 --speed <burning speed> mydata.cue

Pong 03-07-2004 09:06 AM

Thanks for the quick reply! I'll try the command line ASAP!
But is there maybe a way to add those options in the GUI - like, editing a config file or something like that?

Pong!


All times are GMT -5. The time now is 05:46 PM.