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 - 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 02-18-2006, 11:40 AM   #1
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Rep: Reputation: 15
Suse 10 DVD-Rom issues


Did a quick install of Suse 10.0 last night. Now Im having a few issues regarding the CD/DVD writer. For one I can't install from the CD anymore. In trying to install a few things that didnt get installed during the actual install it merely prompts me to insert the Suse 10 CD 1, while the Suse 10 DVD is clearly in the drive. Saving that K3B also doesn't recognize my burner in anyway. So what am I missing? Thanks in advance.
 
Old 02-19-2006, 01:58 AM   #2
imemyself
Member
 
Registered: Feb 2004
Location: Wichita, KS
Distribution: CentOS 4, SuSE 10, Tiger
Posts: 110

Rep: Reputation: 15
Can you access anything from CD's when you put them in? You might try looking in somewhere like /media/cdrecorder or /media/cdrom or /media/dvdrom. If there aren't any folders named something like that then maybe SuSE isn't mounting the drive. At the console try run mount. It should show you everything that is mounted on the system. If there isn't anything that looks like it might be related to a DVD or CD drive, try running (as root)
Code:
mkdir /media/cdrecorder 

mount /dev/cdrecorder /media/cdrecorder
<or>
mount /dev/cdrom /media/cdrecorder
<or>
mount /dev/dvd /media/cdrecorder
The first command just creates a folder for the drive to be mounted to(if its not already there). The mount commands use device names that SuSE seems to be using for my CD-RW/DVD-ROM drive on my laptop. If one of them works, it should say something about read only file system when you run the command, and you should be able to see the files on the CD/DVD that is in the drive(a disc will probably need to be in the drive for any of the mount commands to work) in the /media/cdrecorder folder.

 
Old 02-21-2006, 05:02 PM   #3
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
Special device does not exist.

Anyone have any other suggestions?
Thanks in advance
 
Old 02-21-2006, 05:55 PM   #4
imemyself
Member
 
Registered: Feb 2004
Location: Wichita, KS
Distribution: CentOS 4, SuSE 10, Tiger
Posts: 110

Rep: Reputation: 15
Does the drive show up in BIOS? And you installed SuSE from this drive, correct? Did it ever work after you installed SuSE?
 
Old 02-21-2006, 06:09 PM   #5
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by imemyself
Does the drive show up in BIOS? And you installed SuSE from this drive, correct? Did it ever work after you installed SuSE?
Shows up in bios.
The drive works fine under Windows, and yes, I installed Linux from it. But it would be nice to be able to use it to install some pacakges from, Gaim, amongst others. And being able to burn an ISO while linux is running would be wonerful as well.
 
Old 02-21-2006, 10:57 PM   #6
imemyself
Member
 
Registered: Feb 2004
Location: Wichita, KS
Distribution: CentOS 4, SuSE 10, Tiger
Posts: 110

Rep: Reputation: 15
I'm really not sure then. That does sound pretty odd. What's the manufacturer/model of the DVD drive? Is it anything too "exotic"?
 
Old 02-22-2006, 07:31 AM   #7
RedShirt
Senior Member
 
Registered: Oct 2005
Location: Denver
Distribution: Sabayon 3.5Loop2
Posts: 1,150

Rep: Reputation: 45
Can you post your fstab for us please?
 
Old 02-22-2006, 06:19 PM   #8
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
It's probably something obvious thats the issue. But I dont really know. Ignore the glut of Windows drives. They have their purposes.

Quote:
/dev/hde2 / reiserfs acl,user_xattr 1 1
/dev/hde1 /windows/C ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hdf1 /windows/D vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdf2 /windows/E vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdf3 /windows/F ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hdf4 /windows/G vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hdg1 /windows/H ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hde5 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/dvdrecorder /media/ subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
none /subdomain subdomainfs noauto 0 0
 
Old 02-22-2006, 06:50 PM   #9
RedShirt
Senior Member
 
Registered: Oct 2005
Location: Denver
Distribution: Sabayon 3.5Loop2
Posts: 1,150

Rep: Reputation: 45
you have a dvd recorder drive, set to "noauto", which means it isn't mounted automatically. in order to mount it, you would also have to do "mount /dev/dvdrecorder", none of the above would work. You have to mount by exisiting name. If you remove the noauto, when you boot, it will mount anything in the drive automatically.

PS, it is also set to "ro" which is read only. Won't be doing much burning on that guy.
 
Old 02-22-2006, 07:00 PM   #10
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
So just to be sure Im going to set this up right the proper way to edit that line to get it to automount said drive would be?
 
Old 02-22-2006, 07:07 PM   #11
RedShirt
Senior Member
 
Registered: Oct 2005
Location: Denver
Distribution: Sabayon 3.5Loop2
Posts: 1,150

Rep: Reputation: 45
Quote:
dev/dvdrecorder /media/ subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
should become:
Quote:
dev/dvdrecorder /media/ subfs fs=cdfss,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
Give that a shot.
 
Old 02-22-2006, 07:09 PM   #12
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by RedShirt
Give that a shot.

Will do.
 
Old 02-22-2006, 08:43 PM   #13
imemyself
Member
 
Registered: Feb 2004
Location: Wichita, KS
Distribution: CentOS 4, SuSE 10, Tiger
Posts: 110

Rep: Reputation: 15
edit: oops, had an old version of the page and forgot to refresh.
 
Old 02-23-2006, 07:53 PM   #14
Rylinkus
Member
 
Registered: Feb 2004
Distribution: Windows 2000 SP 4
Posts: 55

Original Poster
Rep: Reputation: 15
Worked for me for all of a day. Now Im back to the same issue. Discs not mounting. Which would be wonderful as there's a few apps Im trying to battle dependency issues with and I KNOW the files are right there, I merely cant access em.

/dev/dvdrecorder /media/ subfs fs=cdfss,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
 
Old 02-23-2006, 09:05 PM   #15
RedShirt
Senior Member
 
Registered: Oct 2005
Location: Denver
Distribution: Sabayon 3.5Loop2
Posts: 1,150

Rep: Reputation: 45
So... it worked... then stopped? Did anything change? The drives still work just fine in Windows, right?

And your fstab remains the same...

How about manual mounting? Does that work? "/mount /dev/dvdrecorder" what is the error you get if it doesn't?
 
  


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
DVD/Burner and CD-ROM Issues demolished Linux - Hardware 15 01-23-2006 08:52 PM
New DVD-ROM, SUSE did not notice. raduromeo Linux - Hardware 2 01-15-2006 12:38 PM
Problem with CD Rom/DVD Drives in Suse 10 and K Audio Creator PaleViper SUSE / openSUSE 1 01-15-2006 05:52 AM
Suse 10.0 dvd rom problem bf2master Linux - Newbie 2 11-10-2005 01:20 PM
converting suse 9.1 dvd-rom to cd da_zombie Linux - General 0 10-07-2004 01:54 AM

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

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