Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

andell

Members
  • Joined

  • Last visited

  1. Does anyone have a post-run script that will automatically zip up a given backup into a single file and delete the folder, leaving only the archive? I want each backup to be a single file. I searched the thread a bit and saw several people asking for this over the years, but I couldn't find an actual script to do it. Also, will such a script interfere with the plugin's ability to clean up old backups? If so, how can I avoid this issue? The end result I want is for 3 days of backups to be kept, with each backup being a single archive file. I tried to ask ChatGPT to write one, but it completely failed to do so. Alternatively, if someone could point me to documentation about scripts (e.g., I saw a post saying there is variable support to target backup directories directly, but did not see documentation listing variables, etc.) that would be helpful too. EDIT Looks like ChatGPT was able to pull it off after all! This is working for me. I'll include it here in case anyone else wants something like this. You'll need to change the log file directory to be wherever you want it, though, and change 3 days to whatever you want as well. #!/bin/bash # Accept input from plugin ARCHIVE_FOLDER="$2" # Log file LOG_FILE="/mnt/user/Backups/post_backup_debug.log" echo "[$(date)] ARCHIVE_FOLDER=$ARCHIVE_FOLDER" >> "$LOG_FILE" # Safety check if [ -z "$ARCHIVE_FOLDER" ]; then echo "[$(date)] โŒ ARCHIVE_FOLDER not set" >> "$LOG_FILE" exit 1 fi # Zip destination ZIP_DEST=$(dirname "$ARCHIVE_FOLDER") BASE_NAME=$(basename "$ARCHIVE_FOLDER") ZIP_PATH="$ZIP_DEST/${BASE_NAME}.zip" # Create zip zip -r "$ZIP_PATH" "$ARCHIVE_FOLDER" # Delete original folder if zip succeeded if [ $? -eq 0 ]; then rm -rf "$ARCHIVE_FOLDER" echo "[$(date)] โœ… Zipped and deleted $ARCHIVE_FOLDER" >> "$LOG_FILE" else echo "[$(date)] โŒ Zip failed for $ARCHIVE_FOLDER" >> "$LOG_FILE" exit 1 fi # Retention: Only delete zips with Appdata format older than 3 days find "$ZIP_DEST" -type f -name "ab_[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]_[0-9][0-9][0-9][0-9][0-9][0-9].zip" -mtime +3 \ -exec rm -f {} \; \ -exec echo "[$(date)] ๐Ÿงน Deleted matching zip: {}" >> "$LOG_FILE" \; exit 0
  2. Hello all, Earlier this week I had mentioned in the rc.1 thread that I was considering buying a NAS to use with Unraid, but was wondering whether USB WiFi adapters would work. The prebuilt I was considering does not have a place to put an internal wireless card and I really want WiFi support. One reply mentioned that they should indeed work as long as they use a supported chipset, of which Realtek was one, and have drivers. https://forums.unraid.net/bug-reports/prereleases/unraid-os-version-710-rc1-available-r3737/#findComment-33492 I ended up buying the NAS and installing Unraid on it (very easy!), but I cannot seem to get WiFi to work. I tried two adapters I had lying around the house: TP-Link Archer T2U Nano and ASUS USB-AC68 According to ChatGPT, these use Realtek RTL8811AU and Realtek RTL8814AU chipsets respectively. The NAS was able to detect that these were plugged in (they showed up in lsusb), but even after rebooting a few times there was no option for WiFi in Settings โ†’ Network Settings I've attached two diagnostics.zip, one attempting to use each wireless adapter. Maybe they are too old? I've had these for ages (they appear to have released in 2019 and 2016 respectively), and the release notes mention: If the problem is that they are too old, I would love some recommendations for what might work instead. Thank you, Andell ASUS USB-AC68 nas-diagnostics-20250427-2001.zip TP-Link Archer T2U Nano nas-diagnostics-20250427-1957.zip

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.