| 45 | |
| 46 | * '''USB on Ubuntu/Intrepid''': Finally, the Ubuntu guys completely removed these lines. So you have to manually add them again: |
| 47 | {{{ |
| 48 | mkdir -p /dev/bus/usb/.usbfs |
| 49 | domount usbfs "" /dev/bus/usb/.usbfs usbfs -obusmode=0700,devmode=0600,listmode=0644 |
| 50 | ln -s .usbfs/devices /dev/bus/usb/devices |
| 51 | mount --rbind /dev/bus/usb /proc/bus/usb |
| 52 | }}} |
| 53 | Note that the udev permissions for the USB devices are still used. For instance, to access a USB disk you have to be member of the group `disk`. Just do |
| 54 | {{{ |
| 55 | /bin/ls -l /proc/bus/usb/*/* |
| 56 | }}} |
| 57 | and check if you have '''write access''' to all desired USB devices. |