mirror of
https://gitlab.com/hacklab01/pivilion.git
synced 2025-04-30 00:57:16 +00:00
Update pivilion manual setup
parent
03585ef5c7
commit
e3283dab2b
@ -82,13 +82,13 @@ Check used and available storage with
|
|||||||
|
|
||||||
### Upgrade your system
|
### Upgrade your system
|
||||||
|
|
||||||
`sudo apt update && sudo apt upgrade`
|
`sudo apt update && sudo apt upgrade -y`
|
||||||
|
|
||||||
### Install Lighttpd
|
### Install Lighttpd
|
||||||
|
|
||||||
Lighttpd (pronounced "lighty") is an open-source web server optimized for speed-critical environments while remaining standards-compliant, secure and flexible.
|
Lighttpd (pronounced "lighty") is an open-source web server optimized for speed-critical environments while remaining standards-compliant, secure and flexible.
|
||||||
|
|
||||||
`sudo apt install lighttpd`
|
`sudo apt install lighttpd -y`
|
||||||
|
|
||||||
You can now navigate to your Rpi's IP (or hostname - raspberry) using a browser.
|
You can now navigate to your Rpi's IP (or hostname - raspberry) using a browser.
|
||||||
|
|
||||||
@ -96,7 +96,7 @@ You will see lighttpd's placeholder page.
|
|||||||
|
|
||||||
### Install PHP and modules
|
### Install PHP and modules
|
||||||
|
|
||||||
`sudo apt install php-cgi`
|
`sudo apt install php-cgi -y`
|
||||||
|
|
||||||
PHP (Hypertext Preprocessor) is a server-side scripting language designed primarily for (but not limited to) web development. We use it to run our basic gallery generation script.
|
PHP (Hypertext Preprocessor) is a server-side scripting language designed primarily for (but not limited to) web development. We use it to run our basic gallery generation script.
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ Apt will install all required dependencies.
|
|||||||
|
|
||||||
Enable the fastcgi module and the php configuration with
|
Enable the fastcgi module and the php configuration with
|
||||||
|
|
||||||
`sudo lighty-enable-mod fastcgi `
|
`sudo lighty-enable-mod fastcgi`
|
||||||
|
|
||||||
`sudo lighty-enable-mod fastcgi-php`
|
`sudo lighty-enable-mod fastcgi-php`
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ Reload the lighttpd daemon
|
|||||||
|
|
||||||
### Install Hostapd
|
### Install Hostapd
|
||||||
|
|
||||||
`sudo apt install hostapd`
|
`sudo apt install hostapd -y`
|
||||||
|
|
||||||
Hostapd (Host access point daemon) is a user space software access point capable of turning normal network interface cards into access points and authentication servers. We use it, in conjuction with dnsmaq, to turn the Rpi into a Wifi access point.
|
Hostapd (Host access point daemon) is a user space software access point capable of turning normal network interface cards into access points and authentication servers. We use it, in conjuction with dnsmaq, to turn the Rpi into a Wifi access point.
|
||||||
|
|
||||||
@ -127,19 +127,19 @@ These can be edited in /etc/hostapd/hostapd.conf. Do this after pulling from git
|
|||||||
|
|
||||||
### Install Dnsmasq
|
### Install Dnsmasq
|
||||||
|
|
||||||
`sudo apt install dnsmasq`
|
`sudo apt install dnsmasq .y`
|
||||||
|
|
||||||
Dnsmasq is a Domain Name System (DNS) forwarder and Dynamic Host Configuration Protocol (DHCP) server for small computer networks. We use it to provide the clients connected to our access point with IP addresses.
|
Dnsmasq is a Domain Name System (DNS) forwarder and Dynamic Host Configuration Protocol (DHCP) server for small computer networks. We use it to provide the clients connected to our access point with IP addresses.
|
||||||
|
|
||||||
### Install git
|
### Install git
|
||||||
|
|
||||||
`sudo apt install git`
|
`sudo apt install git -y`
|
||||||
|
|
||||||
Git (/ɡɪt/) is a version control system (VCS) that is used for software development and other version control tasks. We use it download settings and scripts from our GitLab repository.
|
Git (/ɡɪt/) is a version control system (VCS) that is used for software development and other version control tasks. We use it download settings and scripts from our GitLab repository.
|
||||||
|
|
||||||
### Install Tor
|
### Install Tor
|
||||||
|
|
||||||
`sudo apt install tor`
|
`sudo apt install tor -y`
|
||||||
|
|
||||||
You can now choose to either pull the Pivilion scripts and Tor / Rpi configuration or make the next step [manually](#configuring-tor) and make your own custom Tor hidden service.
|
You can now choose to either pull the Pivilion scripts and Tor / Rpi configuration or make the next step [manually](#configuring-tor) and make your own custom Tor hidden service.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user