From: Johannes E. <joh...@er...> - 2001-07-15 03:51:23
|
On Sat, Jul 14, 2001, Shaun Jackman <sja...@ho...> wrote: > How do you give a user r/w permission to a USB device accessed through > libusb? Can a specific device be specified, or do you have to give them > generic access to all USB devices? libusb doesn't do that. That's up to the system. With Linux, you can modify the permissions and/or ownership of the device in /proc/bus/usb by hand (using chmod and chown respectively). Or you can change the default permissions and/or ownership by using options when loading the usbcore module. Under the BSD's, you would modify the permissions and/or ownership of the device in /dev JE |