Find the answer to your Linux question:
Results 1 to 4 of 4
I have been having some problems burning iso's in Etch. First, natilus-cd-burner gave me a generic error message. Then I tried bonfire, which said I don't have the right permissions. ...
  1. #1
    Just Joined!
    Join Date
    Nov 2003
    Posts
    4

    Burning ISO's in Etch

    I have been having some problems burning iso's in Etch. First, natilus-cd-burner gave me a generic error message. Then I tried bonfire, which said I don't have the right permissions. So, I looked up the users/groups in Gnome, and it said that I may use the cdrom. Has anybody else had a problem burning iso's in Etch? Thanks.

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Did you try K3B ?

    Did you make sure "cdrecord" and "cdrdao" permissions and ownership are set rightly ?
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    Just Joined!
    Join Date
    Nov 2003
    Posts
    4

    cdrecord & cdrdao

    Well, I run Gnome, and I would rather not mix GTK and QT apps if at all possible. How do I set permissions on cdrecord and cdrdao? Thanks.

  4. #4
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    The output of
    Code:
    ls -l /usr/bin/cdr*
    should look like that :
    -rwsr-xr-- 1 root cdrom 564332 2006-08-15 20:45 /usr/bin/cdrdao
    -rwsr-xr-- 1 root cdrom 133 2006-01-07 13:43 /usr/bin/cdrecord
    -rwsr-xr-- 1 root cdrom 323540 2006-01-07 13:44 /usr/bin/cdrecord.mmap
    -rwsr-xr-- 1 root cdrom 323540 2006-01-07 13:44 /usr/bin/cdrecord.shm
    So all of those for must be owned by root and member of "cdrom" group. Plus they must be set as "SUID" (the "s" in the permissions).

    If it doesn't look like that, you can fix it in 2 steps (in that order).

    Run both commands as root :

    1) Ownership
    Code:
    chown root:cdrom /usr/bin/cdr*
    2) Permissions
    Code:
    chmod 4754 /usr/bin/cdr*
    3) Verify with
    Code:
    ls -l /usr/bin/cdr*
    that everything has been setup right.

    Now it should work.

    If it doesn't help, we'll try something else.
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •