What is best and safest way to update AGH to newest stable (not beta) version, without reseting any settings (filter list, DNS servers, blacklist, whitelist, etc, etc.) ?
What is best and safest way to update AGH to newest stable (not beta) version, without reseting any settings (filter list, DNS servers, blacklist, whitelist, etc, etc.) ?
yep option 1 of reconfiguration aborts the reconfiguration (your update was still successful
) . I would hit n to reconfiguration, if your intentions are not to start out fresh. Reconfiguration allows the user to do essentially what the first install does- it is away to start out fresh. (Consider option 1 on the reconfiguration question as a "Wait I changed my mind button").
Please help, the provider or the state is blocking the adguard.com domain, I can’t update.
If I install a VPN client on a router, then the traffic from the router itself still goes past the VPN.
I can download a file "AdGuardHome_linux_arm64.tar.gz" from a PC via VPN and copy it to the router, but what do I do with this file then? How to update adguard?
Code:
Info: Detected RT-AX86U router.
Info: Detected Linux platform.
Info: Detected ARMv8 architecture.
Info: JFFS custom scripts and configs are already enabled.
Info: DNS Environment is Ready.
Info: AI_VERSION=v1.5.8
Info: New RELEASE ADGUARDHOME_VER=v0.107.25 Available!
Info: ADGUARDHOME_VER=v0.107.22
Info: Run Option 1 to upgrade or change builds.
Info: To visit AdGuardHome,
Info: please go to http://192.168.1.1:14711 .
Info: You can use the WebUI to change things to your liking!
Info: Stop by https://github.com/AdguardTeam/AdGuardHome/wiki
Info: for any configuration needs.
Info: Choose what you want to do:
1) Install/Update AdGuardHome
2) Uninstall
3) Change Username/Password
4) Reconfigure
b) Backup
r) Restore
q) Quit
=> Please enter the number that designates your selection:, [1-4/b/r/q]: 1
Info: This operation will install AdGuardHome and related files (<6MB)
Info: to ENTWARE, no other data will be changed.
Info: Also some start scripts will be installed/modified as required.
=> Do you want to install AdGuardHome to ENTWARE? [y/n]: y
Info: installer is up to date. Skipping...
=> Do you want to switch AdGuardHome builds? [y/n]: n
Info: continuing without changing builds.
Info: New RELEASE ADGUARDHOME_VER=v0.107.25 Available!
Info: Updating ADGUARDHOME_VER=v0.107.22 to v0.107.25 .
Info: Downloading AdGuardHome_linux_arm64.tar.gz
Info: Downloading AdGuardHome_linux_arm64.tar.gz
Info: Downloading AdGuardHome_linux_arm64.tar.gz
*** Error: Unable to download https://static.adguard.com/adguardhome/release/AdGuardHome_linux_arm64.tar.gz
*** Error: One or more download failures has occured.
*** Error: It is recommended to rerun the installer, or restore from a backup!
*** Error: Unable to download AdGuardHome package for your router
Info: Operation aborted, returning to Main Menu. You can quit or continue.
=====================================================
Please help, the provider or the state is blocking the adguard.com domain, I can’t update.
If I install a VPN client on a router, then the traffic from the router itself still goes past the VPN.
I can download a file "AdGuardHome_linux_arm64.tar.gz" from a PC via VPN and copy it to the router, but what do I do with this file then? How to update adguard?
Code:
Info: Detected RT-AX86U router.
Info: Detected Linux platform.
Info: Detected ARMv8 architecture.
Info: JFFS custom scripts and configs are already enabled.
Info: DNS Environment is Ready.
Info: AI_VERSION=v1.5.8
Info: New RELEASE ADGUARDHOME_VER=v0.107.25 Available!
Info: ADGUARDHOME_VER=v0.107.22
Info: Run Option 1 to upgrade or change builds.
Info: To visit AdGuardHome,
Info: please go to http://192.168.1.1:14711 .
Info: You can use the WebUI to change things to your liking!
Info: Stop by https://github.com/AdguardTeam/AdGuardHome/wiki
Info: for any configuration needs.
Info: Choose what you want to do:
1) Install/Update AdGuardHome
2) Uninstall
3) Change Username/Password
4) Reconfigure
b) Backup
r) Restore
q) Quit
=> Please enter the number that designates your selection:, [1-4/b/r/q]: 1
Info: This operation will install AdGuardHome and related files (<6MB)
Info: to ENTWARE, no other data will be changed.
Info: Also some start scripts will be installed/modified as required.
=> Do you want to install AdGuardHome to ENTWARE? [y/n]: y
Info: installer is up to date. Skipping...
=> Do you want to switch AdGuardHome builds? [y/n]: n
Info: continuing without changing builds.
Info: New RELEASE ADGUARDHOME_VER=v0.107.25 Available!
Info: Updating ADGUARDHOME_VER=v0.107.22 to v0.107.25 .
Info: Downloading AdGuardHome_linux_arm64.tar.gz
Info: Downloading AdGuardHome_linux_arm64.tar.gz
Info: Downloading AdGuardHome_linux_arm64.tar.gz
*** Error: Unable to download https://static.adguard.com/adguardhome/release/AdGuardHome_linux_arm64.tar.gz
*** Error: One or more download failures has occured.
*** Error: It is recommended to rerun the installer, or restore from a backup!
*** Error: Unable to download AdGuardHome package for your router
Info: Operation aborted, returning to Main Menu. You can quit or continue.
=====================================================
From the terminal output, it looks like you are unable to download the update. Until you figure out why this is happening, you will remain unable to download the update. Some suggested culprits to check for blocking are - skynet, adguardhome blocklists (allowlist the domain), or check any other blocking sources you might be using. At either rate, the breakage is happening on your end some where. I wish I could be of more assistance.
The Official Installer of AdGuardHome for Asuswrt-Merlin - jumpsmm7/Asuswrt-Merlin-AdGuardHome-Installer
github.com
Here are the directions per your request:
Code:
# Step 1 : Place AdGuardHome_linux_arm64.tar.gz in the directory "/opt/etc/"
# Step 2 : Run these commands in the terminal.
tar xzv -C "/opt/etc" -f "/opt/etc/AdGuardHome_linux_arm64.tar.gz" >/dev/null 2>&1
chown "$(nvram get http_username)":root /opt/etc/AdGuardHome/*
chmod 755 "/opt/etc/AdGuardHome/AdGuardHome"
[ -f "/opt/sbin/AdGuardHome" ] && rm -rf /opt/sbin/AdGuardHome
ln -sf /opt/etc/AdGuardHome/AdGuardHome /opt/sbin/AdGuardHome
service restart_AdGuardHome
If this doesn't work, then there are probably other steps not known that need to be considered. That is why I recommend fixing the issue instead of relying on this method.
# Step 1 : Place AdGuardHome_linux_arm64.tar.gz in the directory "/opt/etc/"
# Step 2 : Run these commands in the terminal.
tar xzv -C "/opt/etc" -f "/opt/etc/AdGuardHome_linux_arm64.tar.gz" >/dev/null 2>&1
chown "$(nvram get http_username)":root /opt/etc/AdGuardHome/*
chmod 755 "/opt/etc/AdGuardHome/AdGuardHome"
[ -f "/opt/sbin/AdGuardHome" ] && rm -rf /opt/sbin/AdGuardHome
ln -sf /opt/etc/AdGuardHome/AdGuardHome /opt/sbin/AdGuardHome
service restart_AdGuardHome