Update pivilion manual setup

j3d1n4 2019-01-23 14:57:26 +00:00
parent 76d455da90
commit 88c604f940

@ -77,7 +77,7 @@ Select finish and reboot.
SSH back into your RPi
Now that you've gained access to your RPi you can continue installing packages or skip to lazy mode if you really don't care for learning about the components needed to run a hidden service on Tor. :).
Now that you've gained access to your RPi you can continue installing packages (or skip to lazy mode if you really don't care to learn about the components needed to run a hidden service on Tor). :).
If so, skip [here](#lazy-mode).
@ -242,8 +242,8 @@ This should show the same lighttpd placeholder page as before.
That's it - everything should be working now!
### Lazy mode
If you don't feel like learning about the various components used to build a Tor hidden service, you can just use lazy mode to skip everything.
All you need to do is paste this into your terminal and hit Enter. It will take a couple of minutes to finish.
If you don't feel like learning about the various components used to build a Tor hidden service, you can just use lazy mode to bundle up individual installations.
All you need to do is paste the following line into your terminal and hit Enter. It will take a couple of minutes to finish.
`sudo apt update; sudo apt upgrade -y; sudo apt install lighttpd php-cgi hostapd dnsmasq git tor -y; sudo lighty-enable-mod fastcgi; sudo lighty-enable-mod fastcgi-php; sudo service lighttpd force-reload; cd /; sudo git init; sudo git remote add origin https://gitlab.com/hacklab01/pivilion.git; sudo git fetch origin; sudo git checkout -f --track origin/master; sudo chown -R pi:pi /home/pi; sudo chown -R www-data:www-data /var/www/; sudo chmod -R 775 /var/www; sudo usermod -a -G www-data pi; sudo reboot`