use markdown
This commit is contained in:
parent
e3fe300cb7
commit
89774af6b1
3 changed files with 16 additions and 14 deletions
32
vm/LXC_README.md
Normal file
32
vm/LXC_README.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Installing pan.do/ra inside LXC
|
||||
|
||||
1) Install lxc on the host (Ubuntu 16.04 or later):
|
||||
|
||||
sudo apt-get install lxc
|
||||
|
||||
2) Create a new container, use different names if installing multiple instances:
|
||||
|
||||
sudo lxc-create -n pandora -t ubuntu -- -r xenial
|
||||
|
||||
3) Install pan.do/ra in container:
|
||||
|
||||
sudo lxc-start -n pandora -d
|
||||
|
||||
4) Attach to container and install pan.do/ra
|
||||
|
||||
sudo lxc-attach -n pandora --clear-env
|
||||
apt-get update -qq && apt-get upgrade -y
|
||||
apt-get -y install curl ca-certificates
|
||||
sed -i s/ubuntu/pandora/g /etc/passwd /etc/shadow /etc/group
|
||||
mv /home/ubuntu /home/pandora
|
||||
echo "pandora:pandora" | chpasswd
|
||||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue