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.

mmm77

Members
  • Joined

  • Last visited

  1. Hi, Bombvault sounds great, so I gave it a try and tested the manual backup by selecting all containers. Here are a few things I noticed: "Select All" behavior: "Select All" probably shouldn't include Bombvault itself. When the backup process reached Bombvault alphabetically, it crashed the backup for me. :-) Browser/Session dependency: On my second try, I unselected Bombvault. However, the backup failed again when it reached Chromium. I was running the Bombvault UI inside that specific Chromium docker container. Does closing or losing the browser connection kill the manual backup process? Random interruptions: For my next attempts, I deselected both Bombvault and Chromium. It failed once during the Emby backup (though that works now, maybe it is still stopped since this try), but the last three times it stopped right after Fenrus (meaning Fileflows would have been next, judging by the timestamps). EDIT: It seems it is still running, only the progress bar was missing from time to time. This time it stopped at iobroker (restic backup failed), but usually I would not backup iobroker this way. Suggestion: When backup failed, please restore the running condition of the container afterwards.... emby and iobroker both stayed stopped after backup failure and were running before. Any ideas on what might be causing these stops? Mike
  2. Hi, yes now it seems to work, still some unattributed activity. So I now tryed to move all .plexignore to cache...... that´s why (deleted) ...screenshot was afterwards Mike
  3. Hi, took a while unraid: 7.3.1 all apps use /mnt/user/... also some screenshots what I can see.. Mike state.json syslog.txt
  4. mmm77 started following [Plugin] Disk Talkers
  5. HI and thanks, error has gone, but does not help to identify my apps. Mike
  6. Hello, after a few minutes I get the error: fanotify unavailable: [Errno 2] No such file or directory so I often have only "other activity" in the statistic and cannot identify my problem. Mike
  7. @d3m3zs yes please help us... I just recognized that some settings were not changed on the datasets, when doing it in ZFS Master... So for now I used the Terminal.... Mike
  8. restart of unraid server did help. PS: maybe it is better to tell command: wget https://github.com/masterwishx/unraid-templates/raw/refs/heads/main/configs/filebrowserQuantum/config.yaml (also changed link to raw file)
  9. Hi, any Idea why my unraid GUI crashes when I try to install ? I click on install, and then it hangs adding the container ( opening the template) Tried on 2 browser and on Smartphone... I also cannot open unraid web GUI again without closing the browser first. Mike PS: I could not create a share with a space in the name, so I created share "FileBrowser" but this should be no problem where my installation hangs
  10. mmm77 replied to scout210177's topic in Deutsch
    Hallo @alturismo , bitte nicht böse sein, oder lachen... Ich kenne mich mit programmieren gar nicht aus, hatte aber ein Problem, was dann eine KI für mich gelöst hat. Erst das einfachere: Dieser Fehler: cache-mover: msm: /usr/local/emhttp/plugins/cache-mover/scripts/cache_mover1: line 141: [: ==: unary operator expected Dieser Fehler kommt auch bei cache_mover2 in einer anderen Zeile vor.... Hier sollte ich if [ $rsync_mode == "file" ]; then abändern in if [ "$rsync_mode" == "file" ]; then Dann hatte ich noch ein Problem, daß ich bei einer Serie 2 fast gleichlautende Verzeichnisse habe. The Expanse (2015) und dann noch aus einer Konvertierung zum Test: The Expanse (2015) AV1 Hier hat deine Suchlogik die Verzeichnisse zusammengeschoben. rsync: [sender] change_dir "/mnt/disk2/medien/Serien/The Expanse (2015)/Season 3/The Expanse - S03E06 - Aufopferung.mkv\#012/mnt/disk2/medien/Serien/The Expanse (2015) AV1/Season 3" failed: No such file or directory (2) (Hier hatte ich noch nicht eingestellt, daß der ganze Ordner verschoben werden soll) So ein verwursteltes Verzeichnis habe ich auch anderswo schon gesehen im Forum. Hauptproblem sei Zeile 96-100 filename=$(basename "$openfile") filename_search=$(echo $filename | sed 's/[^a-zA-Z0-9]/*/g') diskpath=$(find /mnt/disk* -type f -name "$filename_search") diskname=$(echo $diskpath | awk '{ print $1; }' | cut -f 3 -d "/") if [ "$diskname" == "disks" ]; then subdisk=$(echo $diskpath | awk '{ print $1; }' | cut -f 4 -d "/") diskname="$diskname/$subdisk" fi Das Problem: Wenn find mehrere Dateien findet (weil du zwei ähnliche Verzeichnisse hast: "The Expanse (2015)" und "The Expanse (2015) AV1"), werden alle gefundenen Pfade in die Variable $diskpath geschrieben - mit Zeilenumbrüchen dazwischen. Das führt dann dazu, dass später bei rsync_source=$(dirname "$diskpath") ein Pfad mit eingebautem Zeilenumbruch (\#012) entsteht, genau wie in deinem Log zu sehen. Diese habe ich ersetzt durch: filename=$(basename "$openfile") filename_search=$(echo $filename | sed 's/[^a-zA-Z0-9]/*/g') # Find all matches and filter to get only the exact directory match diskpath=$(find /mnt/disk* -type f -name "$filename_search" | grep -F "$directory" | head -n 1) # Fallback if exact directory match fails if [ -z "$diskpath" ]; then diskpath=$(find /mnt/disk* -type f -name "$filename_search" | head -n 1) fi diskname=$(echo "$diskpath" | cut -f 3 -d "/") if [ "$diskname" == "disks" ]; then subdisk=$(echo "$diskpath" | cut -f 4 -d "/") diskname="$diskname/$subdisk" fi Die wichtigsten Änderungen: grep -F "$directory" filtert die find-Ergebnisse, um nur den Pfad zu nehmen, der zum korrekten Verzeichnis (mit oder ohne "AV1") passt head -n 1 stellt sicher, dass nur ein Ergebnis genommen wird (keine Zeilenumbrüche mehr in der Variable) Fallback falls die exakte Directory-Suche fehlschlägt Anführungszeichen um $diskpath bei der Zuweisung von diskname, um Fehler zu vermeiden Das sollte das Problem mit den zwei ähnlichen Verzeichnisnamen lösen. Zumindest hat es danach funktioniert... Ich habe nun von jedem Verzeichnis etwas abgespielt und habe nun auch beide Verzeichnisse in der Tabelle "cached" aufgeführt so wie auch auf dem Cache wirklich liegen. EDIT: Habe es gefunden. Hier sind die Verzeichnisnamen wahrscheinlich auch zu ähnlich: https://forums.unraid.net/topic/181843-support-alturismo-repos/?&do=findComment&comment=1584779 Oct 18 10:10:04 Exa root: cache-mover: msm: rsync: [sender] change_dir "/mnt/disk1/data/movies/How to Train Your Dragon (2010)/How to Train Your Dragon.mp4\#012/mnt/disk1/data/movies/How to Train Your Dragon 2 (2014)/How to Train Your Dragon 2.mp4\#012/mnt/disk1/data/movies/How to Train Your Dragon Homecoming (2019)/How to Train Your Dragon Homecoming.mp4\#012/mnt/disk1/data/movies/How to Train Your Dragon The Hidden World (2019)/How to Train Your Dragon The Hidden World.mp4\#012/mnt/disk1/data/movies/How to Train Your Dragon (2025)" failed: No such file or directory (2)
  11. Hi, No big problem. I just installed an UPS last week. Meanwhile, I updated unRAID to beta 7.2. I wanted to tell you that the footer has now disappeared... Thanks for your work. Mike
  12. Is there a mistake in the default config ? Default is: WHD_HOOK_DEFAULT_EXT=.sh But then my script.sh is not found because it is searching for script..sh ( 2x "." ) When I change: WHD_HOOK_DEFAULT_EXT=sh (leaving out the "." ) then script.sh is found. Mike
  13. In the cache mover log there is no entry since 08.03. Only in the cleaner log there are new entries I showed you
  14. Good Morning, good question... I do not know what is accessing the folder... I am coming from Windows, so no Linux expert... Just learned about access time from you 🙂 I will try what KI told me... inotifywait -m -r -e access "/mnt/cache/medien/UHD/" | while read path action file; do echo "$(date '+%Y-%m-%d %H:%M:%S') Zugriff auf: $path$file ($action)" >> /mnt/cache/medien/zugriffe.log echo "Prozesse, die aktuell auf das Verzeichnis zugreifen:" >> /mnt/cache/medien/zugriffe.log lsof +D "/mnt/cache/medien/UHD/" >> /mnt/cache/medien/zugriffe.log 2>/dev/null echo "--------------------------------" >> /mnt/cache/medien/zugriffe.log done But there is to much in the logfile... every minute... If you know how to log the access I will do... Mike
  15. Hi @alturismo, as I understand you look for the last access time of the cached folder. And there I have also a problem with some movies and do not know what is causing the access.... 05.03. 22:52:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 1 still in range 06.03. 22:52:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 1 still in range 07.03. 08:45:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 11 still in range 07.03. 09:45:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 12 still in range 07.03. 11:05:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 14 still in range 07.03. 11:45:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 14 still in range 08.03. 11:45:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 14 still in range 09.03. 11:45:01 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 14 still in range 10.03. 10:30:02 /mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008) 13 still in range root@unraid:/mnt/cache/medien/UHD# stat India* File: Indiana Jones und das Königreich des Kristallschädels (2008) Size: 19 Blocks: 50 IO Block: 16384 directory Device: 0,45 Inode: 752 Links: 4 Access: (0777/drwxrwxrwx) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-03-09 20:53:50.243299117 +0100 Modify: 2024-04-22 16:19:16.000000000 +0200 Change: 2025-02-18 20:52:04.494132436 +0100 Birth: 2025-02-18 18:47:02.465539147 +0100 When I look at the single files: root@unraid:/mnt/cache/medien/UHD/Indiana Jones und das Königreich des Kristallschädels (2008)# stat * File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-banner.jpg Size: 223299 Blocks: 458 IO Block: 131072 regular file Device: 0,45 Inode: 572 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:02.618539656 +0100 Modify: 2024-02-05 10:50:09.000000000 +0100 Change: 2025-02-18 18:47:02.622539669 +0100 Birth: 2025-02-18 18:47:02.618539656 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-clearart.png Size: 1000865 Blocks: 1978 IO Block: 131072 regular file Device: 0,45 Inode: 574 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:02.622539669 +0100 Modify: 2024-02-05 10:50:10.000000000 +0100 Change: 2025-02-18 18:47:02.777540184 +0100 Birth: 2025-02-18 18:47:02.622539669 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-clearlogo.png Size: 94512 Blocks: 194 IO Block: 94720 regular file Device: 0,45 Inode: 576 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:02.777540184 +0100 Modify: 2024-02-05 10:50:10.000000000 +0100 Change: 2025-02-18 18:47:02.782540200 +0100 Birth: 2025-02-18 18:47:02.777540184 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-discart.png Size: 1430635 Blocks: 2834 IO Block: 131072 regular file Device: 0,45 Inode: 578 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:02.782540200 +0100 Modify: 2024-02-05 10:50:10.000000000 +0100 Change: 2025-02-18 18:47:02.976540845 +0100 Birth: 2025-02-18 18:47:02.782540200 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart.jpg Size: 717278 Blocks: 1426 IO Block: 131072 regular file Device: 0,45 Inode: 1212 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.604562858 +0100 Modify: 2024-02-05 10:50:09.000000000 +0100 Change: 2025-02-18 18:47:02.985540874 +0100 Birth: 2025-02-18 18:47:02.976540845 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart1.jpg Size: 621849 Blocks: 1234 IO Block: 131072 regular file Device: 0,45 Inode: 1214 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.617562901 +0100 Modify: 2024-02-05 10:50:11.000000000 +0100 Change: 2025-02-18 18:47:03.045541074 +0100 Birth: 2025-02-18 18:47:02.985540874 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart2.jpg Size: 548325 Blocks: 1098 IO Block: 131072 regular file Device: 0,45 Inode: 1216 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.536562632 +0100 Modify: 2024-02-05 10:50:11.000000000 +0100 Change: 2025-02-18 18:47:03.110541289 +0100 Birth: 2025-02-18 18:47:03.045541074 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart3.jpg Size: 276197 Blocks: 562 IO Block: 131072 regular file Device: 0,45 Inode: 1218 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.597562835 +0100 Modify: 2024-02-05 10:50:12.000000000 +0100 Change: 2025-02-18 18:47:03.130541356 +0100 Birth: 2025-02-18 18:47:03.110541289 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart4.jpg Size: 407507 Blocks: 818 IO Block: 131072 regular file Device: 0,45 Inode: 1220 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.590562811 +0100 Modify: 2024-02-05 10:50:12.000000000 +0100 Change: 2025-02-18 18:47:03.133541366 +0100 Birth: 2025-02-18 18:47:03.130541356 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-fanart5.jpg Size: 1949215 Blocks: 3858 IO Block: 131072 regular file Device: 0,45 Inode: 1222 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.559562709 +0100 Modify: 2024-02-05 10:50:12.000000000 +0100 Change: 2025-02-18 18:47:03.192541562 +0100 Birth: 2025-02-18 18:47:03.133541366 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-landscape.jpg Size: 706695 Blocks: 1370 IO Block: 131072 regular file Device: 0,45 Inode: 74 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:03.192541562 +0100 Modify: 2024-02-05 10:50:10.000000000 +0100 Change: 2025-02-18 18:47:03.323541997 +0100 Birth: 2025-02-18 18:47:03.192541562 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3-poster.jpg Size: 261159 Blocks: 530 IO Block: 131072 regular file Device: 0,45 Inode: 468 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:47:09.530562612 +0100 Modify: 2024-02-05 10:50:09.000000000 +0100 Change: 2025-02-18 18:47:03.324542000 +0100 Birth: 2025-02-18 18:47:03.323541997 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3.mkv Size: 13933189923 Blocks: 27230186 IO Block: 131072 regular file Device: 0,45 Inode: 470 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:49:21.646001790 +0100 Modify: 2023-06-12 18:04:10.000000000 +0200 Change: 2025-02-18 18:49:17.571988238 +0100 Birth: 2025-02-18 18:47:03.324542000 +0100 File: Indiana Jones und das Königreich des Kristallschädels (2008) h265 2160p EAC3.nfo Size: 21448 Blocks: 18 IO Block: 21504 regular file Device: 0,45 Inode: 580 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:49:17.571988238 +0100 Modify: 2024-02-06 04:55:10.089282700 +0100 Change: 2025-02-18 18:49:17.571988238 +0100 Birth: 2025-02-18 18:49:17.571988238 +0100 File: ZeroTwo-Indiana.Jones.und.das.Koenigreich.des.Schaedels.2008.2160p.dv.hdr.nfo Size: 1298 Blocks: 10 IO Block: 1536 regular file Device: 0,45 Inode: 582 Links: 1 Access: (0666/-rw-rw-rw-) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-02-18 18:49:17.571988238 +0100 Modify: 2023-06-12 18:07:47.000000000 +0200 Change: 2025-02-18 18:49:17.571988238 +0100 Birth: 2025-02-18 18:49:17.571988238 +0100 And Folder inside: File: extrathumbs Size: 7 Blocks: 2 IO Block: 512 directory Device: 0,45 Inode: 758 Links: 2 Access: (0777/drwxrwxrwx) Uid: ( 99/ nobody) Gid: ( 100/ users) Access: 2025-03-09 18:50:55.109025925 +0100 Modify: 2024-04-22 16:19:16.000000000 +0200 Change: 2025-02-18 18:49:17.670988568 +0100 Birth: 2025-02-18 18:47:02.465539147 +0100 This was also accessed, but all files inside extrathumb also have Access 2025-02-18 So the folders are the problem.... (for me) Is it possible to look only for the access time of the main media file inside the cached folder ?? *.mkv *.avi *.mp4 ..... Mike
  16. Hi, is there a way to change the language to German ? I cannot choose this in the options... there is only English available. Mike

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.