1
24.7 Production Series / Re: Any way to update AdGuardHome to edge release?
« on: October 24, 2024, 08:40:11 pm »
Do the following:
1) Check current version
2) Download beta/edge version of AGH as appropriate
3) Stop AGH, disable the service
4) Extract the AGH binary to the appropriate location:
5) Check version again
6) Start AGH, enable the service
1) Check current version
Code: [Select]
sudo /usr/local/AdGuardHome/AdGuardHome -v --version
2) Download beta/edge version of AGH as appropriate
Code: [Select]
fetch -o agh.tar.gz https://static.adguard.com/adguardhome/beta/AdGuardHome_freebsd_amd64.tar.gz
orCode: [Select]
fetch -o agh.tar.gz https://static.adguard.com/adguardhome/edge/AdGuardHome_freebsd_amd64.tar.gz
3) Stop AGH, disable the service
4) Extract the AGH binary to the appropriate location:
Code: [Select]
sudo tar xvf agh.tar.gz -C /usr/local/;
sudo rm agh.tar.gz;
sudo rm /usr/local/AdGuardHome/LICENSE.txt;
sudo rm /usr/local/AdGuardHome/README.md;
sudo rm /usr/local/AdGuardHome/CHANGELOG.md;
5) Check version again
Code: [Select]
sudo /usr/local/AdGuardHome/AdGuardHome -v --version
6) Start AGH, enable the service