Results 1 to 10 of 33
Iv'e been trying to play my cdrom, Can't seem to get it working, I tried the following and can't seem to get it right, need help.
root@fvs:~# chmod 644 /dev/hdc
...
- 11-09-2006 #1Linux Newbie
- Join Date
- May 2005
- Location
- Scranton, Pa
- Posts
- 166
Unable to mount cdrom?
Iv'e been trying to play my cdrom, Can't seem to get it working, I tried the following and can't seem to get it right, need help.
root@fvs:~# chmod 644 /dev/hdc
root@fvs:~# mount /dev/cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only
mount: you must specify the filesystem type
root@fvs:~# pico /etc/fstab
root@fvs:~# chmod 644 /dev/cdrom
root@fvs:~# mount /dev/cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only
mount: you must specify the filesystem type
root@fvs:~
What do I do for filesystem type?
- 11-09-2006 #2Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
why are you changing permissions on the device?
- 11-09-2006 #3Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
This is the entry you should have for /dev/cdrom in your /etc/fstab, as long as its the same, you can just typeCode:[shaunb@earth]/home/shaunb:# grep cdrom /etc/fstab /dev/cdrom /mnt/cdrom auto noauto,owner,user,ro 0 0 [shaunb@earth]/home/shaunb: #
Code:mount /mnt/cdrom
- 11-09-2006 #4Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
WAIT a second
you're trying to PLAY your cdrom? does this mean its a music cd?
you don't mount music cd's, this is why its asking you for a filesystem type, because the disc isnt in ISO9660 format.
just put the cd in , and start a cd player application
- 11-09-2006 #5Linux Newbie
- Join Date
- May 2005
- Location
- Scranton, Pa
- Posts
- 166
OK, I tried another player "Amarok" and it played the music cd, Now I need to get my DVD player to play, I tried using xine to play and it wont play after it launches?
- 11-09-2006 #6Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
You need to install the libdvd-nav and libdvdread packages
http://www.linuxpackages.net/search_...vdnav&ver=11.0
http://www.linuxpackages.net/search_...dread&ver=11.0
- 11-09-2006 #7Linux Newbie
- Join Date
- May 2005
- Location
- Scranton, Pa
- Posts
- 166
I did the install, but I get this error "could not access /dev/dvd" What next?

PS Thanks for staying with me.
- 11-09-2006 #8Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
add yourself to the disk group and you should be able to read from /dev/dvd
its usermod <user> -G disk
or something like that
- 11-09-2006 #9Linux Newbie
- Join Date
- May 2005
- Location
- Scranton, Pa
- Posts
- 166
Please expain how do I do that?
- 11-09-2006 #10Linux Enthusiast
- Join Date
- Jun 2005
- Posts
- 668
ok, I'm sure this method works too,
edit /etc/group as root and find the 'disk' group,
it should look as follows
make it like this, put your username in, save and exitCode:disk::6:root,adm
now as your user, typeCode:disk::6:root,adm,youruserhere
and it will show your users groupsCode:groups
hopefully your user will now be in the 'disk' group and able to read the device, you might need to logout and log back in, or if the editing /etc/group by hand doesnt work, we will have to use 'usermod -G' (if I can remember the command, havent done this for a while).


Reply With Quote