LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 04-28-2006, 04:46 AM   #1
IceChant
Member
 
Registered: Jan 2006
Location: Israel
Distribution: Windows Xp, Slackware
Posts: 316
Blog Entries: 3

Rep: Reputation: 30
CD Burner isn't recognized


I got this problem in the 2.6.15.6 kernel but in the 2.4.31 kernel it works fine, in the 2.6.15.6 k3b won't even recognize hdd that is the CD burner.
Code:
# dmesg | grep -i atapi
hdc: TOSHIBA DVD-ROM SD-M1612, ATAPI CD/DVD-ROM drive
hdd: CD-RW 52X24, ATAPI CD/DVD-ROM drive
hdc: ATAPI 48X DVD-ROM drive, 512kB Cache, UDMA(33)
Code:
# cat /etc/fstab
/dev/hdb4        swap             swap        defaults         0   0
/dev/hda2        /                reiserfs    defaults         1   1
/dev/hda1        /windows         ntfs        ro               1   0
/dev/hdb1        /hdb1            vfat        users,ro,umask=1000,rw,auto   1   0
/dev/hdb3        /stuff           vfat        users,ro,umask=1000,rw,auto   1   0
/dev/hdc       /mnt/dvdrom        auto        noauto,user,ro   0   0
/dev/hdd       /mnt/cdwriter      auto        noauto,user,ro   0   0
/dev/fd0         /mnt/floppy      auto        noauto,owner     0   0
devpts           /dev/pts         devpts      gid=5,mode=620   0   0
proc             /proc            proc        defaults         0   0
Code:
# mount
/dev/hda2 on / type reiserfs (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
/dev/hda1 on /windows type ntfs (ro)
/dev/hdb1 on /hdb1 type vfat (rw,noexec,nosuid,nodev,umask=1000)
/dev/hdb3 on /stuff type vfat (rw,noexec,nosuid,nodev,umask=1000)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
Code:
lilo.conf:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
append="hdd=ide-scsi"
boot = /dev/hda2
message = /boot/boot_message.txt
prompt
timeout=60
# Override dangerous defaults that rewrite the partition table:
change-rules
  reset
# VESA framebuffer console @ 1024x768x64k
vga = 791
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz-2.6.15.6
  root = /dev/hda2
  label = 2.6.15.6
  read-only
# Linux bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz-ide-2.4.31
  root = /dev/hda2
  label = 2.4.31
  read-only
# Linux bootable partition config ends
# Windows bootable partition config begins
other = /dev/hda1
  label = Windows
  table = /dev/hda
# Windows bootable partition config ends
Reply to post from this thread:
Quote:
Originally Posted by Chinaman
IceChant -- it is netequitte to start a new thread, rather than hijacking someone else's thread. Some people will ignore you when you hijack a thread; others will help you; and still others will flame you. Even though you think your issue is similar or the same, the best thing is to start a new thread. This will give your issue more exposure, also.
I didn't try to hijack the thread just thought it'll be better if more problems of this subject will be under same thread for future search by other users, I was probably wrong thanks for the lighting my eyes over this.
 
Old 04-28-2006, 05:18 AM   #2
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
I think that you don't need "append="hdd=ide-scsi"" with 2.6 kernels. Try leaving it out.
 
Old 04-28-2006, 05:31 AM   #3
IceChant
Member
 
Registered: Jan 2006
Location: Israel
Distribution: Windows Xp, Slackware
Posts: 316

Original Poster
Blog Entries: 3

Rep: Reputation: 30
Quote:
Originally Posted by uselpa
I think that you don't need "append="hdd=ide-scsi"" with 2.6 kernels. Try leaving it out.
I only leave it there for the 2.4 kernel, does it effect ?
 
Old 04-28-2006, 05:55 AM   #4
koloth
Member
 
Registered: Jun 2004
Location: Athens, Greece
Distribution: Slack@Home - RHEL@Work
Posts: 150

Rep: Reputation: 29
What does "cdrecord --scanbus" return?
 
Old 04-28-2006, 07:09 AM   #5
IceChant
Member
 
Registered: Jan 2006
Location: Israel
Distribution: Windows Xp, Slackware
Posts: 316

Original Poster
Blog Entries: 3

Rep: Reputation: 30
Code:
#cdrecord --scanbus
Cdrecord-Clone 2.01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
cdrecord: Warning: Running on Linux-2.6.15.6
cdrecord: There are unsettled issues with Linux-2.5 and newer.
cdrecord: If you have unexpected problems, please try Linux-2.4 or Solaris.
cdrecord: Permission denied. Cannot open '/dev/sg1'. 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'.
 
Old 04-28-2006, 07:34 AM   #6
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
Quote:
Originally Posted by IceChant
I only leave it there for the 2.4 kernel, does it effect ?
I think so. Move it to the section for the 2.4 kernel instead of having it at the top of the config file. As I said, try leaving it out, that worked for me.
 
Old 04-28-2006, 07:41 AM   #7
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,974
Blog Entries: 46

Rep: Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202
Quote:
Originally Posted by IceChant
I only leave it there for the 2.4 kernel, does it effect ?

Hi,

Just move the append to the 2.4 stanza in the lilo.conf file and be sure to update the lilo.

For the 2.6 kernel you can pass the append="hdd=ide-cd" for the the device. Just place the append in the 2.6 stanza within the lilo.conf file, plus update the lilo. The reason for this is that 2.6 use the new ide-cd module for ide and atapi devices.
 
Old 04-28-2006, 07:43 AM   #8
uselpa
Senior Member
 
Registered: Oct 2004
Location: Luxemburg
Distribution: Slackware, OS X
Posts: 1,507

Rep: Reputation: 47
Quote:
Originally Posted by gwsandvik
For the 2.6 kernel you can pass the append="hdd=ide-cd" for the the device. Just place the append in the 2.6 stanza within the lilo.conf file, plus update the lilo. The reason for this is that 2.6 use the new ide-cd module for ide and atapi devices.
My DVD burner works fine without that option and kernel 2.6. so that seems to be optional.
 
Old 04-28-2006, 08:18 AM   #9
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,974
Blog Entries: 46

Rep: Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202Reputation: 3202
Quote:
Originally Posted by uselpa
My DVD burner works fine without that option and kernel 2.6. so that seems to be optional.
Hi,

The passing of the parameters is not always required. At times this is used to reassign the device id or force the device.

The 2.6 stock indeed uses the ide-cd for ide and atapi devices.
 
Old 04-28-2006, 08:27 AM   #10
pdw_hu
Member
 
Registered: Nov 2005
Location: Budapest, Hungary
Distribution: Slackware, Gentoo
Posts: 346

Rep: Reputation: Disabled
cdrecord doesnt' recognize mine either, i just have to use cdrecord -dev=/dev/hdx. then it works after mumbling about this "opening by devname is whatever... blabla.
 
Old 04-28-2006, 09:05 AM   #11
IceChant
Member
 
Registered: Jan 2006
Location: Israel
Distribution: Windows Xp, Slackware
Posts: 316

Original Poster
Blog Entries: 3

Rep: Reputation: 30
Quote:
Originally Posted by gwsandvik
Hi,

Just move the append to the 2.4 stanza in the lilo.conf file and be sure to update the lilo.

For the 2.6 kernel you can pass the append="hdd=ide-cd" for the the device. Just place the append in the 2.6 stanza within the lilo.conf file, plus update the lilo. The reason for this is that 2.6 use the new ide-cd module for ide and atapi devices.
It worked, thanks.

Last edited by IceChant; 04-28-2006 at 04:02 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
CDR burner not being recognized by K3B setup cwwilson721 Slackware 29 04-17-2006 12:14 PM
Cd burner not recognized corbis_demon Slackware 8 04-14-2006 09:38 PM
SATA Optical Drive (DVD Burner) not recognized squisher Linux - Hardware 5 04-05-2005 11:16 AM
CD-burner no longer recognized jonr Mandriva 5 08-06-2004 01:43 AM
KDE3.2beta...changing my burner to be recognized as a HD to CDROM hypermegachi Linux - Software 5 12-07-2003 06:19 PM

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

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