diff --git a/README.md b/README.md index 40cf23f0..d387011a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ We recommend to run pan.do/ra inside of LXD or LXC or dedicated VM or server. You will need at least 2GB of free disk space - pan.do/ra is known to work with Debian/12 (bookworm) and Ubuntu 22.04, + pan.do/ra is known to work with Debian/12 (bookworm) and Ubuntu 20.04, other distributions might also work, let us know if it works for you. Use the following commands as root to install pan.do/ra and all dependencies: diff --git a/pandora/archive/models.py b/pandora/archive/models.py index 476de4c4..4bbd5da1 100644 --- a/pandora/archive/models.py +++ b/pandora/archive/models.py @@ -507,7 +507,7 @@ class File(models.Model): self.item.groups.filter(id__in=user.groups.all()).count() > 0 if 'instances' in data and 'filename' in self.info and self.data: data['instances'].append({ - 'ignore': not self.selected, + 'ignore': False, 'path': self.info['filename'], 'user': self.item.user.username if self.item and self.item.user else 'system', 'volume': 'Direct Upload' diff --git a/static/mobile/css/style.css b/static/mobile/css/style.css index f95bd7ab..aaf5a6ee 100644 --- a/static/mobile/css/style.css +++ b/static/mobile/css/style.css @@ -22,10 +22,6 @@ body { outline: none; } -i, em { - font-style: italic; -} - a { color: var(--fg) } diff --git a/vm/LXC_README.md b/vm/LXC_README.md new file mode 100644 index 00000000..edc5110c --- /dev/null +++ b/vm/LXC_README.md @@ -0,0 +1,46 @@ +# Preparations + + you will need at least 2GB of free disk space to install pan.do/ra + +# Installing pan.do/ra inside LXC + +1) Install lxc on the host (Ubuntu 18.04): + + sudo apt-get install lxc + +1.1) On Debian you have to configure the a network for LXC before creating a container + + Simplest setup is this one here: + https://wiki.debian.org/LXC/SimpleBridge#Using_lxc-net + +2) Create a new container, use different names if installing multiple instances: + + sudo lxc-create -n pandora -t ubuntu-cloud -- -r focal + + or + + sudo lxc-create -n pandora -t debian -- -r bullseye + +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 + 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 + apt-get update -qq && apt-get upgrade -y + apt-get -y install curl ca-certificates + 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 + export BRANCH=stable # or master + ./pandora_install.sh 2>&1 | tee pandora_install.log + diff --git a/vm/INCUS_README.md b/vm/LXD_README.md similarity index 61% rename from vm/INCUS_README.md rename to vm/LXD_README.md index c5dc37f0..9aa78a25 100644 --- a/vm/INCUS_README.md +++ b/vm/LXD_README.md @@ -2,21 +2,28 @@ you will need at least 2GB of free disk space to install pan.do/ra -# Installing pan.do/ra inside Incus +# Installing pan.do/ra inside LXD -1) Install incus on the host (Debian/12 with backports): +1) Install lxd on the host (Ubuntu 18.04 or later, Debian/10): - sudo apt install incus + sudo snap install lxd 2) Create a new container, use different names if installing multiple instances: - sudo incus launch images:debian/12 pandora + sudo lxc launch ubuntu:20.04 pandora + + or + + sudo lxc launch images:debian/10 pandora 3) Attach to container and install pan.do/ra - sudo incus exec pandora bash + sudo lxc exec pandora bash 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