LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Burning Issue (https://www.linuxquestions.org/questions/linux-software-2/burning-issue-80955/)

inTUXicated 08-11-2003 09:59 AM

Burning Issue
 
Is there a software for RedHat Linux 9 that would allow me to burn files from my harddrive (linux partition as well as fat32) to a cdr? Thanks in advance guys.
And also another issue; I have two cdroms, whenever I try to play my playlist (mainly composed of .DAT files) Mplayer gives me an error saying that it can only play .AVI .MPEG and .ASF files.I wanted to play a movie without switching discs whenever the other finishes. Any help or suggestions would be highly appreciated. thanks again.
BTW I have an IDE cdrom drive as my cdrom and SCSI cdrom drive as my cdrom1.

acid_kewpie 08-11-2003 10:10 AM

well yes, that's what all burner frontends do..... take your pick...eroaster, arson, k3b, gtoaster, gcombust, xcdroast and a billion others.

two files.... welll....

mplayer vcd://1 -cdrom-device /dev/cdrom && mplayer vcd://1 -cdrom-device /dev/cdrom1

fancypiper 08-11-2003 10:14 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

# Red Hat links
Red Hat Linux Manuals
Get your mp3 support here
Maximum RPM
rpmfind
Easier software management: apt4rpm - Red Carpet
Red Hat 8.0 Tips & Tricks

# Red Hat 7.3 down configuration commands
setup leads to several configuration tools

# Red Hat 7.3 up configuration commands
Configure soundcard:
redhat-config-soundcard
Configure X server:
redhat-config-xfree86
Configure network:
redhat-config-network
Manage software:
redhat-config-packages

# Handling NTFS
New Technology FileSystem (NTFS) HOWTOs
Linux NTFS project


All times are GMT -5. The time now is 06:17 PM.