networking - Linksys wusb6300 not starting after reboot - Ask Ubuntu
i have succesfully installed usb wifi adapter on ubuntu-gnome system. however, when reboot system, doesn't start automatically. have unplug , when plug in, work again. find way let boot pc, don't have un/replug wifi adapter because on of pc.
thanks in advance
niels
based on op's output of lsmod
, lsusb
before unplugging , plugging in adapter after reboot, id of device/driver 8112au
.
to manually initiate device driver, use commands
modprobe -r 8812au modprobe 8812au
finally, automate adding these 3 lines /etc/rc.local
after line reads exit 0
:
modprobe -r 8812au sleep 1 modprobe 8812au
the driver should automatically started on boot.
Comments
Post a Comment