This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
esxi:cyberpower_powerpanel_business [2022/08/08 19:04] derek created |
esxi:cyberpower_powerpanel_business [2024/09/22 19:51] (current) |
||
|---|---|---|---|
| Line 32: | Line 32: | ||
| * Power on the Cyberpower VM | * Power on the Cyberpower VM | ||
| * Add '' | * Add '' | ||
| + | |||
| + | ===Pre-Config=== | ||
| + | Extra things to be set in the command line before setting up PowerPanel. | ||
| + | |||
| + | One issue with PowerPanel is that it constantly writes to ''/ | ||
| + | |||
| + | * Connect to '' | ||
| + | <code bash> | ||
| + | # Change the default password: | ||
| + | passwd | ||
| + | |||
| + | # Change the time zone to the one the server is in: | ||
| + | # Find your time zone using: | ||
| + | timedatectl list-timezones | ||
| + | # Then set it with: | ||
| + | sudo timedatectl set-timezone Australia/ | ||
| + | |||
| + | # Set the hostname: | ||
| + | sudo hostnamectl set-hostname Cyberpower-PPB | ||
| + | |||
| + | # Make sure the system is up to date | ||
| + | sudo apt update && sudo apt upgrade | ||
| + | |||
| + | # Install Anything-sync-daemon | ||
| + | sudo apt install make pv zstd | ||
| + | git clone https:// | ||
| + | cd /tmp/asd | ||
| + | sudo make install-systemd-all | ||
| + | cd / | ||
| + | rm -R /tmp/asd | ||
| + | sudo nano / | ||
| + | # Edit the following lines: | ||
| + | WHATTOSYNC=() | ||
| + | # | ||
| + | # | ||
| + | # into: | ||
| + | WHATTOSYNC=('/ | ||
| + | VOLATILE="/ | ||
| + | USE_OVERLAYFS=" | ||
| + | # Write out the file and exit | ||
| + | # Check to see if configured properly | ||
| + | sudo asd p | ||
| + | # Enable to run at startup | ||
| + | sudo systemctl enable asd.service | ||
| + | |||
| + | sudo reboot 0 | ||
| + | </ | ||
| ===Configuration=== | ===Configuration=== | ||
| Line 42: | Line 89: | ||
| * Sign in again with the new details | * Sign in again with the new details | ||
| * '' | * '' | ||
| + | * '' | ||
| + | * Enable '' | ||
| + | * Change the default '' | ||
| + | * Click '' | ||
| * '' | * '' | ||
| * '' | * '' | ||
| Line 85: | Line 136: | ||
| ====Update==== | ====Update==== | ||
| - | * FIXME: Not sure about updates? | + | * Using SSH, connect to '' |
| - | * Include in the [[page> | + | * Run '' |
| + | * Visit [[http:// | ||
| + | * Go to the '' | ||
| ====Sources==== | ====Sources==== | ||
| * https:// | * https:// | ||
| + | ====Notes==== | ||
| + | * Maybe try integrating into Home Assistant: https:// | ||