Skip to content

Instantly share code, notes, and snippets.

@raelga
Last active December 26, 2015 20:48
Show Gist options
  • Save raelga/7211025 to your computer and use it in GitHub Desktop.
Save raelga/7211025 to your computer and use it in GitHub Desktop.
Java
for i in `find /usr/lib/jvm/last-jdk/bin/`;
do
b=`basename $i`;
update-alternatives --remove $b $i;
update-alternatives --install /usr/bin/$b $b $i 90000;
update-alternatives --set java $i;
done
unlink /opt/google/chrome/plugins/libnpjp2.so
unlink /usr/lib/mozilla/plugins/libnpjp2.so
ln -s /usr/lib/jvm/last-jdk/jre/lib/amd64/libnpjp2.so /opt/google/chrome/plugins/libnpjp2.so
ln -s /usr/lib/jvm/last-jdk/jre/lib/amd64/libnpjp2.so /usr/lib/mozilla/plugins/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment