An error occurred while loading the file. Please try again.
-
Bao authoredbe64a54e
Step-by-Step Installation and Set up Guide
Prerequisite: Access to Repos and Documentation
Ensure you have read access to the following repositories:
- CoTA Frontend: Frontend GitLab Repo
- CoTA Backend: Backend GitLab Repo
- CoTA Test Runner JDK17: Test Runner GitLab Repo (JDK17)
- CoTA Test Runner JDK21: Test Runner GitLab Repo (JDK21)
Prerequisite: Infrastucture Downloads (VirtualBox & Ubuntu 22.04 LTS Desktop)
Download and install the following:
Host Installation
- Install VirtualBox.
- [Optional] Install VirtualBox Guest Additions for better integration.
Virtual Machine (VM) Installation
-
Create a new VM in VirtualBox with the following settings:
- 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
- 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
-
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).
- Choose
Inside Ubuntu 22.04 LTS Desktop (Minimal Installation Setup)
-
Update the package list:
sudo apt update
-
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
-
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