Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
i've been running slackware 9 for a little while now, and i'm trying to configure my cdrom and cdrw to work, but have been unsuccessful so far. when i try to mount an ordinary audio CD i get the wrong fs type, bad option etc. error. after trying different fstab options (noauto,users,ro and that sort of thing), i looked at dmesg to see if anything was happening during boot, and found this:
this is just a guess of a work around...
have you tried to use the ide-scsi driver to set up the cdrom drive.
i know thats usually used for burning but it does work for just a regular cdrom drive too.
i can mount data cd's alright on both drives, but not audio cd's. when i use the -t auto option it tells me i have to specify a filesystem, and when i use -t iso9660 it tells me bad fs.
i've been trying to find other references to this kind of thing online, and been unsuccessful so far. man mount mentioned that mount looks at a file called /etc/filesystems to probe when you use auto, and i noticed that i don't have this file. i do, however, have /proc/filesystems, and iso9660 is listed, so i don't think that's really a problem.
does anyone have any suggestions or advice?? i don't know what to try next....
ok...
i hate to keep saying this but i don't think you usually mount audio cd's.
you use program which stream the audio data from the drive.
you say that you have tried to play it from the gnome cd player and got errors.
do you have a file called /dev/cdrom?
it should link to your actual cdrom drive.
check the /dev directory to see if it exists.
ls -l /dev/cdrom
if it says it s there then see what it is pointing to.
in your case it appears that it should be /dev/hdd
the right side of the above command should look like
/dev/cdrom -> /dev/hdd
if /dev/cdrom exists and its pointing to the wrong thing then you need to erase it before making the new link
so if /dev/cdrom does exist then erase it with
rm /dev/cdrom
then make the link to your actual cdrom drive
ln -s /dev/hdd /dev/cdrom
if the link was not there to begin with then just do the
ln -s /dev/hdd /dev/cdrom
hmmm
One would think that the gnome cd player would tell you that the reason it couldn't play was because permission was denied. There are a couple of command line programs you could try as root before going around changing permissions to see if thats the problem. cdplay and workbone are two that i know of.
cdplay is probably your best bet for having. just type
cdplay -a
and it should start playing the cd from the beginning.
be sure to do that as root though as you are correct in thinking you don't have permission to access it as user.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.