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.

888Leander

Members
  • Joined

  • Last visited

  1. Hello everyone, in the past a few changes have been made to Unraid and the script did fail at some points. I updated the script with a few changes: the main array disks are now being mapped as /dev/mdX and the old script could not export the headers of those drives some drives have spaces in the name which lead to the name of the header being cut off and headers being skipped due to the same output name #!/bin/bash for i in {/dev/sd*,/dev/nvme*,/dev/md*}; do if cryptsetup luksDump $i &>/dev/null; then if [[ $(basename "$i") =~ ^md[0-9]+ ]]; then j=$(lsblk -o NAME,MOUNTPOINT -r | awk -v dev="${i##*/}" '$1 == dev { print $2 }' | sed 's|.*/||') cryptsetup luksHeaderBackup $i --header-backup-file $j.bin; echo succesfully exported LUKS Header of disk $j else cryptsetup luksHeaderBackup $i --header-backup-file udevadm info --query=property --name=$i | grep '^ID_SERIAL=' | cut -d= -f2 | tr ' ' '_'.bin; echo succesfully exported LUKS Header of disk $i fi; fi; done

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.