19 lines
757 B
Markdown
19 lines
757 B
Markdown
# Web Admin Setup
|
|
|
|
The below commands will setup ```cockpit``` so you can manage your PiFrame from a web browser. This is wholly optional but can be useful when ssh/serial terminal access aren't available.
|
|
|
|
If you don't want the admin UI you still should install ```NetworkManager``` and ```firewalld``` as the rest of the documentation assumes these are installed.
|
|
|
|
``` sh
|
|
|
|
# Remote management on http://ip:9090
|
|
pacman -S cockpit cockpit-pcp packagekit udisks2 networkmanager firewalld
|
|
systemctl enable --now firewalld
|
|
firewall-cmd --zone=public --permanent --add-port=9090/tcp
|
|
firewall-cmd --zone=public --permanent --add-service=ssh
|
|
firewall-cmd --reload
|
|
systemctl enable --now NetworkManager
|
|
systemctl enable --now cockpit.socket
|
|
|
|
```
|