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.

Bluscream

Members
  • Joined

  • Last visited

  1. can noone make a unraid xml template for this (and for the server)?
  2. Okay, with the help of cursor, ive modified this even further; find the scripts here: https://github.com/Bluscream/Scripts/blob/7f71d301da15391585264c1ca6e7ed8ef7f82b79/unraid/config/plugins/user.scripts/scripts/image-disk/script https://github.com/Bluscream/Scripts/blob/7f71d301da15391585264c1ca6e7ed8ef7f82b79/unraid/config/plugins/user.scripts/scripts/mount-image/script https://github.com/Bluscream/Scripts/blob/7f71d301da15391585264c1ca6e7ed8ef7f82b79/unraid/config/plugins/user.scripts/scripts/mount-images/script basically #!/bin/bash SCRIPT_PATH="/boot/config/plugins/user.scripts/scripts/mount-image/script" if [[ ! -f "$SCRIPT_PATH" ]]; then echo "Error: Mount script not found at $SCRIPT_PATH" exit 1 fi if [[ $EUID -ne 0 ]]; then echo "Error: This script must be run as root (use sudo)" exit 1 fi mount_image() { echo "=== Mounting $1 ===" # bash "$SCRIPT_PATH" info --image "$1" bash "$SCRIPT_PATH" mount --image "$1" --partition "$2" --readonly & echo " Background process started (PID: $!)" echo } bash "$SCRIPT_PATH" unmount rm -rf /mnt/images/*/ # Mount specific partitions using their actual labels mount_image "/mnt/user/backups/xxx/PC/Drives/xxx-pc.img" "Win 11 Pro" mount_image "/mnt/user/backups/xxx/Laptop/drives/xxx-laptop.img" "Windows" mount_image "/mnt/user/backups/xxx/Server/HomeAssistant/HASS_USB.img" "hassos-data" # mount_image "/mnt/user/backups/xxx/Server/HomeAssistant/hass-sd_broken.img" "HomeAssistant SD" echo "=== All mount operations started in background ===" echo "Each mount process is waiting for Enter key to unmount" echo "To unmount all disks at once, run: $SCRIPT_PATH unmount" echo "To check mounted disks, run: $SCRIPT_PATH list" echo echo "Background processes:" jobs
  3. you need to enable "Advanced View" when installing the app and remove all nvidia/gpu stuff from "Extra Parameters:" field
  4. I get ERROR ARM: Mounting failed! Rip might have problems https://github.com/automatic-ripping-machine/automatic-ripping-machine/issues/1424
  5. Only 6 years yet
  6. I would also like to keep a interface free from the webui so i can host a dockered reverse proxy on port 80 and 443
  7. How to change the HTTP and HTTPS ports when the webui fails to start because another service is bound to 80/443? I tried looking into /boot/config but i didnt find a setting for the web ui listener
  8. Would be better if the dynamix file browser would detect presence of the tailscale plugin or container and show a taildrop button next to "copy","move",etc
  9. Hello, i have a issue with tailscale, on every bootup, it locks the ports 80 and 443 so the unraid nginx service cannot start. i manually have to ssh or tty into the unraid machine, type in `lsof -i tcp:80` to get the pid of the tailscaled process, then `kill <pid>` on the tailscale pid, and then `/etc/rc.d/rc.nginx start` (ref: forums.unraid.net/topic/86114-nginx-running-out-of-shared-memory/#findComment-816076) to get the UNRAID interface back up. I cannot (re)start the tailscale plugin from `https://nas.local/Settings/Tailscale` after that
  10. It would be nice if UNRAID had a "Replace Disk(s)" wizard that can be invoked by the user and will walk them through disk replacement step by step, either using https://docs.unraid.net/legacy/FAQ/replacing-a-data-drive/ or https://docs.unraid.net/legacy/FAQ/parity-swap-procedure/ It could even go a step further by allowing replacing a (failed) disk with a smaller disk (aslong as the used space is smaller than the capacity of the new drive) by either redistributing the failed disk data through the rest of the array or asking the user on which unassigned disk to temporarily store the data ref: https://discord.com/channels/216281096667529216/780505064816246834/1362067894288257104
  11. I have taken a script from https://www.howtogeek.com/devops/how-to-mount-a-qemu-virtual-disk-image/ and modified it so it works with my disk image: #!/bin/bash # set -x # Set debug mode image=/mnt/disks/WSC2LFGJ/Backups/Me/PC/Drives/c.img mount=/mnt/disks/c partition_offset=240123904 # Get partition information echo "=== Partition Information ===" fdisk -l "$image" start=$(fdisk -l "$image" | grep '^/'"$image"'3' | awk '{print $2}') # Get NTFS partition start sector (partition 3) echo "\nNTFS Partition Start Sector: $start" sectors=$(fdisk -l "$image" | grep '^Units:' | awk '{print $5}' | cut -d',' -f1) # Show sector size echo "Sector size: $sectors" offset=$((start * sectors)) # Calculate offset echo "Calculated offset: $offset" mkdir $mount # Try mounting with verbose output # mount -v -r -o loop,offset=$offset "$image" $mount mount -r -t ntfs -o loop,offset=$partition_offset "$image" $mount

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.