Last active
January 17, 2023 14:35
-
-
Save pweinzettel/19faf8bcfd39ac38e986adb8e52a682d to your computer and use it in GitHub Desktop.
Install Oracle SQL developer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download Oracle SQL developer "Other Platforms" from https://www.oracle.com/tools/downloads/sqldev-downloads.html | |
# Check java version and required version on download page | |
java --version | |
# If java is missing, install with | |
apt-get install default-jre | |
# Unzip SQL Developer into /opt/ | |
unzip sqldeveloper-*-no-jre.zip -d /opt/ | |
# Create Desktop Entry | |
cat << EOF > ~/.local/share/applications/sqldeveloper.desktop | |
[Desktop Entry] | |
Type=Application | |
Name=Oracle SQL Developer | |
Exec=/opt/sqldeveloper/sqldeveloper.sh | |
Icon=/opt/sqldeveloper/icon.png | |
Terminal=false | |
EOF | |
# Download Oracle JDBC from https://www.oracle.com/ar/database/technologies/appdev/jdbc-downloads.html | |
# Or use /opt/sqldeveloper/sqldeveloper/lib/ojdbc11.jar if you have Oracle SQL Developer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment