Java Installation Files
Java Installation Files
Step Fill in the Online Application Form and note down system generated Application Number The cand
1:
should supply all the details while filling the Online Application Form and also required to choose
PASSWORD and Security Question and enter his/her Answer. After successful submission of the data,
Application number will be generated and it will be used to complete the remaining Steps of the Applic
Form and also required for all future correspondence. For subsequent logins, candidate will be able to l
directly with his/her respective system generated Application Number and chosen Password.
Step Upload Scanned Images of Photograph and Signature:
2:
The scanned images of photograph and Signature should be in jpg/jpeg format only.
Size of the photo image must be greater than 4 kb and less than 40 kb.
Size of the signature image must be greater than 1 kb and less than 30 kb.
Dimension of photograph image should be 3.5 cm(width) x 4.5 cm(Height) only.
Dimension of signature image should be 3.5 cm(length) x 1.5 cm(Height) only.
NOTE : The Candidate will be able to modify/correct the particulars before the payment of fees. Once
payment of fee has been made / e-Challan downloaded, candidate particulars cannot be edited.
Payment by Debit/Credit Card:The candidate has to select Debit/Credit Card option to pay the applic
fee and follow the online instruction to complete the payment of fee. After successful payment, candida
will be able to print the Confirmation Page.
Step
Download the Confirmation Page:
4:
The Candidate should take print of Confirmation Page and keep it for future reference. The Confirmatio
Page should not be sent to CBSE.
I have download Information Bulletin and read all the instructions.
1. Before installing Java, make sure to first verify the version of installed Java.
#javaversion
javaversion"1.7.0_75"
OpenJDKRuntimeEnvironment(IcedTea2.5.4)(7u752.5.42)
OpenJDK64BitServerVM(build24.75b04,mixedmode)
Its clear from the output above that the installed version of Java is OpenJDK
1.7.0_75.
2. Make a directory where you want to install Java. For global access (for all
users) install it preferably in the directory /opt/java.
#mkdir/opt/java&&cd/opt/java
3. Now its time to download Java (JDK) 8u45 source tarball files for your
system architecture by going to official Java download page.
For reference, we have provided the source tarball file-names, please select
and download these below mentioned files only.
jdk8u45linuxi586.tar.gz
jdk8u45linuxx64.tar.gz
[For32-bitSystems]
[For64-bitSystems]
Alternatively, you may use wget command to download files directly into
the /opt/java directory as shown below.
For32-bitSystems
#cd/opt/java
#wgetnocookiesnocheckcertificateheader"Cookie:gpw_e24=http%3A
%2F%2Fwww.oracle.com%2F;oraclelicense=acceptsecurebackupcookie"
"http://download.oracle.com/otnpub/java/jdk/8u45b14/jdk8u45linux
i586.tar.gz"
For64-bitSystems
#cd/opt/java
#wgetnocookiesnocheckcertificateheader"Cookie:gpw_e24=http%3A
%2F%2Fwww.oracle.com%2F;oraclelicense=acceptsecurebackupcookie"
"http://download.oracle.com/otnpub/java/jdk/8u45b14/jdk8u45linux
x64.tar.gz"
4. Once file has been downloaded, you may extract the tarball using tar
command as shown below.
#tarzxvfjdk8u45linuxi586.tar.gz
#tarzxvfjdk8u45linuxx64.tar.gz
[For32-bitSystems]
[For64-bitSystems]
Note: I have used 64-bit tarball throughout the tutorial. If you are using 32bit, you may change it accordingly.
5. Next, move to the extracted directory and use command update
alternatives to tell system where java and its executables are installed.
#cdjdk1.8.0_45/
#updatealternativesinstall/usr/bin/javajava
/opt/java/jdk1.8.0_45/bin/java100
#updatealternativesconfigjava
#updatealternativesinstall/usr/bin/javacjavac
/opt/java/jdk1.8.0_45/bin/javac100
#updatealternativesconfigjavac
#updatealternativesinstall/usr/bin/jarjar/opt/java/jdk1.8.0_45/bin/jar
100
#updatealternativesconfigjar
#exportJAVA_HOME=/opt/java/jdk1.8.0_45/
#exportJRE_HOME=/opt/java/jdk1.8.0._45/jre
#exportPATH=$PATH:/opt/java/jdk1.8.0_45/bin:/opt/java/jdk1.8.0_45/jre/bin
#javaversion
javaversion"1.8.0_45"
Java(TM)SERuntimeEnvironment(build1.8.0_45b14)
JavaHotSpot(TM)64BitServerVM(build25.45b02,mixedmode)
#aptgetremoveopenjdk*