Changes

From Amahi Wiki
Jump to: navigation, search
1,387 bytes added ,  04:07, 31 August 2009
no edit summary
== Preventing permissions issues ==
We want to make the scanner RW for a scanner group, that Apache is a member of and has access to. To do this, start by making a new group:<BR>
su -
groupadd -r scanner<BR><BR>
Add apache and root to the new group:<br>
usermod -G scanner apache<br>
usermod -G scanner root<br><br>
Here are Next, we need to tell the system to set the scanner permissions so it uses the new group. <br><br>To do that, we need to know how to identify the scanner. I'm assuming you have a couple of web sites discussing USB scanner; if not, the process is similar, but I'm not sure how to fix permission issues:identify the scanner correctly. <p>
httpWith the scanner plugged in, run the lsusb command. You'll get several lines like this:<br>Bus 001 Device 002: ID 046d://www3c00e Logitech, Inc.sane-projectOptical Mouse<br><br>Look for the one that looks like it's for your scanner, and write down the two numbers next to ID (in this case, if the mouse was actually a scanner, 046d and c00e).org/READMEThe left number is the vendor ID, and the right is the product ID.linux<br><br>
httpGo to /lib/udev.<br>Edit the 50_udev_default.rules file. You're looking for a line like this:<br><br>SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", NAME="bus/usb/$env{BUSNUM}/reactivated.net$env{DEVNUM}", MODE="0644" (might be mode 0664 instead)<br>This says "when a device is plugged into the USB bus, add a device under /dev/bus/usb/writing_udev_rules<BUS NUMBER> called <DEVICE NUMBER>, with permissions owner (root) RW, and everyone else read only".html<br><br>
AlsoAdd a line above that one that says:<br>http:BUS="usb", ATTRS{idVendor}=="<left number from lsusb>", ATTRS{idProduct}=="<right number from lsusb>", NAME="bus/usb/n2.nabble.com$env{BUSNUM}/Automatically-grant-user-permission-to-use-USB-$env{DEVNUM}", MODE="0664", GROUP="scanner-in-F11-x86-64-td3374924.html"<br><br>I'm not sure if that's just Fedora 11This tells the system "If this SPECIFIC USB device is plugged in, make it mode 664 instead of 644, or if and make it applies to 10 as well. I'll keep lookingpart of the scanner group.
54

edits