Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 12th June 2007, 06:52 AM
boba_fett's Avatar
boba_fett Offline
Registered User
 
Join Date: Jul 2005
Location: Netherlands
Age: 41
Posts: 14
Quote:
Originally Posted by leadgolem
Sure, it's amazing to me how few people know about the /etc/rc.local file. It's in the fedora basics faq.
Probably because many focus on the newer aspects of Linux

But using rc.local is a good workaround and it works.
__________________
Boba says "May the Source be with you!".
Reply With Quote
  #17  
Old 15th June 2007, 02:04 PM
dwflo's Avatar
dwflo Offline
Registered User
 
Join Date: Jun 2005
Location: Albuquerque
Age: 64
Posts: 409
NeroLinux 3 does not see my DVD-RW when logged in as user, only device shown is the Image Recorder.
Able to use if logged in as root!!!.
Have installed with SELinux disabled, permissive and enforced, still cant burn as user. Any ideas
__________________
Registered Linux #395226 running Fedora 7 x86_64
"Three men were walking on a wall, Feeling, Faith and Fact.
Feeling took an awful fall and Faith was taken back.
But Fact remained both strong and true and that brought back Faith and Feeling too!"
Reply With Quote
  #18  
Old 15th June 2007, 04:48 PM
leadgolem's Avatar
leadgolem Offline
Registered User
 
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855
Please review the first page of this thread. If the solution there is not effective, please launch nerolinux from a terminal and post any error messages you recieve.
__________________
Only two things are infinite, the universe and human stupidity, and I am not sure about the former. -Albert Einstein-
yum -y --enablerepo=morals install honesty&
remove piratedcontent
S.C.O.U.R.G.E. Heroes of lesser renown, contributor.
Wine Basics Logitech g15 How-To Community made packages.
Reply With Quote
  #19  
Old 15th June 2007, 10:03 PM
dwflo's Avatar
dwflo Offline
Registered User
 
Join Date: Jun 2005
Location: Albuquerque
Age: 64
Posts: 409
Quote:
Originally Posted by leadgolem
Please review the first page of this thread. If the solution there is not effective, please launch nerolinux from a terminal and post any error messages you recieve.
Thanks, the posted fixes seem to work. Adding the code in rc.local did the trick. Now able to use Nero in usermode.

Dave
__________________
Registered Linux #395226 running Fedora 7 x86_64
"Three men were walking on a wall, Feeling, Faith and Fact.
Feeling took an awful fall and Faith was taken back.
But Fact remained both strong and true and that brought back Faith and Feeling too!"
Reply With Quote
  #20  
Old 16th June 2007, 04:01 PM
beertje Offline
Registered User
 
Join Date: Jun 2005
Location: Netherlands
Posts: 10
a more beautiful solution

hi there,

I was having simular issues with Nerolinux and Lightscribe Linux. Although the solution using rc.local does work I think it's better to fix it through Udev. There is one problem and also a bonus:

1 I was unable so far to get it to work as good as the devices Fedora 7 uses for cdrw/dvdrw's:

ls -la /dev/scd*
brw-rw----+ 1 jeroen disk 11, 0 jun 16 16:27 /dev/scd0
brw-rw----+ 1 jeroen disk 11, 1 jun 16 16:27 /dev/scd1

Yes that's right Fedora actually changes things to work just for you! If only I could figure out just how it does this

This is the result of my attempts with udev:

ls -la /dev/sg*
crw------- 1 root root 21, 0 jun 16 16:27 /dev/sg0
crw------- 1 root root 21, 1 jun 16 16:27 /dev/sg1
crw------- 1 root root 21, 2 jun 16 16:27 /dev/sg2
crw-rw---- 1 root disk 21, 3 jun 16 16:27 /dev/sg3
crw-rw---- 1 root disk 21, 4 jun 16 16:27 /dev/sg4
crw------- 1 root root 21, 5 jun 16 16:27 /dev/sg5
crw------- 1 root root 21, 6 jun 16 16:27 /dev/sg6
crw------- 1 root root 21, 7 jun 16 16:27 /dev/sg7
crw------- 1 root root 21, 8 jun 16 16:27 /dev/sg8

I have 2 dvdwriters, apparently these are sg3 and 4 So here's your bonus: by using Udev you only mess with the right device files.

On to the solution. Edit /etc/udev/rules.d/50-udev.rules and add the 'Custom parts' the first ones are already there so you can search for them:

Code:
# rename sr* to scd*
KERNEL=="sr[0-9]*", BUS=="scsi", NAME="scd%n"
KERNEL=="hd*[0-9]", BUS=="ide", ATTRS{removable}=="1", \
        OPTIONS+="ignore_remove"

#Custom Lightscribe
KERNEL=="sr[0-9]*",             SYMLINK+="sr%n"
(this makes Lightscribe software work if you have a Lightscribe drive)

Code:
ACTION=="add", SUBSYSTEM=="scsi" , ATTRS{type}=="1", \
        RUN+="/bin/sh -c 'echo 900 > /sys$$DEVPATH/timeout'"

#Custom Nero
ACTION=="add", KERNEL=="sg[0-9]*", ATTRS{type}=="4|5", GROUP="disk", MODE="660"
Now add your user to the disk group in /etc/group, reboot and you're in bussiness!
__________________
--
jb
Reply With Quote
  #21  
Old 17th June 2007, 05:15 PM
dwflo's Avatar
dwflo Offline
Registered User
 
Join Date: Jun 2005
Location: Albuquerque
Age: 64
Posts: 409
Thank you beertje, your suggestion worked.

Dave
__________________
Registered Linux #395226 running Fedora 7 x86_64
"Three men were walking on a wall, Feeling, Faith and Fact.
Feeling took an awful fall and Faith was taken back.
But Fact remained both strong and true and that brought back Faith and Feeling too!"
Reply With Quote
  #22  
Old 18th June 2007, 03:12 AM
suomaf Offline
Registered User
 
Join Date: Jul 2006
Posts: 71
Hey Beertje, Thanks for the solution, could you clarify on how to add the user to /etc/group.. do you mean your user name or nero? Sorry for the noobish question.
Reply With Quote
  #23  
Old 27th June 2007, 10:13 PM
grujakg Offline
Registered User
 
Join Date: Dec 2006
Posts: 37
Another way for resolving problem

as superuser edit /etc/security/console.perms.d/50-default.perms adding /dev/sg* to <cdrom> definition ie.

Code:
<cdrom>=/dev/cdrom* /dev/cdroms/* /dev/cdwriter* /mnt/cdrom* /dev/sg*
Now after every login you do you'll get ownership of /dev/sg* character devices.

Problem whit this IIRC is that only user that has first login session (console) has owner rights over <cdrom> device class, so I'll suggest if that isn't desktop machine to change owner rights for group and maybe for others ie.

Code:
# permission definitions
...
<console>  0660 <cdrom>      0660 root.disk
...
hope that this will help some one...
Reply With Quote
  #24  
Old 27th June 2007, 10:23 PM
grujakg Offline
Registered User
 
Join Date: Dec 2006
Posts: 37
Quote:
Originally Posted by beertje
...
1 I was unable so far to get it to work as good as the devices Fedora 7 uses for cdrw/dvdrw's:

ls -la /dev/scd*
brw-rw----+ 1 jeroen disk 11, 0 jun 16 16:27 /dev/scd0
brw-rw----+ 1 jeroen disk 11, 1 jun 16 16:27 /dev/scd1

Yes that's right Fedora actually changes things to work just for you! If only I could figure out just how it does this
...
you can set this with security permissions in /etc/security
precisely in console security for devices as I had mentioned in my previous post...
Reply With Quote
Reply

Tags
fedora, nero, problem, rights

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Nero 7 + Burning DVD Image of Fedora 8 jimc52 Installation and Live Media 4 12th November 2007 08:40 PM
k3b and nero problem dvd-r yianni Using Fedora 0 9th October 2007 04:28 PM
User rights problem geometro Using Fedora 2 1st July 2007 04:41 AM
NERO 7 failed iso burn but NERO 6 worked. Scrib Installation and Live Media 0 8th June 2007 12:41 PM
Burn Fedora Core 4 (x86) CDs with Nero 6 shuvorim Installation and Live Media 2 6th July 2005 05:59 AM


Current GMT-time: 07:43 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat