https://github.com/ahmedalyelghannam/java_playground
https://github.com/ahmedalyelghannam/java_playground
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahmedalyelghannam/java_playground
- Owner: AhmedAlyElGhannam
- Created: 2025-02-23T09:31:41.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-19T22:44:16.000Z (9 months ago)
- Last Synced: 2025-03-19T23:29:42.541Z (9 months ago)
- Language: Java
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java_Playground
## Installing Oracle JDK-8 on Linux
1. Extract the included `.tar.gz`
1. Update your `PATH` variable in `.bashrc`.
```bash
PATH="path-to-jdk-bin-dir:$PATH"
```
1. Source `.bashrc`.
1. Install deez libraries to make applets work.
```bash
sudo apt-get install libx11-6:i386
sudo apt-get install libstdc++5:i386
sudo apt-get install libxrender1:i386 libxtst6:i386 libxi6:i386
```
1. Profit!