LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-28-2005, 05:38 AM   #1
WoodLark
LQ Newbie
 
Registered: Feb 2004
Location: South Carolina
Distribution: Slackware et. al.
Posts: 29

Rep: Reputation: 15
Can't see DVD drive


I am using Slackware 10.1. On my second ide channel, I have a CD drive as the master and a DVD-ROM drive as the slave. The bios sees both drives and identifies them with no problem. On boot, the CD drive is detected as device /dev/hdc, and when I go into KDE I am able to listen to CD's. However the DVD does not appear to be detected (I have looked at the output of dmesg). I have tried adding it to LILO with no effect. Before I realized that it wasn't even detected, I also tried adding it to /etc/fstab and tried a symbolic link. Anybody know what obvious step I am missing?
 
Old 03-28-2005, 06:22 AM   #2
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Post the output of:

dmesg | grep -i dvd
cat /etc/fstab
cat /etc/lilo.conf
/sbin/lspci
mount

and please use the Code button above, or code it by hand
so that the output is easier to read...
 
Old 03-31-2005, 05:22 AM   #3
WoodLark
LQ Newbie
 
Registered: Feb 2004
Location: South Carolina
Distribution: Slackware et. al.
Posts: 29

Original Poster
Rep: Reputation: 15
Sorry I haven't responded with the requested info, but its been a hectic week. Will try to get it done tonight. Thanks for your patience.
 
Old 04-02-2005, 07:20 AM   #4
WoodLark
LQ Newbie
 
Registered: Feb 2004
Location: South Carolina
Distribution: Slackware et. al.
Posts: 29

Original Poster
Rep: Reputation: 15
Chinaman, I finally got he info you requested:

dmesg | grep -i dvd returns nothing.

cat /etc/fstab:

Code:
/dev/hdb2        swap             swap        defaults         0   0
/dev/hda1        /                reiserfs    defaults         1   1
/dev/hda5        /usr             reiserfs    defaults         1   2
/dev/hda6        /var             reiserfs    defaults         1   2
/dev/hda7        /tmp             reiserfs    defaults         1   2
/dev/hda8        /home            reiserfs    defaults         1   2
/dev/cdrom       /mnt/cdrom       iso9660     noauto,owner,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
/dev/sda1       /mnt/flash      auto            noauto,user     0       0
/dev/dvd        /mnt/dvd        iso9660         noauto,user,ro  0       0
roo
cat /etc/lilo.conf

Code:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda
message = /boot/boot_message.txt
prompt
timeout = 1200
# Override dangerous defaults that rewrite the partition table:
change-rules
  reset
# VESA framebuffer console @ 1024x768x256
vga = 773
append = "hdc = ide-scsi hdd = ide-scsi"
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# VESA framebuffer console @ 1024x768x256
# vga=773
# VESA framebuffer console @ 800x600x64k
# vga=788
# VESA framebuffer console @ 800x600x32k
# vga=787
# VESA framebuffer console @ 800x600x256
# vga=771
# VESA framebuffer console @ 640x480x64k
# vga=785
# VESA framebuffer console @ 640x480x32k
# vga=784
# VESA framebuffer console @ 640x480x256
# vga=769
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz
  root = /dev/hda1
  label = Linux
  read-only
# Linux bootable partition config ends
/sbin/lspci:

Code:
00:00.0 Host bridge: Intel Corp. 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 02)
00:01.0 PCI bridge: Intel Corp. 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 02)
00:07.0 ISA bridge: Intel Corp. 82371AB/EB/MB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corp. 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corp. 82371AB/EB/MB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corp. 82371AB/EB/MB PIIX4 ACPI (rev 02)
00:13.0 Ethernet controller: 3Com Corporation 3c905B 100BaseTX [Cyclone] (rev 24)
01:00.0 VGA compatible controller: ATI Technologies Inc 3D Rage Pro AGP 1X/2X (rev 5c)
mount:

Code:
/dev/hda1 on / type reiserfs (rw)
proc on /proc type proc (rw)
/dev/hda5 on /usr type reiserfs (rw)
/dev/hda6 on /var type reiserfs (rw)
/dev/hda7 on /tmp type reiserfs (rw)
/dev/hda8 on /home type reiserfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
usbfs on /proc/bus/usb type usbfs (rw)
To me, it looks like the OS does not even see the DVD drive, even though the BIOS does.
 
Old 04-02-2005, 03:30 PM   #5
urka58
Member
 
Registered: Nov 2003
Distribution: slackware 15
Posts: 546

Rep: Reputation: 43
I would try
grep DVD | dmesg (DVD is upper case)
Anyway as you are using ide-scsi emulation your DVD drive will be recognized as /dev/sr1 (scd1 is also possible).
try creating a symlink like (as root)
ln -s /dev/sr1 /dev/dvd
Also check your /dev/cdrom as is should be a symlink to sr0 (scd0)
Hope this helps
Ciao
 
Old 04-03-2005, 07:54 AM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
First, this command is not case sensitive:
Code:
mingdao@titus:~$ dmesg | grep -i dvd
hdc: UJDA760 DVD/CDRW, ATAPI CD/DVD-ROM drive
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
mingdao@titus:~$ dmesg | grep -i dVd
hdc: UJDA760 DVD/CDRW, ATAPI CD/DVD-ROM drive
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
mingdao@titus:~$ dmesg | grep -i DVD
hdc: UJDA760 DVD/CDRW, ATAPI CD/DVD-ROM drive
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
mingdao@titus:~$
So before we go any further, you need to determine if your
system actually sees the drive or not. Just because dmesg
did not find it does not mean it's not there. It could be that
you dmesg is too full and it can't retrieve that information,
which would have been from your last boot before you issued
that command. You can look in /var/log/syslog and if the drive
is not in there, we'll first have to get it recognized by Slack.
 
Old 04-03-2005, 09:38 AM   #7
WoodLark
LQ Newbie
 
Registered: Feb 2004
Location: South Carolina
Distribution: Slackware et. al.
Posts: 29

Original Poster
Rep: Reputation: 15
/var/log/syslog did show device /dev/hdd being assigned to the DVD drive.

I commented out the line in /etc/lilo.conf that reassigned it as a SCSI drive, and I changed /etc/fstab to mount /dev/hdd as /mnt/dvd.

I can now view movies on the DVD drive although there is no sound, even through the jack on the front of the DVD drive. My next project is to figure out where the sound is. Thanks guys!
 
  


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
which DVD player can play DVD from hard drive *and* support DVD Menu ? tho_x_tran Linux - Software 16 11-16-2006 02:00 PM
How can I change cdrom1 to dvd. REDhat9, lite-on LTD-163D dvd drive theonlydrew Linux - Hardware 3 01-26-2006 05:54 PM
dvd drive not found/ install suse 9.2 dvd caffemusse Linux - Laptop and Netbook 0 07-06-2005 05:30 AM
can't read data DVD-R on my DVD-ROM/CD-RW combi drive bruceyboy Linux - Hardware 0 11-17-2004 11:25 AM
dvd-rom drive won't play movies and dvd burner won't record calble Linux - Hardware 1 08-09-2004 07:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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