Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > SuSE Linux Help > Can no longer browse or 'ls' CD or DVD disks.

Forgot Password?
 SuSE Linux Help   For help and discussions related to SuSE Linux

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 08-28-2006   #1 (permalink)
Just Joined!
 
Join Date: Aug 2006
Posts: 8
Unhappy Can no longer browse or 'ls' CD or DVD disks.

I can still play Movie DVD's, or listen to audio CD's on my DVD drive, and CD drive. I can not <cd> to those drives and list the files, or use "my computer" or "konquer" to browse data files on them.

Does anyone have any reason this happened or how to fix it?

I'm using Suse 10.1 64 bit and KDE
new2nix is offline  


Reply With Quote
Old 08-28-2006   #2 (permalink)
Linux Engineer
 
Zelmo's Avatar
 
Join Date: Jan 2006
Location: Riverton, UT, USA
Posts: 1,001
You probably just need to mount the disk.
__________________
Stand up and be counted as a Linux user!
Zelmo is offline   Reply With Quote
Old 08-28-2006   #3 (permalink)
Just Joined!
 
Join Date: Aug 2006
Posts: 8
I don't think it is a mount problem.

1)
The "My computer" icon in KDE not only shows the drive, but also the name of whatever CD or DVD is in the drive.

2)
As the first post says, linux, can play audio CD's and movie DVDs'.

3) I can see the CD or DVD drive under /mount
/media>ls -al
total 1
drwxr-xr-x 4 root root 112 2006-08-24 11:10 .
drwxr-xr-x 25 root root 592 2006-08-28 09:56 ..
drwxr-xr-x 2 root root 48 2006-08-16 15:59 cdrecorder
drwxr-xr-x 2 root root 48 2006-08-16 15:59 dvdrecorder


when I cd to the drive,
>cd cdrecorder/
>ls -al
total 0
drwxr-xr-x 2 root root 48 2006-08-16 15:59 .
drwxr-xr-x 4 root root 112 2006-08-24 11:10 ..

That's all that shows up

If I click the drive in KDE's mycomputer icon I get permission denied.
new2nix is offline   Reply With Quote
Old 08-28-2006   #4 (permalink)
Banned
 
CodeRoot's Avatar
 
Join Date: Sep 2005
Posts: 567
Quote:
Originally Posted by new2nix
I don't think it is a mount problem.
Actually, this looks very much like a mount problem - if you don't have some form of "auto-mount" (i.e., udev) running on your system.

Your 'ls' output from your previous post looks like a mount point that has nothing mounted on it (normally an empty directory).

Whatever programs you are running [that work] may be (probably are) handling the mount/unmount operations for you automatically.

Try mounting '/media/cdrecorder' or '/media/dvdrecorder' manually:

Code:
mount /media/cdrecorder
mount /media/dvdrecorder
or try re-mounting everything:

Code:
mount -a
Otherwise, please post the '*recorder' lines of your '/etc/fstab' file.

(Or the whole file, if you wish...)
__________________
* Linux 101 * Linux 102 * Computer 101 * Software 101 *
-
-
Remember: amateurs built the ark... professionals built the Titanic
CodeRoot is offline   Reply With Quote
Old 08-28-2006   #5 (permalink)
Linux Engineer
 
Zelmo's Avatar
 
Join Date: Jan 2006
Location: Riverton, UT, USA
Posts: 1,001
Dangit, CodeRoot beat me to it.
__________________
Stand up and be counted as a Linux user!
Zelmo is offline   Reply With Quote
Old 08-28-2006   #6 (permalink)
Banned
 
CodeRoot's Avatar
 
Join Date: Sep 2005
Posts: 567
Quote:
Originally Posted by Zelmo
Dangit, CodeRoot beat me to it.
Don't worry -- you'll probably get the next one...

EDIT:
And I am usually a little slower than most in getting a post written...
__________________
* Linux 101 * Linux 102 * Computer 101 * Software 101 *
-
-
Remember: amateurs built the ark... professionals built the Titanic
CodeRoot is offline   Reply With Quote
Old 08-28-2006   #7 (permalink)
Just Joined!
 
Join Date: Aug 2006
Posts: 8
Quote:
Originally Posted by CodeRoot
Actually, this looks very much like a mount problem - if you don't have some form of "auto-mount" (i.e., udev) running on your system.

Your 'ls' output from your previous post looks like a mount point that has nothing mounted on it (normally an empty directory).

Whatever programs you are running [that work] may be (probably are) handling the mount/unmount operations for you automatically.

Try mounting '/media/cdrecorder' or '/media/dvdrecorder' manually:

Code:
mount /media/cdrecorder
mount /media/dvdrecorder
or try re-mounting everything:

Code:
mount -a
Otherwise, please post the '*recorder' lines of your '/etc/fstab' file.

(Or the whole file, if you wish...)

I was asuming that since the name of the disk was shown, the disk was mounted. I must be wrong. Thanks for the reply,

Here's the output of mount;

Code:
# mount /media/cdrecorder
mount: unknown filesystem type 'subfs'
No joy.

Here's the CD / DVD section of fstab;

Code:
# cat /etc/fstab

/dev/hdc             /media/dvdrecorder   subfs      noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/hdd             /media/cdrecorder    subfs      noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
new2nix is offline   Reply With Quote
Old 08-29-2006   #8 (permalink)
Banned
 
CodeRoot's Avatar
 
Join Date: Sep 2005
Posts: 567
Based on the fact that in your original post, you said "I can still..." - I am guessing that perhaps you may have udev, but it is not running...

As a check - what does this yield?:

Code:
ls -ld /etc/udev /etc/init.d/boot.udev /usr/bin/udevinfo /sbin/udev*
__________________
* Linux 101 * Linux 102 * Computer 101 * Software 101 *
-
-
Remember: amateurs built the ark... professionals built the Titanic
CodeRoot is offline   Reply With Quote
Old 08-29-2006   #9 (permalink)
Just Joined!
 
Join Date: Aug 2006
Posts: 8
Quote:
Originally Posted by CodeRoot
Based on the fact that in your original post, you said "I can still..." - I am guessing that perhaps you may have udev, but it is not running...

As a check - what does this yield?:

Code:
ls -ld /etc/udev /etc/init.d/boot.udev /usr/bin/udevinfo /sbin/udev*
As requested;


# ls -ld /etc/udev /etc/init.d/boot.udev /usr/bin/udevinfo /sbin/udev*
-rwxr-xr-x 1 root root 1832 2006-05-02 02:46 /etc/init.d/boot.udev
drwxr-xr-x 3 root root 104 2006-04-22 21:53 /etc/udev
-rwxr-xr-x 1 root root 15472 2006-05-02 02:46 /sbin/udevcontrol
-rwxr-xr-x 1 root root 65472 2006-05-02 02:46 /sbin/udevd
-rwxr-xr-x 1 root root 19808 2006-05-02 02:46 /sbin/udevsettle
-rwxr-xr-x 1 root root 20640 2006-05-02 02:46 /sbin/udevtrigger
-rwxr-xr-x 1 root root 54760 2006-05-02 02:46 /usr/bin/udevinfo


What does that mean?
new2nix is offline   Reply With Quote
Old 08-29-2006   #10 (permalink)
Banned
 
CodeRoot's Avatar
 
Join Date: Sep 2005
Posts: 567
What do these commands yield? (as root):

Code:
grep subfs /proc/modules /proc/mounts /var/log/boot.msg 
grep subfs /var/log/messages | tail
grep subfs /var/log/warn | tail
udevinfo -d | grep -A 6 block
ls -al /sys/block/hd*
__________________
* Linux 101 * Linux 102 * Computer 101 * Software 101 *
-
-
Remember: amateurs built the ark... professionals built the Titanic
CodeRoot is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 03:27 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2