-
Notifications
You must be signed in to change notification settings - Fork 53
Downloads And Installation
Java Download | Java Installation | Environment Variables | GlobalQuake |
---|---|---|---|
Windows | Windows | Windows | Download |
Linux | Linux | Linux | Installation |
MacOS | MacOS | MacOS | Running |
Note: If Java is already installed, skip to the GlobalQuake section.
Important: Java is available for two architectures:
x86-64
(commonly referred to asx64
) andarm64
. Most systems usex86-64
. If you encounter errors, ensure you’ve downloaded the version that matches your system's architecture. Recent MacOS devices may usearm64
.
Download Java 17 from the official Oracle site:
Download the x64 Installer or x64 MSI Installer.
Choose a package based on your Linux distribution:
- Debian-based (e.g., Ubuntu): Download the x64 Debian Package.
- RedHat-based (e.g., Fedora): Download the x64 RPM Package.
Download the x64 DMG Installer.
- Download the installer.
- Open the installer and follow the prompts:
- Click Next.
- (Optional) Choose a custom installation directory by creating a folder and selecting it.
- Click Install, and then Close once the installation completes.
- If you used a custom installation path, set up Environment Variables.
For Debian-based distributions (e.g., Ubuntu):
- Open the downloaded .deb file with your package manager.
- Click Install and authenticate if prompted.
- Verify installation in the terminal:
If it shows a version number, the installation was successful. If not, retry.
java -version
For RedHat-based distributions (e.g., Fedora):
- Open the terminal.
- Run:
sudo rpm -i https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.rpm
- Verify installation:
java -version
To enable Java apps, you must set up the Path environment variable.
- Search for Environment Variables in the start menu and select Edit the system environment variables.
- Click Environment Variables.
- Under System Variables, find and edit the Path variable.
- Add the folder path where Java is installed.
- Confirm changes by clicking OK on all windows.
- Visit the GlobalQuake releases page.
- Download the latest
GlobalQuake_x.x.x.jar
file. - If your browser warns that the file may be harmful, confirm the download.
- Move the
.jar
file to your preferred directory. - Organize by creating a dedicated folder, as the app generates additional files.
- Double-click the
.jar
file to run it.
- Open a terminal, navigate to the folder containing the
.jar
, and run:java -jar GlobalQuake_x.x.x.jar
Add memory and performance parameters when launching:
java -jar -Xms4G -Xmx4G -Dsun.java2d.opengl=true GlobalQuake_x.x.x.jar
Tip: Adjust memory (
-Xms
and-Xmx
) as per your system's RAM, ensuring enough remains for the OS.