1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-08-02 20:35:26 +02:00

work in progress

This commit is contained in:
dbarzin 2022-06-30 10:32:30 +02:00
parent a30aa59b19
commit 540f912c62
3 changed files with 15 additions and 4 deletions

View file

@ -1,4 +1,6 @@
#/usr/bin/bash -e
# Install procedure for Pandora-Box
set -e
cd ..
@ -83,7 +85,7 @@ sudo mkdir /var/quarantine
sudo chown $USER /var/quarantine
# Mouse terminal
sudo apt install gpm imagemagick pmount
sudo apt install imagemagick pmount
# Suppress all messages from the kernel (and its drivers) except panic messages from appearing on the console.
echo "kernel.printk = 3 4 1 3" | sudo tee -a /etc/sysctl.conf
@ -91,6 +93,10 @@ echo "kernel.printk = 3 4 1 3" | sudo tee -a /etc/sysctl.conf
# allow write to /dev/fb0
sudo usermod -a -G video $USER
# allow read mouse input
sudo usermod -a -G input $USER
# Start Poetry
echo "cd /home/$USER/pandora" >> /etc/rc.local
echo "poetry run update --yes" >> /etc/rc.local