Skip to content

Instantly share code, notes, and snippets.

@yashk
Last active August 29, 2015 13:58
Show Gist options
  • Save yashk/10103979 to your computer and use it in GitHub Desktop.
Save yashk/10103979 to your computer and use it in GitHub Desktop.
Install Juniper netconnect on 64 bit ubuntu
0.install 32 bit libraries on ubuntu
sudo apt-get update
sudo apt-get install libstdc++6:i386 lib32z1 lib32ncurses5 lib32bz2-1.0 libxext6:i386 libxrender1:i386 libxtst6:i386 libxi6:i386
1.Install 32 bit chrome
2.Install 32 bit jre
sudo mkdir -p -v /opt/java/jre/32
19 tar -zvxf jre-7u51-linux-i586.tar.gz
20 sudo mkdir -p -v /opt/java/jre/32
21 sudo mv jre1.7.0_51 /opt/java/jre/32/
22 sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/jre/32/jre1.7.0_51/bin/java" 1
23 java -version
24 sudo update-alternatives --set java /opt/java/jre/32/jre1.7.0_51/bin/java
3.configure 32 jre applet plugin into 32 bit chrome.
24 mkdir /opt/google/chrome/plugins
25 sudo mkdir /opt/google/chrome/plugins
26 cd /opt/google/chrome/plugins
27 ls
28 java
29 java -version
30 ln -s /opt/java/jre/32/jre1.7.0_51/lib/i386/libnpjp2.so .
31 sudo ln -s /opt/java/jre/32/jre1.7.0_51/lib/i386/libnpjp2.so .
4.check if java is working on browser.
5.Add remote-connect.com to site list via java controle panel.
32 ls
33 cd /opt/java/jre/32/jre1.7.0_51/
./ControlPanel
![](https://raw.githubusercontent.com/yashk/images/master/java_control_panel.png)
6.Enable java console.
7. enable password for root user
sudo passwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment