icon | description |
---|---|
rotate-exclamation |
Zsync based Delta Updates |
{% hint style="warning" %}
We have been asked why we prefer soar update
over appimageupdatetool
or zsync
- The statment here is misleading: https://github.com/AppImageCommunity/AppImageUpdate/blob/d08e085cc6d40bcda85c4ff4ff275a0b0ce444cc/README.md?plain=1#L39
- In our testing, we found almost all appimages that have zsync updateinfo embedded, use the full bandwidth regardless
Soar Update
is not only better, but actually checks for version prior to wasting any bandwidth along with comparing Checksums- Below, you can verify it yourself {% endhint %}
{% code overflow="wrap" %}
soar add "vnstat#bin" "vnstatd#bin"{% endcode %}
- Run
vnstatd
(Terminal: 1, Keep it Running)
{% hint style="info" %} Applies only if you didn't install it systemwide & used soar
#Get the Default Config
curl -qfsSL "https://raw.githubusercontent.com/vergoh/vnstat/master/cfg/vnstat.conf" -o "./vnstat.conf"
#Run this in a terminal, call it Terminal 1
sudo "$(which vnstatd)" --alwaysadd --nodaemon --sync --config "./vnstat.conf"
{% endhint %}
vnstatd running in Terminal 1
- Monitor Live Traffic (Terminal: 2, Keep it Running)
{% code overflow="wrap" %}
#Run this in another terminal, call it Terminal 2 vnstat --live
{% endcode %}
vnstat running in Terminal 2
- Use appimageupdatetool OR Zsync (Terminal: 3)
{% code overflow="wrap" %}
#Get the Size of your AppImage (NOTE this somewhere) du -sh "/path/to/your/appimage" #Run appimageupdatetool (while still keeping Terminal 1 & 2 Running) appimageupdatetool "/path/to/your/appimage"{% endcode %}
- Stop
vnstat
&vnstatd
(PressCtrl + C
)
rx shows total bandwidth
- Notice the
Size
of Original AppImage & Total Bandwidth used
QBittorrent using full bandwidth regardless of "delta" updates
- Re Run the entire test, but this time use
soar update
{% hint style="info" %}
- Notice, it only uses little to no bandwidth to compare the version to our remote repositories
- Notice, if update is found, both zsync-appimages & soar update use equal bandwidth. There's no actual
Delta Update
for zsync-appimages {% endhint %}