Skip to content

Instantly share code, notes, and snippets.

View iAmSt0rm's full-sized avatar
🏠
Working from home

Paras Verma iAmSt0rm

🏠
Working from home
  • Tekion
View GitHub Profile
@iAmSt0rm
iAmSt0rm / gist:da66bd2eae46d690fc85b175b0082339
Created October 31, 2021 07:53
Setting up JDK, JVM, JRE Paths on Linux
1. Install Oracle JDK from https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-on-ubuntu-18-04
2. Setup Environment variables using the commands below
```export JAVA_HOME=/usr/lib/jvm/java-<version>-oracle
export JRE_HOME=$JAVA_HOME/jre
export PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin```
@iAmSt0rm
iAmSt0rm / arcmenu_fix.md
Last active November 19, 2020 04:12
Fix Arcmenu Error
@iAmSt0rm
iAmSt0rm / wine_ubuntu_20.04.md
Last active September 1, 2020 08:38
Install Wine on Ubuntu 20.04 Focal Fossa Linux
  1. If your system is 64 bit, enable 32 bit architecture (if you haven't already):

    sudo dpkg --add-architecture i386

  2. Download and add the repository key:

    wget -nc https://dl.winehq.org/wine-builds/winehq.key

    sudo apt-key add winehq.key