IBM Maximo: Montando um Ambiente de desenvolvimento BIRT em uma Virtual Machine (suporte ao MacOS M1, Qemu, Ubuntu 16)

From Wiki

Follow I have my sequence of steps to create an environment to run Birt Report Designer

(Only for MacOS - M1 Chip)

1) Install UTM, that is a front end to QEMU --> https://mac.getutm.app/

2) Install XQuartz

After install and configure ssh server you can use

ssh -X -P 3022 [email protected]

to run programs

3) Download Ubuntu ISO --> https://mac.getutm.app/gallery/ubuntu-20-04

In my case I download a x86 image

4) Create a VM with the following configuration

The VM is VERY slow because it is using emulation instead of virtualization.
* System
** Architecture: x86_64
** System: Standard PC (Q35 + ICH9,2009) (alias of pc-q35-7.0) (q35)
** Memory: 2048
** CPU: Enable all features supported by the accelerator in the current host (max)
** CPU Cores: 4
** Force Multicore: Enabled

* QEMU
** UEFI Boot: disable

* Network
** Network Mode: Emulated VLAN
** Emulated Network Card: rtl8139
** Port Forwarding: 10.0.2.15:22 -> 127.0.0.1:3022

* Sound: Disabled

Save

5) Install Ubuntu on VM

6) After install

sudo apt update

sudo apt install openssh-server

Install Birt

Install Oracle Java

1) Download Oracle Java jdk-8u202-linux-i586.tar.gz --> https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html

2) Install Java

tar -xzvf jdk-8u202-linux-i586.tar.gz

3) Configure Environment on .bashrc

JAVA_HOME="$HOME/jdk1.8.0_202/jre"
JDK_HOME="$HOME/jdk1.8.0_202"
PATH="$HOME/bin:$HOME/.local/bin:$PATH:$JAVA_HOME/bin"

You must do a logout/login

Install Birt

1) Extract package

tar -xzvf 

2) Run eclipse

cd eclipse

./eclipse

3) Select the workplace location where Eclipse stores your project files and select OK.

Ver também