Taking this back to usb-users. DON'T TAKE TECHNICAL DISCUSSION OFF LIST 
WITHOUT CONSENT.

On Fri, 22 Mar 2002 09:41, Sam Halliday wrote:
> > busuid and/or busgid, plus busmode for the bus nodes
>
> ok sorry, i cant seem to get the nodes right for what i want, i want to set
> teh bus as no wrx for user and group and none for others, usually i try 007
> for this, but it doesnt work here (the first numebr seems to influence the
> other members!)
> eg.
> 070=d---rwx---
> 700=d-w-rwxr--
> 007=d------rwx
>
> im confused!
Read man mount some more.

> i want
> drwxrwx---
> what should i use?
Its an octal bit pattern: 0770
The 0 at the start means "treat this as octal"

[bradh@localhost bradh]$ ls -l /proc/bus/usb
total 0
dr-xr-xr-x    1 root     root            0 Mar 22 10:26 001
-r--r--r--    1 root     root            0 Mar 22 10:26 devices
-r--r--r--    1 root     root            0 Mar 22 10:26 drivers
[bradh@localhost bradh]$ su
Password:
[root@localhost bradh]# umount /proc/bus/usb
[root@localhost bradh]# mount -t usbdevfs none /proc/bus/usb -o busmode=0770
[root@localhost bradh]# ls -l /proc/bus/usb/
total 0
drwxrwx---    1 root     root            0 Mar 22 11:20 001
-r--r--r--    1 root     root            0 Mar 22 11:20 devices
-r--r--r--    1 root     root            0 Mar 22 11:20 drivers

_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-users

Reply via email to