Suchergebnisse

  • Ab sofort steht euch hier im Forum die neue Add-on Verwaltung zur Verfügung – eine zentrale Plattform für alles rund um Erweiterungen und Add-ons für den DSM.

    Damit haben wir einen Ort, an dem Lösungen von Nutzern mit der Community geteilt werden können. Über die Team Funktion können Projekte auch gemeinsam gepflegt werden.

    Was die Add-on Verwaltung kann und wie es funktioniert findet Ihr hier

    Hier geht es zu den Add-ons

  1. DaveR

    Download Station, Neue Version: 4.1.1-5008

    Because I was curious of which Synology CPU platform uses which Synology package arch I whipped up a little script to get the information from my archive of extracted DSM pat files. This is all the Synology models that can use DSM 7.1.1 to 7.3.2 root@DISKSTATION:~#...
  2. DaveR

    Download Station, Neue Version: 4.1.1-5008

    I've figured out a reliable way to get the arch instead of using uname. We can get it from a default package that we know will be installed on every Synology NAS. synogetkeyvalue /var/packages/FileStation/INFO arch So the script can use: ARCH1="$(synogetkeyvalue...
  3. DaveR

    Download Station, Neue Version: 4.1.1-5008

    @Adama I added the hostname so I can easily see which Synology NAS has package updates available. Yes, one of my Synology NAS is still name DISKSTATION.
  4. DaveR

    Download Station, Neue Version: 4.1.1-5008

    I think uname -m returns armv7l on a DS416 or DS215+ (Annapurna Labs Alpine AL-212 Alpine4K CPU). So maybe case $ARCH1 in "aarch32|arm71") ARCH1="armv7" ;; "aarch64") ARCH1="armv8" ;; *) ;; esac
  5. DaveR

    Download Station, Neue Version: 4.1.1-5008

    The script was exiting due to the set -e pipefail so it never got the part where it sends the email. Your solution to fix the email works. See #59 I edited my previous reply while you were typing your reply.
  6. DaveR

    Download Station, Neue Version: 4.1.1-5008

    Nope. I had already changed the MAILTARGET and SENDER to my email address. I just commented out the set -euo pipefail line and now it's working. I like the "Found N packages:"
  7. DaveR

    Download Station, Neue Version: 4.1.1-5008

    It took 2 seconds to run and I never got an email. In my version I've actually removed the "sleep 1" and it runs nice and fast without the 429 "too many requests" error. I think the user agent was all it needed.
  8. DaveR

    Download Station, Neue Version: 4.1.1-5008

    I've just got to figure out what is causing the < /tr> at the top and I'll attach this new version.
  9. DaveR

    Download Station, Neue Version: 4.1.1-5008

    I changed it to show each package's display name instead of the system name, like: Synology AI Console instead of AIConsole. Advanced Media Extensions instead of CodecPack. etc If you are downloading from the archive site you need the package's system name. If you are downloading from the...
  10. DaveR

    Download Station, Neue Version: 4.1.1-5008

    The "Too Many Requests" may not be just from you. Synology's websites have a global limit.
  11. DaveR

    4 TB SSD für DS423+ / evtl. Garantiefall / Auswahl und Vorgehen

    Why does that look like AI wrote it? :)
  12. DaveR

    DSM 7.3 Toolkit DSM 7.3

    Synology forgot to update the copyright (and haven't updated it since DSM 7.1). The AvailablePlatform_7_3 includes 2 platforms that don't have toolkit files available for download: kvmcloud and rtd1296
  13. DaveR

    DSM 7.3 Synology Downloadzentrum down???

    @josch4711 Your idea of using the other domain works. global.synologydownload.com fails root@DS925plus:~# curl -kfIL https://global.synologydownload.com/download/Package/spk/CodecPack/3.1.0-3005/CodecPack-x86_64-3.1.0-3005.spk -o /tmp/CodecPack-x86_64-3.1.0-3005.spk % Total % Received %...
  14. DaveR

    Download Station, Neue Version: 4.1.1-5008

    So I'm late to the party :rolleyes:
  15. DaveR

    Download Station, Neue Version: 4.1.1-5008

    The global.synologydownload.com site is definitely rate limited at the moment.
  16. DaveR

    Systempartition voll - Anleitung zur Prüfung und Säuberung

    If you ever get stuck again ask for help here before doing anything drastic. And for other people, never, ever trust the solutions provided by AI without asking here for verification. The telnet recovery login is: root for the login Password is either 101-0101 or the "password of the day"...
  17. DaveR

    DSM 7.3 Toolkit DSM 7.3

    I've fixed my script :)
  18. DaveR

    DSM 7.3 Toolkit DSM 7.3

    Hmm, my script ran at midnight (it's 9:45 am here now) and it found 2 new Surveillance Station versions but not the Toolkit! It also didn't send me an email :oops:
  19. DaveR

    Need help testing SSH command

    I've got a better command to keep the SSH connection alive while waiting for the user to enter "y" until read -r -t20 -p $'\0' answer; do :; done