LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 08-10-2004, 08:12 PM   #1
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Rep: Reputation: 15
Unsupported burner in Slack 10. Can this be fixed?


I went to burn an ISO today and the k3b I have doesnt burn ISO's so I tried to use cdrecord and I got an error that my burner isnt supported in Slack 10. Its a burner that came with the computer and it worked in Slack 9.1 and FC2....is this something I can change with downloading some drivers? Thanks in advance.
much love,
nikki
 
Old 08-10-2004, 08:36 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
What kernel-version are you using? I find it
hard to believe that a burner that worked in
9.1 should not in 10.0 :)

Do you use SCSI-emulation?
Try a
cdrecord -scanbus
and
cdrecord -dev ATAPI -scanbus



Cheers,
Tink
 
Old 08-10-2004, 08:37 PM   #3
marlor
Member
 
Registered: May 2004
Distribution: Slackware C
Posts: 274

Rep: Reputation: 30
hi nikki,

did you pass this command "hdx=ide-scsi" to the kernel?

if you are not sure, open up your /etc/lilo.conf and add the "bold" part,

# beginning of linux boot section
image=/boot/vmlinuz
label=linux
initrd=/boot/initrd-2.4.7-10.img
read-only
root=/dev/hda9
append="hdx=ide-scsi"
# end of linux boot section

the x in the hdx reffers to your cd-rw. so probably hdc or hdd

don't forget to save and then run lilo afterwards.
 
Old 08-11-2004, 07:44 AM   #4
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by Tinkster
What kernel-version are you using? I find it
hard to believe that a burner that worked in
9.1 should not in 10.0

Do you use SCSI-emulation?
Try a
cdrecord -scanbus
and
cdrecord -dev ATAPI -scanbus
Im using 2.4 which is the kernel that came with Slack. And yes I tried all of those commands and I searched on the net for other commands and nothing worked. It kept telling me that my burner wasnt supported ....Thanks for the help.
much love,
nikki
 
Old 08-11-2004, 07:47 AM   #5
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Original Poster
Rep: Reputation: 15
Marlor,
I opened up my lilo.conf and this is what I have in the place you told me to look:

# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/hda1
label = Linux
read-only
# Linux bootable partition config ends

Should I add everything in your post or just that one line?
much love,
nikki
 
Old 08-11-2004, 07:54 AM   #6
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Can you post your cd burner model, manufacturer and if it is a SCSI or an IDE one ?

also what is the output for :
dmsg | grep -i cd
 
Old 08-11-2004, 08:07 AM   #7
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Original Poster
Rep: Reputation: 15
Cedrik,
Here's what I got:

bash-2.05b$ dmesg | grep -i cd
hdc: Compaq DVD-ROM DVD-115 0112, ATAPI CD/DVD-ROM drive
hdd: LG CD-RW CED-8080B, ATAPI CD/DVD-ROM drive
hdc: attached ide-cdrom driver.
Uniform CD-ROM driver Revision: 3.12
hdd: attached ide-cdrom driver.
hdd: ATAPI 32X CD-ROM CD-R/RW drive, 2048kB Cache, DMA
bash-2.05b$

And I belive its an IDE.
much love,
nikki
 
Old 08-11-2004, 08:09 AM   #8
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
good

add in your lilo.conf :

append="hdd=ide-scsi" as marlor said, run /sbin/lilo to take change in account and reboot
 
Old 08-11-2004, 02:12 PM   #9
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Original Poster
Rep: Reputation: 15
Ok I followed everyones advice and I tried to burn an ISO and this is the message that I got:

Cdrecord 2.00.3 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
scsidev: '/dev/hdd'
devname: '/dev/hdd'
scsibus: -2 target: -2 lun: -2
Warning: Open by 'devname' is unintentional and not supported.
cdrecord: Read-only file system. Cannot open '/dev/hdd'. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

I followed directions on how to burn an ISO using cdrecord, so I can't figure out what I did wrong. I looked under dev=help and cdrecord -scanbus, but nothing. Any ideas?
much love,
nikki
 
Old 08-12-2004, 12:31 AM   #10
brfsa
LQ Newbie
 
Registered: Sep 2003
Location: Thailand
Distribution: Centos
Posts: 28

Rep: Reputation: 15
Hey nikki,
are you sure that all necessary scsi modules are loaded? 'scsi_mod' and 'ide-scsi'
kernel 2.4 needs scsi emulation for cd burners, usb removable media, zip driver.

do a '#lsmod'
and see if the modules are loaded.

if the scsi modules aren't loaded you can try '#modprobe scsi_mod' and '#modprobe ide_scsi'

I hope you can get it to work
good luck

Last edited by brfsa; 08-12-2004 at 12:46 AM.
 
Old 08-12-2004, 01:15 AM   #11
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Quote:
Originally posted by libranikki
Ok I followed everyones advice and I tried to burn an ISO and this is the message that I got:
What command did you use to burn the ISO? Was this in the CLI or a GUI? -- J.W.
 
Old 08-12-2004, 02:51 AM   #12
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Could you post the output for :

cdrecord -scanbus dev=/dev/hdd
 
Old 08-12-2004, 03:34 AM   #13
whishkah
Member
 
Registered: Mar 2004
Location: PA
Distribution: SuSE 10 OSS
Posts: 83

Rep: Reputation: 15
I don't know if this helps but is your cdrw the primary drive. Some software I have used for my cdrom kept trying to use my cdrw instead. -This maybe a dumb response but it could happen...
 
Old 08-12-2004, 07:42 AM   #14
libranikki
Member
 
Registered: Nov 2003
Location: Florida in a town not on the weather map
Distribution: back to Fedora
Posts: 115

Original Poster
Rep: Reputation: 15
Ok.....I have tried everything and nothing was working. However, I found something out that may be helpful to others.
In K3b the latest version, if you click on Tools, then CD, then burn new image, you can choose what image you wanna burn. Click on the ISO you wanna burn and hit start. You have to be in root to do this. You can't be another user or else it won't give you the option to start. So I tried it and it worked!
So thank you thank you thank you everyone for all the help. It was soooooo appreciated.
much love,
nikki
 
Old 08-12-2004, 08:43 AM   #15
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
If you want to use k3b as regular user, start k3b (as your normal user), then go to

Settings > k3b Setup, enter your root password and click 'use burning group' and indicate cdrom in the corresponding field, then click apply, then OK.

Make sure your user is in cdrom group in /etc/group and your device file in /dev belong to cdrom group too.

Now you should be able to burn CDs as regular user
 
  


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
ISA unsupported on Slack 10.1? Steven_Shelton Slackware - Installation 8 06-17-2005 08:22 AM
Problem with 2.6.8 and DVD burner - Slack 10 failure_man Slackware 10 08-20-2004 10:27 AM
No CD Burner in Slack 9.0....Help!!!!! PenguinPwrdBox Slackware 5 04-12-2004 08:58 AM
alsa - mmap - almost fixed slack ET cb9fl Linux - Software 1 12-17-2003 02:50 AM
Fixed my Alsa sound problem with Slack 9.1 Cyclops Slackware 4 10-25-2003 11:33 PM

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

All times are GMT -5. The time now is 09:23 PM.

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