FAQ

From DWIKI
Revision as of 10:05, 14 June 2016 by Tony (talk | contribs) (Created page with "FAQ for things i can't find category for =slow mouse/keyboard on Latitude= I ran into problem of very choppy/slow mouse and keyboard on a Dell Latitude, and found solution at...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FAQ for things i can't find category for

slow mouse/keyboard on Latitude

I ran into problem of very choppy/slow mouse and keyboard on a Dell Latitude, and found solution at https://iniy.org/?p=419&cpage=1#comment-46977

and wrote a oneliner that will reset the right drivers:

lspci | grep -i usb| awk '{ print $1 }' | while read ID;do ID="0000:$ID";DR=`find /sys/bus/pci/drivers/ -name $ID`;P=${DR%%$ID};echo -n $ID > $P/unbind;echo -n $ID > $P/bind;done