Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get -f install
sudo update-java-alternatives -s java-8-oracle

The Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files are required for unlimited strength encryption used in SDCCT. They should already come with the oracle-java8-installer, but if not, run the following command:

Code Block
languagebash
sudo apt-get install oracle-java8-unlimited-jce-policy

 

To set the JAVA_HOME environment variable for the installed JDK:

Code Block
languagebash
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
echo "export JAVA_HOME=$JAVA_HOME" | sudo tee -a /etc/environment

 

To obtain the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files required for unlimited strength encryption used in SDCCT, run either of the following sets of commands:

Code Block
languagebash
sudo apt-get install oracle-java8-unlimited-jce-policy


Git CLI

Run the following:

...