I installed Virtualbox and had some errors that would not allow it to create a virtual server. I looked up the errors on google and found several places that said to do the things below. After I did that when I restarted Gutsy my sound control on the toolbar was x'd out and it seems my sound device and network device are now missing and it has no sound or ability to connect to the internet. I restored those files I edited back to their original form and restarted but the problem was still there. I uninstalled Virtualbox and that didn't help. I don't know what caused the problem but how can I get those devices back?
and
Basically, in the file /etc/init.d/mountdevsubfs.sh you need to edit the lines:
Code:
#
# 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
to look like this (removing four #'s):
Code:
#
# 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
Code:
#
# 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
to look like this (removing four #'s):
Code:
#
# 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
Sudo edit the file /etc/udev/rules.d/40-permissions.rules, locate the following line:
# USB devices (usbfs replacement)
SUBSYSTEM==”usb_device”, MODE=”0664″
Change the line to:
# USB devices (usbfs replacement)
SUBSYSTEM==”usb_device”, GROUP=”vboxusers”, MODE=”0664″
Shared
# USB devices (usbfs replacement)
SUBSYSTEM==”usb_device”, MODE=”0664″
Change the line to:
# USB devices (usbfs replacement)
SUBSYSTEM==”usb_device”, GROUP=”vboxusers”, MODE=”0664″
Shared
Comment