Last active
January 10, 2023 05:14
-
-
Save openhoangnc/f8f9478ebf39c6e42e2ce17b0a8f396e to your computer and use it in GitHub Desktop.
Update AdGuardHome Linux Arm64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -L -S -o '/tmp/AdGuardHome_linux.tar.gz' -s 'https://static.adguard.com/adguardhome/release/AdGuardHome_linux_arm64.tar.gz' | |
| tar -C /tmp/ -f /tmp/AdGuardHome_linux.tar.gz -x -v -z | |
| mkdir -p ~/my-agh-backup | |
| cd /opt/AdGuardHome | |
| sudo ./AdGuardHome -s stop | |
| sudo cp -r ./AdGuardHome.yaml ./data ~/my-agh-backup/ | |
| sudo cp /tmp/AdGuardHome/AdGuardHome /opt/AdGuardHome/AdGuardHome | |
| sudo ./AdGuardHome -s start | |
| rm -rf /tmp/* |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -L -sS https://bit.ly/update-agh-arm64 | sh