FAQ: Difference between revisions
From DWIKI
mNo edit summary |
mNo edit summary |
||
Line 12: | Line 12: | ||
mkdir -p ~/.mozilla/plugins | mkdir -p ~/.mozilla/plugins | ||
ln -s /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so ~/plugins/libnpjp2.so | ln -s /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so ~/plugins/libnpjp2.so | ||
=mount.nfs: mount(2): Invalid argument= | |||
Try passing vers=3 or vers=4 |
Latest revision as of 14:12, 27 December 2019
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
icedtea plugin on ubuntu
mkdir -p ~/.mozilla/plugins ln -s /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so ~/plugins/libnpjp2.so
mount.nfs: mount(2): Invalid argument
Try passing vers=3 or vers=4