How do I change cdrom permissions?

Asked by Gazza

On both my cdrom burner and dvd burner I cannot change the permissions from Read-only to Read and Write. I get the message (Sorry, couldn't change the permissions of "CD-RW/DVD±RW Drive".) without any explanation as to why. Does anyone have any ideas? I am new to Ubuntu so any answers would need to be spelled out clearly as I am a bit of a dummy.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Gazza
Solved:
Last query:
Last reply:
Revision history for this message
Francesco Conti (madmoose) said :
#1

When do you receive the error message?
Please open a terminal window then post here following command result:

ls -la /dev/cd*

Revision history for this message
Gazza (gary-clarke1) said :
#2

I receive the message when i open the drive properties-permissions tab and try and change the permissions for Owner,Group or others from Read-Only to Read and Write.By the way it says Owner is unknown.
Here is the result of the above command

lrwxrwxrwx 1 root root 3 2007-11-01 16:53 /dev/cdrom2 -> hdd
lrwxrwxrwx 1 root root 3 2007-11-01 16:53 /dev/cdrom3 -> hdc
lrwxrwxrwx 1 root root 3 2007-11-01 16:53 /dev/cdrw2 -> hdd
lrwxrwxrwx 1 root root 3 2007-11-01 16:53 /dev/cdrw3 -> hdc

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#3

Please tell us what are unable to do...: you have already the max permissions for those files
Are you trying to burn cd or what...?
Which program do you use to burn your cd...?

Using terminal you can do powerful "sudo" commands:
sudo chown root.root /dev/cdr*
sudo chmod 777 /dev/cdr*

Thank you

Revision history for this message
Francesco Conti (madmoose) said :
#4

Since the devices are symbolic links can you please post the output of following command?

ls -la /dev/hdc /dev/hdd

Thank you

Revision history for this message
Gazza (gary-clarke1) said :
#5

The reason I am trying to change the permissions is to try and get DVD95 & or k9copy to detect my dvd burner.
Here is the output from the above command

brw-rw---- 1 root cdrom 22, 0 2007-11-03 19:16 /dev/hdc
brw-rw---- 1 root cdrom 22, 64 2007-11-03 19:16 /dev/hdd

Revision history for this message
Francesco Conti (madmoose) said :
#6

so you can try the following:

sudo chmod 777 /dev/hd[cd]

But I don't think will resolve your problem.

You can also check if your user is in cdrom group looking for "cdrom" in /etc/group file
Mine is:

   cdrom:x:24:haldaemon,myuser

Revision history for this message
Gazza (gary-clarke1) said :
#7

I think this has done the trick.
Thanks everyone for your help.