$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Intellij Oracle Linux 9 Installation – Step-by-step

February 11, 2023 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading IntelliJ IDEA

    Download Latest IntelliJ IDEA for Oracle Linux

    Here IntelliJ IDEA 2024 tar.gz Linux
    Link to Download the Latest IntelliJ IDEA 2024 for Linux
  2. 3. Extracting IntelliJ IDEA

    Next IntelliJ IDEA Contents into /tmp
    Possibly Double-Click/Right-Click and Open with Archive Manager:
    How to Install IntelliJ IDEA on Oracle Linux 9 - Extraction
    Or from Shell with a Command like:

    Copy
    tar xvzf ~/Downloads/idea*.tar.gz -C /tmp/
  3. 4. Relocating IntelliJ IDEA

    Then Relocate IntelliJ Idea Folder:

    First, Set the root superUser as owner:

    Copy
    sudo chown -R root:root /tmp/idea*

    If Got “User is Not in Sudoers file” then see: How to Enable sudo
    And then Switch the IntelliJ IDEA contents:

    Copy
    sudo mv /tmp/idea* /opt/idea
  4. 5. Making an IntelliJ IDEA Symlink

    Moreover, Make a Symlink into the working Path:

    Copy
    sudo ln -s /opt/idea/bin/idea.sh /usr/local/bin/idea.sh
  5. 6. Oracle Java Development Kit Installation

    How to Install Required Oracle Java SE JDK for Oracle Linux

    Here Oracle JDK Linux Installation Guide
    How to Install Oracle-Sun Java Development Kit on Oracle Linux

Contents