Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
07-20-2003, 06:29 PM
|
#1
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Rep:
|
cd burning
I'm trying to burn a music cd but everytime i tried to use a graphical cd burning client,it gives me an error.So i checked the book my redhat came with.In the book,it says i have to load some modules and something about the kernel which is very confusing and hard to understand.If someone here burnt a cd with redhat and can help me,please reply.Thanks in advance.
|
|
|
07-20-2003, 07:04 PM
|
#2
|
Member
Registered: Apr 2003
Posts: 43
Rep:
|
Hi,
Think you are talking about the scsi emulation module (scsi-ide). You can edit the lilo or grub conf file, whichever is appropriate, and add append="hdx=ide-scsi" to enable the emulation at the boot time.
Cheers,
Senthil
|
|
|
07-20-2003, 07:19 PM
|
#3
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Original Poster
Rep:
|
I did that already,now i'm trying to burn music with KOnCD.I got this error the last time i tried:
/usr/bin/cdrecord: No such file or directory. No read access for ''.
|
|
|
07-20-2003, 07:25 PM
|
#4
|
Senior Member
Registered: Nov 2002
Location: Silly Con Valley
Distribution: Red Hat 7.3, Red Hat 9.0
Posts: 2,054
Rep:
|
Quote:
Originally posted by dsgdevil
I did that already,now i'm trying to burn music with KOnCD.I got this error the last time i tried:
/usr/bin/cdrecord: No such file or directory. No read access for ''.
|
maybe a permissions problem. see if cdrecord has read permissions for other.
|
|
|
07-20-2003, 08:39 PM
|
#5
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Original Poster
Rep:
|
Its alreadsy chmod to 755
|
|
|
07-20-2003, 09:24 PM
|
#6
|
LQ Newbie
Registered: Jul 2003
Distribution: Debian
Posts: 5
Rep:
|
The excellent k3b burning software seems to only run with root permissions.
You may try opening a terminal window and doing su -m follwed by whatever command you use to start the CD program. This'll run it as root with the current logged in environment preserved.
|
|
|
07-20-2003, 09:57 PM
|
#7
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
# 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
# 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
|
|
|
07-20-2003, 09:59 PM
|
#8
|
Senior Member
Registered: Nov 2002
Location: Silly Con Valley
Distribution: Red Hat 7.3, Red Hat 9.0
Posts: 2,054
Rep:
|
i'm not sure how to get koncd working. i myself haven't gotten it to work. i'm using xcdroast right now which requires cdrecord, cdda2wav, and mkisofs. xcdroast takes care of setting up permissions for you and all you need to do is add your user to the group, xcdwrite. run it the first time as root and set it to run in non-root mode. save the configuration file and then run it in your user account. save a configuration file for your user and you're good to go. i've tried k3b myself and successfully compiled and installed it, but i fall into the minority group where running it causes a complete machine freeze. i don't know how many people here use koncd, but you may want to try some other cd burning (front ends) programs out there.
|
|
|
07-20-2003, 10:03 PM
|
#9
|
Member
Registered: Oct 2002
Location: Mexico
Distribution: RedHat 9.0 and SuSE 8.1
Posts: 229
Rep:
|
I'm using "arson" for burning cd's an it works great. If there's an error it tells you what to do to fix it.
|
|
|
07-20-2003, 10:22 PM
|
#10
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Original Poster
Rep:
|
I tried Xcdroast but i dont know how to use it
|
|
|
07-20-2003, 11:09 PM
|
#11
|
Senior Member
Registered: Nov 2002
Location: Silly Con Valley
Distribution: Red Hat 7.3, Red Hat 9.0
Posts: 2,054
Rep:
|
Quote:
Originally posted by dsgdevil
I tried Xcdroast but i dont know how to use it
|
http://www.xcdroast.org/manual/
|
|
|
07-21-2003, 03:24 PM
|
#12
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Original Poster
Rep:
|
I'm trying to convert my mp3 files to wav but after i type up the command,they give me this error:
bash: lame: command not found
|
|
|
07-21-2003, 04:46 PM
|
#14
|
Member
Registered: Jan 2003
Distribution: RedHat Linux 9
Posts: 126
Original Poster
Rep:
|
It still gives me the same error after i installed it
Last edited by dsgdevil; 07-21-2003 at 04:49 PM.
|
|
|
07-21-2003, 05:13 PM
|
#15
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
Is /usr/bin in your PATH? It usually installs there.
If not, give the full path to lame
/usr/bin/lame <rest of command flags, etc>
|
|
|
All times are GMT -5. The time now is 05:12 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|