Prework
apt-get update && apt-get dist-upgrade
Node.js
For this particular installation node 16 is needed to be installed. Lets install-
Add NodeSource PPA
This command will add PPA sources required to be able to install NodeJS 16 on your Ubuntu 20.04 installation:
curl -s https://deb.nodesource.com/setup_16.x | sudo bash
Install NodeJS 16
Now that the PPA source has been added, we can install NodeJS 16 on our Ubuntu 20.04 installation. Run the following command:
sudo apt install nodejs -y
Tip: The -y flag means we’re not prompted to confirm our choices. Continue reading “Install Xen Orchestra on Ubuntu 20” »