LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-28-2008, 09:49 PM   #1
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Rep: Reputation: 0
Question CD/DVD Rom not working in Ubuntu 8.04 on Lenovo Ideapad Y710


Hello,
I have a Lenovo Ideapad Y710 and having problems with my CD/DVD drive.

After installed Hardy Heron the DVD drive stopped working in both Vista (pre-installed) and Ubuntu. Soon I figured out how to correct the problem in Vista (had to delete an entry in the registry) but could not correct it in Ubuntu. I am kinda new on Linux and I will appreciate any help.
It so pitty since all works well and its superafast laptop.
 
Old 11-29-2008, 02:50 PM   #2
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
What is the drive not doing? It would help us if you provided a little more info. But for starters if it is not playing a music cd when inserted try opening up a terminal and typing the following.
Code:
sudo mount /dev/cdrom /media/cdrom
you might have to change cdrom to where it actually needs to be. Man I really need to get my vm up and running so that I can test other dist.
 
Old 11-29-2008, 06:28 PM   #3
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
Hello and thanks for the post,
My case is not that easy. Its kinda weird.
When I try to mount it I get mount: special device /dev/cdrom does not exist.(Have tried all possible names)
The drive works for sure since I am using it on Vista and an Ubuntu VMWare workstation on the same laptop....! When I boot with the Ubuntu VM it mounts the cdrom automaticaly as normal.
So it is not working when boot with Grub.
And one more funny thing. Any CD/DVD rom does not work. I have also try with an external one and also did not showed up.
My question now is is it any way to go through the boot logs and see if there is an error message there.
Once again thanks.
 
Old 11-29-2008, 09:30 PM   #4
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
yes. what we will do is pipe the bootup kernel messages to a log file
Code:
dmesg >> KernelMessages.log
this will create a file with the bootup messages in it.
 
Old 11-30-2008, 08:33 AM   #5
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
Kernelmessage.log

Hello,
The log is to long to post in the Thread. It does not have anything obvious on it regarding the CD/DVD rom.
What I am looking for?
I believe the problem starts on the Laptopīs Bios but not 100% sure yet.
The old good days of IBM are over. Those new ones even they perform beptter than the ThinkPads they suck on Support. The BIOS is so poor for such a machine.

Thank you again.
If you have any idea please let me know.
Stef
 
Old 11-30-2008, 10:08 AM   #6
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
All we are looking for is any references to when it trys to mount the cdrom or even if it makes mention of the cdrom.
 
Old 12-01-2008, 09:16 AM   #7
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
Unfortunately there is nothing regarding the CD.
Thats very strange. Any ideas.
If the problem is the BIOS (not letting the drive to show up) then I should be able to do something with my external one.
 
Old 12-01-2008, 10:14 AM   #8
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
I don't really think the problem is with the bios but more so with how the vm is acting with the system. Have you checked your vm settings?
 
Old 12-01-2008, 11:17 AM   #9
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
you should have something in the logs if the system sees the drive. are you sure you looked at that log close enough ?
have you tried searching teh log for the DVD drive ?..

Quote:
it-etch:/# cat /var/log/dmesg | grep -i dvd
hda: PHILIPS DVD+/-RW DVD8801, ATAPI CD/DVD-ROM drive
hda: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33)
as you can see from the results my DVD Drive is /dev/hda


You can use the following commands to see what drive mappings are in place on your system for the CDROM/DVD

it-etch:/# sg_map26 --result=2 --symlink /dev/cdrom
/dev/dvd
/dev/cdrom
/dev/sr0
/dev/scd0

it-etch:/# sg_map26 --result=2 --symlink /dev/dvdrw
/dev/dvdrw
/dev/cdrw
/dev/hda
 
Old 12-02-2008, 08:32 AM   #10
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
On my ubuntu-vm the DVD mounted without issues and listed. See below

stefanos@ubuntu-vm:~$ cat /var/log/dmesg |grep -i dvd
[ 11.046103] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7560A D803 PQ: 0 ANSI: 5
[ 11.591174] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray

stefanos@ubuntu-vm:~$ sg_map26 --result=2 --symlink /dev/cdrom
/dev/dvdrw
/dev/dvd
/dev/cdrw
/dev/cdrom
/dev/sr0
/dev/scd0

Those entries do not exist on when directly boot.
 
Old 12-02-2008, 08:47 AM   #11
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
stefanos@Y710:~$ sg_map26 --result=2 --symlink /dev/cdrom
stat failed on /dev/cdrom: No such file or directory

Thats strange.
Keep in mind though that VMware workstation uses a virtual BIOS.
I will give you little more history of the setup.
When first installed Ubuntu I used grub as bootloader for both Vista and Ubuntu.
This had the result to disable the DVD or any DVD/CD on the system.
Could not use it in vista too. Then I used neogrub boot loader and booted from the Windows side. That gave me the hard drive back in Vista but not fixed the problem in Ubuntu.
So I have stack.
Thanks and I appreciate your help. Any ideas. If is not the BIOS then what else we can blame. Grub????? But Grub is used in both vm and real systems.

Last edited by PiraeusStef; 12-02-2008 at 08:59 AM. Reason: add more data
 
Old 12-02-2008, 09:27 AM   #12
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by PiraeusStef View Post
stefanos@Y710:~$ sg_map26 --result=2 --symlink /dev/cdrom
stat failed on /dev/cdrom: No such file or directory

Thats strange.
Keep in mind though that VMware workstation uses a virtual BIOS.
I will give you little more history of the setup.
When first installed Ubuntu I used grub as bootloader for both Vista and Ubuntu.
This had the result to disable the DVD or any DVD/CD on the system.
Could not use it in vista too. Then I used neogrub boot loader and booted from the Windows side. That gave me the hard drive back in Vista but not fixed the problem in Ubuntu.
So I have stack.
Thanks and I appreciate your help. Any ideas. If is not the BIOS then what else we can blame. Grub????? But Grub is used in both vm and real systems.
Check this out too.
stefanos@Y710:~$ cat /var/log/dmesg|grep -i hda
[ 49.011082] hda_codec: Unknown model for ALC883, trying auto-probe from BIOS.

Last edited by PiraeusStef; 12-02-2008 at 09:29 AM.
 
Old 12-02-2008, 09:49 AM   #13
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
That last post is a Sound card driver..


I didn't catch at first that this is on a Virtual Machine..
Did you verify your VM config ?

http://www.vmware.com/support/gsx25/...vd-cd_gsx.html
 
Old 12-02-2008, 01:33 PM   #14
PiraeusStef
LQ Newbie
 
Registered: Nov 2008
Posts: 13

Original Poster
Rep: Reputation: 0
Ok my bad I will try to Clear it.
I have 2 ubuntu installations. The laptop is dual boot Vista/Ubuntu
and within Vista I have a VM Ubuntu.
The clean install has the DVD problem. The VM works fine exept compiz which was expected.
I hope this makes thinks clear.
 
Old 12-02-2008, 08:01 PM   #15
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
Ok so that makes things a little more clear. So if we understand you the problem is with your actual Ubuntu installation, NOT the vm correct? If that is true then is the previous post about the dvd mounting under the VM or the Actual Installation?
 
  


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
Linux on Lenovo IdeaPad U110 echasketch123 Linux - Laptop and Netbook 1 09-19-2008 09:25 AM
Lenovo X60 - Ubuntu Gutsy 7.10 - 3D acceleration not working...!!?? rameious Linux - Laptop and Netbook 2 04-28-2008 07:52 PM
Lenovo IdeaPad Y510 mrzack General 3 03-21-2008 08:32 AM
HELP -->DVD ROM is not working R.H. 8 pr@k@sh Linux - Hardware 2 03-24-2005 08:37 AM
DVD-ROM not working pwalden Linux - Hardware 3 03-13-2004 06:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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