Download JDK's from https://jdk.java.net/
- open .bashrc file in preferred editor - $ xed ~/.bashrc & paste the below code
- export JAVA_HOME=/usr/lib/jvm/jdk-17.0.2
- export PATH=$PATH:$JAVA_HOME/bin
- Final Command :
$ sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk-17.0.2/bin/java" 1
$ sudo update-alternatives --set java /home/sbala/Documents/Tools/jdk-17/bin/java
Source : https://community.linuxmint.com/tutorial/view/1372
syndicate@syndicate-H610M-H-DDR4 / $ java -version
openjdk version "17.0.2" 2022-01-18
OpenJDK Runtime Environment (build 17.0.2+8-86)
OpenJDK 64-Bit Server VM (build 17.0.2+8-86, mixed mode, sharing)
- export PATH=$PATH:/opt/gradle/gradle-8.2.1/bin
syndicate@syndicate-H610M-H-DDR4:~$ gradle -v
------------------------------------------------------------
Gradle 8.2.1
------------------------------------------------------------
Build time: 2023-07-10 12:12:35 UTC
Revision: a38ec64d3c4612da9083cc506a1ccb212afeecaa
Kotlin: 1.8.20
Groovy: 3.0.17
Ant: Apache Ant(TM) version 1.10.13 compiled on January 4 2023
JVM: 17.0.2 (Oracle Corporation 17.0.2+8-86)
OS: Linux 5.15.0-78-generic amd64
Download NODE Binary from https://nodejs.org/en/download
- Set the path export PATH=$PATH:/opt/node/node-v18.17.0-linux-x64/bin and you are good to go.
syndicate@syndicate-H610M-H-DDR4:~$ npm -v
9.6.7
syndicate@syndicate-H610M-H-DDR4:~$ node -v
v18.17.0
Create a file - sudo xed /usr/share/applications/STS.desktop
[Desktop Entry]
Name=SpringSource Tool Suite
Comment=SpringSource Tool Suite
Exec=~/springsource/sts-3.4.0-RELEASE/STS
Icon=~/springsource/sts-3.4.0-RELEASE/icon.xpm
StartupNotify=true
Terminal=false
Type=Application
Categories=Development;IDE;Java;
- URL : https://github.com/Gogh-Co/Gogh
- https://gogh-co.github.io/Gogh/
- https://askubuntu.com/questions/881949/ugly-color-for-directories-in-gnome-terminal
- https://www.cyberciti.biz/open-source/bat-linux-command-a-cat-clone-with-written-in-rust/
$ sudo apt install bat
- Update alias in .bashrc -
alias cat="batcat"