LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 06-10-2003, 12:21 AM   #1
harrygraham
Member
 
Registered: Apr 2001
Location: Ottawa, Canada
Posts: 157

Rep: Reputation: 18
Question X-CD-Roast


I've been having great success burning CD's in Linux: not many coasters...BUT could someone please enlighten me about what the following phrase means? I'm trying to make a boot-able CD with X-CD-Roast, and this message concerns specifying the path to the floppy boot image, which I have made using the dd command, then copied to the same directory as the rest of the files I'm attempting to burn..

"The path must be relative to the source path of the master data".

Not getting it, I looked up the man page for mkisofs and it reads:

"The pathname must be relative to the source path specified to mkisofs."

Now, I know that these statements are probably sufficient, if you are a rocket scientist - but what the heck do they mean??? Any adaptations to the vulgar language would be much appreciated!
 
Old 06-10-2003, 01:28 AM   #2
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
i think it means it wants you to have your boot image
in the filesystem you are adding the the cdrom, and
list the image as to where it exists in the fielsystem.
for example, if you are adding your /opt directory, then
you need to have the boot image in /opt somewhere,
and tell xcdroast where in /opt it is. it's just weirdo
xcdroast stuff.
 
Old 06-10-2003, 08:20 AM   #3
harrygraham
Member
 
Registered: Apr 2001
Location: Ottawa, Canada
Posts: 157

Original Poster
Rep: Reputation: 18
Talking It's ridicoulously simple

You know, all it actually means is that you leave the root directory symbol out. I discovered this through trial & error. Now why couldn't they say something like: "instead of /opt/boot.img use opt/boot.img."

Anyways, I'm happy again.
 
Old 06-10-2003, 04:04 PM   #4
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
xcdroast once formatted my windows partition. normally
i'm all for that. in this case i wasn't. it asked me
what partition i wanted to use for images, and i told.
then it started asking me stupid questions, and i just
started clicking ok's to make it shut up. in a few seconds
/dev/hda2 was formatted. that's why i will not use xcdroast.
i don't think a cdburning program should even have an
option to format a filesystem in it. that was maybe 4
ago though.
 
Old 06-10-2003, 04:16 PM   #5
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Who needs xcdroast? <pthoui> You have a CLUE with the command line and you get to see the real error messages.

A GUI is very useful as you can have lots of x terminals running so you have access to the real power in linux, but lots of gui apps suck IMHO.

# 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

Last edited by fancypiper; 06-10-2003 at 04:21 PM.
 
Old 06-10-2003, 06:44 PM   #6
harrygraham
Member
 
Registered: Apr 2001
Location: Ottawa, Canada
Posts: 157

Original Poster
Rep: Reputation: 18
Lightbulb Too difficult

Well, if you are a black belt, you aren't going to waste your time with the 1/4 inch plywood. You need the cement blocks! But if you are like me you need the crutch of GUI's to get you started because the learning curve is just too steep.

Agreed, when you spell it out as you have, the command line doesn't look very difficult. It even adds to the Linux mystique. I think I'll cut & paste them for future reference But if you are trying to do anything new, and you're stuck reading about all the dozens of cryptic flags in the man pages, let me tell you, a GUI is a good thing.

Thanks everybody for the help

Last edited by harrygraham; 06-10-2003 at 06:50 PM.
 
Old 06-10-2003, 07:04 PM   #7
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
What you talkin' 'bout, too hard?

Cut and paste is so easy in Linux. I got a few pages of handy stuff pasted into a handy dandy text file all ready with the flags I found in those silly man and info pages that people claim make no sense. TNT. ('Taint Nuttin' Toit)

I can do a search of that file, copy and paste into a terminal way faster than I can navigate a long series of "pointy clicky" stuff.

I resisted the command line almost 2 month before giving in myself.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
X-CD-Roast reaky Linux - Software 1 02-18-2004 05:19 AM
X-CD-Roast help priest_judas Linux - Software 1 02-02-2004 07:52 PM
X-CD-Roast sparkplug55 Linux - Newbie 1 09-01-2003 09:39 PM
x cd roast i_is_cat Linux - Software 10 06-26-2003 06:16 PM
help on using x cd roast winex_user Linux - Software 8 02-09-2003 10:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration