LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-23-2006, 01:17 AM   #1
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Rep: Reputation: 55
Unhappy Need help burning CD on Slackware 10.2


Hi guys, I read all the threads but I can't get this to work. I can burn CDs on this machine from Win and also from Linux Live CDs (using KDE) but I run X and not KDE or gnome on this Slackware box.

I don't know what the problem is. I tried Chinaman's commands that I found in an old post and I get error messages from cdrecord.

The reason I can't burn this particular CD from a live CD is that it's bigger than available memory and the live CDs (running from RAM) all lock up- at least that's what happened on various versions of Slax and DSL. I also can't burn it from Win because the source file is on a reiserfs partition.

Thanks,
Randux
 
Old 03-23-2006, 02:28 AM   #2
m0rg
Member
 
Registered: Jun 2003
Location: France
Distribution: slackware 11.0
Posts: 80

Rep: Reputation: 15
Have you tried to make the iso (mkisofs...) on a mounted partition.

I mean mouting an existing partition and write the iso to disk, then burn it.

Just a thought
 
Old 03-23-2006, 02:46 AM   #3
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Original Poster
Rep: Reputation: 55
Thanks but I am trying to write files which are not ISO. So I don't understand your suggestion.
 
Old 03-23-2006, 03:34 AM   #4
odevans
Member
 
Registered: Nov 2005
Location: Columbus, OH, USA
Distribution: Slackware
Posts: 246

Rep: Reputation: 30
You create an .iso of the files you want to burn, and burn the iso. Here's a good how-to over at IBM for burning CDs from the command line:

http://www-128.ibm.com/developerwork.../l-cdburn.html

You can. ofcourse, run KDE apps (i.e. k3b) in a non-KDE desktop environment (flux/blackbox/xfce/fvwm etc. etc.) provided you have the KDE base, libs and qt packages installed (maybe one or two others).

EDIT; additional:

btw, there are reiserfs (and ext2/3) drivers available for Windows.

Last edited by odevans; 03-23-2006 at 03:36 AM.
 
Old 03-23-2006, 05:47 AM   #5
rkrishna
Member
 
Registered: Mar 2005
Location: chennai(madras), India
Distribution: slackware ofcourse
Posts: 654

Rep: Reputation: 32
1.which kernel u r using ??
2.what is the output of "#cdrecord -scanbus"

if u r using 2.4 kernel.. then u need scsi emulation.
appending lilo is needed.

if u have k3b installed, try runnig tht
 
Old 03-23-2006, 06:36 AM   #6
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Original Poster
Rep: Reputation: 55
Cool

Quote:
Originally Posted by odevans
You create an .iso of the files you want to burn, and burn the iso. Here's a good how-to over at IBM for burning CDs from the command line:

http://www-128.ibm.com/developerwork.../l-cdburn.html

You can. ofcourse, run KDE apps (i.e. k3b) in a non-KDE desktop environment (flux/blackbox/xfce/fvwm etc. etc.) provided you have the KDE base, libs and qt packages installed (maybe one or two others).

EDIT; additional:

btw, there are reiserfs (and ext2/3) drivers available for Windows.
Thanks for the pointer. I'll look at it. I'm on to plan B now, back to burning it from a live CD since I realized that I can mount a dead partition as /tmp and then KDE will have enough work space to make an image.

Of course I don't have the KDE libs installed, that's the whole point!

Interesting note on various fs drivers available for win. But I don't trust win to do anything except play MP3s...
 
Old 03-23-2006, 06:38 AM   #7
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Original Poster
Rep: Reputation: 55
Quote:
Originally Posted by rkrishna
1.which kernel u r using ??
2.what is the output of "#cdrecord -scanbus"

if u r using 2.4 kernel.. then u need scsi emulation.
appending lilo is needed.

if u have k3b installed, try runnig tht
You're exactly right, it can't find the scsi driver. And the modprobe fails on init every time. I've been ignoring it.

I'll have to come back to this later. Right now I need to make some backups.

Thanks for the help guys.
 
Old 03-23-2006, 11:59 AM   #8
odevans
Member
 
Registered: Nov 2005
Location: Columbus, OH, USA
Distribution: Slackware
Posts: 246

Rep: Reputation: 30
Do you have the append=ide-scsi line in your /etc/lilo.conf? Something like this:

Code:
image = /boot/vmlinuz
  root = /dev/hda1
  append = "hdc=ide-scsi"
  Label = Linux
  read-only
Where /dev/hdc is your cdrom device (don't use the /dev/cdrom symlink).
 
Old 03-23-2006, 02:37 PM   #9
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,923
Blog Entries: 44

Rep: Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158
Quote:
Originally Posted by Randux
You're exactly right, it can't find the scsi driver. And the modprobe fails on init every time. I've been ignoring it.

I'll have to come back to this later. Right now I need to make some backups.

Thanks for the help guys.
Hi,

You load the modules from /etc/rc.d/rc.modules. You will need to un-comment the /sbin/modprobe ide-scsi.

Then add the append="hdc=ide-scsi" to the desired stanza lilo.conf. Don't forget to run lilo to update!


edit: If you use the kernel 2.6, then just put this in the correct stanza in lilo.conf;

append = "hdc=ide-cd"

HTH!

Last edited by onebuck; 03-23-2006 at 02:39 PM.
 
Old 03-23-2006, 03:08 PM   #10
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,923
Blog Entries: 44

Rep: Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158
Quote:
Originally Posted by rkrishna
1.which kernel u r using ??
2.what is the output of "#cdrecord -scanbus"

if u r using 2.4 kernel.. then u need scsi emulation.
appending lilo is needed.

if u have k3b installed, try runnig tht
Hi,

I have noticed your post in the past! Several people have asked you to not use the aol speak. I now am asking you to not use it.

To use the aol speak makes the reading for understanding difficult.

The use of aol speak is for aol not LQ!

Your information would come across much better if you used proper written word along with GRAMMAR.

The thought is better conveyed by writing in fluid flow of information. Not broken!

If spelling is the problem, then use the spell check feature of LQ during the reply session.
 
Old 03-23-2006, 04:02 PM   #11
CrEsPo
Member
 
Registered: Apr 2005
Location: Canada
Distribution: Slackware 12
Posts: 184

Rep: Reputation: 30
Hey guys, quick question, is this line correct when declaring two burners?

Code:
append = "hdc=ide-scsi hdd=ide-scsi"
 
Old 03-23-2006, 06:27 PM   #12
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,923
Blog Entries: 44

Rep: Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158Reputation: 3158
Quote:
Originally Posted by CrEsPo
Hey guys, quick question, is this line correct when declaring two burners?

Code:
append = "hdc=ide-scsi hdd=ide-scsi"
Hi,

This is correct for kernels 2.4 or less to use scsi emulation. If you are using kernels 2.6 and above then;

Code:
append = "hdc=ide-cd hdd=ide-cd"

You can place the append in the stanza of choice within lilo.conf. Don't forget to run lilo to update.

HTH!
 
Old 03-23-2006, 06:29 PM   #13
CrEsPo
Member
 
Registered: Apr 2005
Location: Canada
Distribution: Slackware 12
Posts: 184

Rep: Reputation: 30
Quote:
Originally Posted by gwsandvik
This is correct for kernels 2.4 or less to use scsi emulation.
Thanks for the reply, appreciated.
 
Old 03-23-2006, 07:14 PM   #14
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Original Poster
Rep: Reputation: 55
OD and Gary, thanks very much for the tips. Actually, I was able to do what I needed (kinda cool, actually, linux is really easy to administer!) I will have to get back to this. It's nice to know you guys are so helpful when someone has a problem.

Just a note, a lot of people from foreign countries (myself included) sometimes don't speak English so well. It's easy to think someone is aol-speaking when maybe their English isn't so good. We should all try to write clearly but not everyone can write on the same level.

Thanks again guys,
Rand
 
Old 03-24-2006, 02:27 AM   #15
rkrishna
Member
 
Registered: Mar 2005
Location: chennai(madras), India
Distribution: slackware ofcourse
Posts: 654

Rep: Reputation: 32
Quote:
OD and Gary, thanks very much for the tips. Actually, I was able to do wh
at I needed (kinda cool, actually, linux is really easy to administer!) I will h
ave to get back to this. It's nice to know you guys are so helpful when someone
has a problem.
happy to know that you haev resolved your problem. i had
to left the office so i couldnt help you
one more question
"can you still read data cds after the scsi emulation?"
 
  


Reply

Tags
burning, cd



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
cd burning on slackware chaos111 Slackware 14 03-29-2006 04:32 AM
Burning Slackware on cd simmi Slackware 2 01-06-2006 11:20 AM
burning slackware 10.2 nipplepoker Linux - Software 3 10-14-2005 04:43 PM
burning the slackware AcidBoy Slackware 6 04-19-2004 10:24 PM
CD-Burning in slackware 9.0 bob_smith Slackware 7 04-15-2003 04:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:21 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