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

How to Install JBoss Forge on Ubuntu 22.04

July 31, 2022 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading JBoss Forge

    Download the Latest JBoss Forge Release

    Here JBoss Forge .zip
    Link to Download the Latest JBoss Forge Release for Linux Ubuntu
  2. 3. Extracting JBoss Forge

    Extract JBoss Forge into /tmp
    Double-Click on JBoss Forge archive.

    Quick-Start JBoss Forge Ubuntu - Extraction
    Or from Command Line:

    Copy
    unzip -d /tmp/ ~/Downloads/forge-distribution*.zip
  3. 4. Installing JBoss Forge

    Relocate JBoss Forge.

    Copy
    sudo su -c "rm /tmp/forge-distribution*.zip"
    Copy
    sudo su -c "mv /tmp/forge-distribution* /opt/forge-distribution"

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

  4. Set Up FORGE_HOME Env Var and PATH
    Edit your .bashrc file:

    Copy
    nano $HOME/.bashrc

    Append:

    Copy
    export FORGE_HOME=/opt/forge-distribution
    export PATH=$PATH:$FORGE_HOME/bin  
    

    Ctrl+x to Save & Exit from nano editor :)
    Then to Load the new Environment:

    Copy
    bash
  5. 5. Installing Java

    How to Install Required Oracle Java JDK on Ubuntu

    Here Oracle JDK Installation for Ubuntu
    Oracle Java JDK Setup on GNU/Linux Ubuntu Distro

Contents