I am getting an error when running the installation script from Enhance.
Error is:
E: Unable to locate package appcd
I have made sure the VM instance(from Azure) has below configurations:
Ubuntu 22.04 LTS server
A minimum of 4GB RAM and 40GB storage
x86_64/amd64 architecture
I have also ran these commands as root user before running the installation script to make sure the server is ready for this installation:
sudo apt update
sudo apt upgrade -y
sudo apt install -y curl wget software-properties-common apt-transport-https ca-certificates gnupg lsb-release
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo systemctl enable docker
systemctl enable docker
Anything I am missing?