мануал про подключение usb на виртуалбоксе в храброй цапле?
В поиске есть, известно дело.

На
http://ubuntuforums.org/forumdisplay.php?f=73Есть тема "Show USB pen drive in Virtual Box". Оригинал ссылки отсутствует в сохранённом файле и пускай...
Я слегка поправил, реализовал и Virtual Box 2.0.2 под управлением KUbuntu 8.04 смог гостям предоставлять флешки и ноутбучный сканер отпечатков пальца. Остальное не пробовал.
VB ставил из Сановских репов. Взял адреса репов у них на сайте VB и стандартно добавил.
In Kubuntu Hardy Heron 8.04TLS for VirtualBox 2
Setup USB:
Step1: In Terminal
sudo gedit /etc/init.d/mountdevsubfs.sh
Step 2: Тут всё было как надо, ничего не делал.
Inside - the lines
#
# Magic to make /proc/bus/usb work
#
#mkdir -p /dev/bus/usb/.usbfs
#domount usbfs "" /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644
#ln -s .usbfs/devices /dev/bus/usb/devices
#mount --rbind /dev/bus/usb /proc/bus/usb
Changed to:
# Magic to make /proc/bus/usb work
#
mkdir -p /dev/bus/usb/.usbfs
domount usbfs "" /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644
ln -s .usbfs/devices /dev/bus/usb/devices
mount --rbind /dev/bus/usb /proc/bus/usb
Step 3: Save and Exit.
Step 4: Created a group called "usbfs" and "vboxusers" and added myself to it.
Здесь я добавил: Also myself was added to "dialout" group.
Step 5: In terminal:
sudo gedit /etc/fstab
In file, pasted the following lines, and changed the group ID according to the group ID that was shown for the group "usbfs".
# 1001 is the USB group ID
none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0
Step 6: Save and close file.
Step 7: Не догнал зачем этот и восьмой ход, возможно раньше всё было сложнее чем в версии 2.
In terminal
VBoxManage list usbhost
Step 8: Used the output of above command to set up the filters for USB devices under VirtualBox.
Step 9: In terminal
gksudo gedit /etc/udev/rules.d/40-permissions.rules
Step 10: Вот тут были главные разночтения.
Find line with
SUBSYSTEM=="usb_device"
And near it find and change the line
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", \
MODE="0660", GROUP="dialout"
to
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", \
MODE="0664", GROUP="dialout"
Step 11: Reboot
P.S. Ещё в мануале VB (качать с их сайта) в разделе "Troubleshooting" освещена эта тема. Там есть кой какие дополнительные комментарии.