pandora/vm/INCUS_README.md

29 lines
821 B
Markdown
Raw Normal View History

2019-07-06 10:52:01 +02:00
# Preparations
you will need at least 2GB of free disk space to install pan.do/ra
# Installing pan.do/ra inside Incus
2019-07-06 10:52:01 +02:00
1) Install incus on the host (Debian/12 with backports):
2019-07-06 10:52:01 +02:00
sudo apt install incus
2019-07-06 10:52:01 +02:00
2) Create a new container, use different names if installing multiple instances:
sudo incus launch images:debian/12 pandora
2019-07-06 10:52:01 +02:00
3) Attach to container and install pan.do/ra
sudo incus exec pandora bash
2019-07-06 10:52:01 +02:00
apt-get update -qq && apt-get upgrade -y
apt-get -y install curl ca-certificates
echo PasswordAuthentication no >> /etc/ssh/sshd_config
locale-gen en_US.UTF-8
update-locale LANG=en_US.UTF-8
export LANG=en_US.UTF-8
cd /root
curl -sL https://pan.do/ra-install > pandora_install.sh
chmod +x pandora_install.sh
./pandora_install.sh 2>&1 | tee pandora_install.log