An error occurred while loading the file. Please try again.
0-installation-basic-first-steps.md 2.87 KiB

Step-by-Step Installation and Set up Guide

Prerequisite: Access to Repos and Documentation

Ensure you have read access to the following repositories:

Prerequisite: Infrastucture Downloads (VirtualBox & Ubuntu 22.04 LTS Desktop)

Download and install the following:


Host Installation

  1. Install VirtualBox.
  2. [Optional] Install VirtualBox Guest Additions for better integration.

Virtual Machine (VM) Installation

  1. Create a new VM in VirtualBox with the following settings:

    1. Minimum settings:
    • CPU: 2 CPUs x 1 Core
    • RAM: 4 GB
    • HDD: 40 GB
    • Network: Default settings
    • ISO Image: Use the downloaded Ubuntu 22.04 LTS Desktop ISO
    1. Recommended developer settings (Personal preference for better performance in multitasking):
    • CPU: 4 CPUs x 1 Core
    • RAM: 8 GB
    • HDD: 60 GB
    • Network: Default settings
    • ISO Image: Use the downloaded Ubuntu 22.04 LTS Desktop ISO
  2. Start the VM and proceed with the installation:

    • Choose Install Ubuntu.
    • Select Minimal Installation.
    • Accept default settings.
    • Create a user (use your initials or a username of choice).

Inside Ubuntu 22.04 LTS Desktop (Minimal Installation Setup)

  1. Update the package list:

    sudo apt update
  2. Install required packages (jdk17 or 21):

    sudo apt install git openjdk-17-jdk maven docker.io docker-compose

    or:

    sudo apt install git openjdk-21-jdk maven docker.io docker-compose
  3. Download and install Eclipse IDE:

    • Download: Eclipse IDE for Java EE Developers
    • Create an Eclipse directory:
      sudo mkdir /opt/eclipse
      sudo chown root:docker /opt/eclipse
    • Unpack the downloaded file:
      sudo tar xvzf ~/Downloads/eclipse-jee-2023-12-R-linux-gtk-x86_64.tar.gz -C /opt/eclipse
    • Create a symbolic link for Eclipse:
      sudo ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse