LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   cd-rom problems (https://www.linuxquestions.org/questions/linux-newbie-8/cd-rom-problems-25314/)

spy5600 07-08-2002 08:17 AM

cd-rom problems
 
I just instaled mandrake 8.2 (powerpack)
But, I have some problems:
1- when I want to acces to the cd-rom a window appears: "Unable to enter: file:/mnt/cdrom . You do not have acces rights to this location"

2- My sound dont work
My sound card is an on board AC97. I have a MSI Kt3 ULTRA-ARU

PLZ help im a :newbie:

danrees 07-08-2002 08:39 AM

You need to edit /etc/fstab (as root) so that the option "user" is enabled for /dev/cdrom. e.g.

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/hda5 / auto defaults,errors=remount-ro 0 1
/dev/hda6 none swap sw 0 0
proc /proc proc defaults 0 0
/dev/fd0 /floppy auto defaults,user,noauto 0 0
/dev/cdrom /cdrom iso9660 defaults,ro,user,noauto 0 0
/dev/dvd /mnt/dvd iso9660 defaults,ro,user,noauto 0 0
/dev/hda2 /mnt/windows vfat defaults,user,auto,umask=000 0 0

You should then be able to mount/access your CD-ROM drive.

As for your sound issue - try running sndconfig as root. Mandrake might have added some other sound utilities, but I know this worked in Mandrake 8.0.

NB - To login as root you can simply open up a terminal and then type su, and enter your password for root. Then you might edit using kwrite (kwrite /etc/fstab), gedit (gedit /etc/fstab) etc.

spy5600 07-08-2002 09:04 AM

so i loged as root then I cat fstab:

/dev/hdb6 / ext3 defaults 1 1
none /dev/pts devpts mode=0620 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hdb8 /home ext3 defaults 1 2
/mnt/cdrom /mnt/cdrom supermount dev=/dev/hdc,fs=iso9660,ro,--,iocharset=iso8859-1 0 0
/mnt/cdrom2 /mnt/cdrom2 supermount dev=/dev/scd0,fs=iso9660,ro,--,iocharset=iso8859-1 0 0
/mnt/floppy /mnt/floppy supermount dev=/dev/fd0,fs=vfat,--,iocharset=iso8859-1,umask=0,sync,codepage=850 0 0
/dev/hdb1 /mnt/win_c vfat iocharset=iso8859-1,umask=0,codepage=850 0 0
/dev/hdb5 /mnt/win_d vfat iocharset=iso8859-1,umask=0,codepage=850 0 0
none /proc proc defaults 0 0
/dev/hdb7 swap swap defaults 0 0

then what i need to do next?

linuxcool 07-08-2002 10:03 PM

Edit this line:

/mnt/cdrom /mnt/cdrom supermount dev=/dev/hdc,fs=iso9660,ro,--,iocharset=iso8859-1 0 0

Add the word user to it. Like this:

/mnt/cdrom /mnt/cdrom supermount dev=/dev/hdc,fs=iso9660,ro,--,iocharset=iso8859-1,user 0 0


All times are GMT -5. The time now is 03:57 AM.