linux
Java Commands
Check java version & installed jdk
java --version
update-alternatives --config java
Install downloaded jdk
dpkg -i jdk-24_linux-x64_bin.deb
Run burploader
java -jar [Link]
Golang Commands
Installation Commands
rm -rf /usr/local/go && tar -C /usr/local -xzf [Link]
Shell command for adding go path and apply changes
mousepad .zshrc
source .zshrc
mousepad .profile
source .profile
Add Go Path
export GOPATH=$HOME/go
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin