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

Everything posted by mmm77

  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. HI and thanks, error has gone, but does not help to identify my apps. Mike
  5. 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
  6. @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
  7. 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)
  8. 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
  9. 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)
  10. 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
  11. 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
  12. In the cache mover log there is no entry since 08.03. Only in the cleaner log there are new entries I showed you
  13. 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
  14. 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
  15. Hi, is there a way to change the language to German ? I cannot choose this in the options... there is only English available. Mike
  16. yes sure, when I change to "empty" (regular mode) it works. That's my docker setup for plex: Cache Mover Setup:
  17. Hi For me regular mode works.... Tried to use "only" mode and set up Plex... I also only get this error during playback. "Jan 15 11:25:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 11:30:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 11:35:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 11:40:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 11:45:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 11:55:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:00:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:05:03 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:10:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:15:03 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:20:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:25:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:30:02 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60" switching back to "regular" during playback: Jan 15 12:35:02 unraid root: cache-mover: open dir on disk1: /mnt/disk1/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2 Jan 15 12:37:02 unraid root: cache-mover: move / copy /mnt/disk1/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2/ to /mnt/cache/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2/ Jan 15 12:37:02 unraid root: cache-mover: sending incremental file list Jan 15 12:37:02 unraid root: cache-mover: ./ Jan 15 12:37:02 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E01 - Ihr Kinderlein kommet.mkv Jan 15 12:37:03 unraid root: cache-mover: #015 32.77K 0% 0.00kB/s 0:00:00 #015 520.13M 97% 496.00MB/s 0:00:00 #015 532.39M 100% 485.37MB/s 0:00:01 (xfr#1, to-chk=10/12) Jan 15 12:37:03 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E01 - Ihr Kinderlein kommet.srt Jan 15 12:37:03 unraid root: cache-mover: #015 32.77K 56% 477.61kB/s 0:00:00 #015 57.60K 100% 827.15kB/s 0:00:00 (xfr#2, to-chk=9/12) Jan 15 12:37:03 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E02 - O du Fröhliche.mkv Jan 15 12:37:05 unraid root: cache-mover: #015 32.77K 0% 432.43kB/s 0:20:40 #015 227.84M 42% 217.28MB/s 0:00:01 #015 452.76M 84% 215.89MB/s 0:00:00 #015 536.42M 100% 219.75MB/s 0:00:02 (xfr#3, to-chk=8/12) Jan 15 12:37:05 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E02 - O du Fröhliche.srt Jan 15 12:37:05 unraid root: cache-mover: #015 32.77K 61% 96.97kB/s 0:00:00 #015 52.93K 100% 156.17kB/s 0:00:00 (xfr#4, to-chk=7/12) Jan 15 12:37:05 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E03 - Lasst uns froh und munter sein.mkv Jan 15 12:37:07 unraid root: cache-mover: #015 32.77K 0% 96.39kB/s 1:32:59 #015 162.56M 30% 155.03MB/s 0:00:02 #015 418.68M 77% 199.74MB/s 0:00:00 #015 537.79M 100% 208.57MB/s 0:00:02 (xfr#5, to-chk=6/12) Jan 15 12:37:07 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E03 - Lasst uns froh und munter sein.srt Jan 15 12:37:07 unraid root: cache-mover: #015 32.77K 53% 69.26kB/s 0:00:00 #015 61.31K 100% 129.60kB/s 0:00:00 (xfr#6, to-chk=5/12) Jan 15 12:37:07 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E04 - O Tannenbaum.mkv Jan 15 12:37:09 unraid root: cache-mover: #015 32.77K 0% 68.97kB/s 2:08:20 #015 121.14M 22% 115.53MB/s 0:00:03 #015 360.71M 67% 172.09MB/s 0:00:00 #015 531.07M 100% 187.30MB/s 0:00:02 (xfr#7, to-chk=4/12) Jan 15 12:37:09 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E04 - O Tannenbaum.srt Jan 15 12:37:09 unraid root: cache-mover: #015 32.77K 60% 45.26kB/s 0:00:00 #015 54.48K 100% 75.25kB/s 0:00:00 (xfr#8, to-chk=3/12) Jan 15 12:37:09 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E05 - Stille Nacht.mkv Jan 15 12:37:12 unraid root: cache-mover: #015 32.77K 0% 45.20kB/s 3:16:22 #015 68.71M 12% 65.53MB/s 0:00:06 #015 321.16M 60% 153.14MB/s 0:00:01 #015 532.58M 100% 177.65MB/s 0:00:02 (xfr#9, to-chk=2/12) Jan 15 12:37:12 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E05 - Stille Nacht.srt Jan 15 12:37:12 unraid root: cache-mover: #015 32.77K 67% 37.21kB/s 0:00:00 #015 48.73K 100% 55.27kB/s 0:00:00 (xfr#10, to-chk=1/12) Jan 15 12:37:12 unraid root: cache-mover: Die Kirche bleibt im Dorf - S02E06 - Kling, Glöcklein, Klingelingeling.mkv Jan 15 12:37:14 unraid root: cache-mover: #015 32.77K 0% 37.12kB/s 4:01:27 #015 32.01M 5% 30.53MB/s 0:00:16 #015 294.68M 54% 140.52MB/s 0:00:01 #015 537.85M 100% 172.82MB/s 0:00:02 (xfr#11, to-chk=0/12) Jan 15 12:37:14 unraid root: cache-mover: Jan 15 12:37:14 unraid root: cache-mover: sent 3.21G bytes received 228 bytes 256.68M bytes/sec Jan 15 12:37:14 unraid root: cache-mover: total size is 3.21G speedup is 1.00 Jan 15 12:37:14 unraid root: cache-mover: /mnt/disk1/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2/Die Kirche bleibt im Dorf - S02E01 - Ihr Kinderlein kommet.mkv Jan 15 12:37:14 unraid root: cache-mover: open file will be switched to new path Jan 15 12:37:15 unraid root: cache-mover: /mnt/cache/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2/Die Kirche bleibt im Dorf - S02E01 - Ihr Kinderlein kommet.mkv Jan 15 12:37:15 unraid root: cache-mover: ready to switch live Jan 15 12:37:15 unraid root: cache-mover: -: No such file or directory. Jan 15 12:37:15 unraid root: cache-mover: (gdb) Attaching to process 23308 Jan 15 12:37:15 unraid root: cache-mover: [New LWP 29193] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 29191] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 29190] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 29189] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 24503] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 24502] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 24498] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 23371] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 23311] Jan 15 12:37:15 unraid root: cache-mover: [New LWP 23309] Jan 15 12:37:15 unraid root: cache-mover: [Thread debugging using libthread_db enabled] Jan 15 12:37:15 unraid root: cache-mover: Using host libthread_db library "/lib64/libthread_db.so.1". Jan 15 12:37:15 unraid root: cache-mover: 0x0000145b3e4bcc4f in __futex_abstimed_wait_cancelable64 () Jan 15 12:37:15 unraid root: cache-mover: from /lib64/libc.so.6 Jan 15 12:37:15 unraid root: cache-mover: (gdb) $1 = 452 Jan 15 12:37:15 unraid root: cache-mover: (gdb) $2 = 973 Jan 15 12:37:15 unraid root: cache-mover: (gdb) $3 = 0 Jan 15 12:37:15 unraid root: cache-mover: (gdb) Detaching from program: /usr/libexec/unraid/shfs, process 23308 Jan 15 12:37:15 unraid root: cache-mover: [Inferior 1 (process 23308) detached] Jan 15 12:37:25 unraid root: cache-mover: (gdb) update access time: /mnt/cache/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2 Jan 15 12:37:29 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:37:29 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:40:11 unraid root: cache-mover: update access time: /mnt/cache/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2 Jan 15 12:40:15 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:40:15 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60 Jan 15 12:45:13 unraid root: cache-mover: update access time: /mnt/cache/medien/Serien/Die Kirche bleibt im Dorf (2013)/Season 2 Jan 15 12:45:17 unraid root: cache-mover: parse error: Invalid numeric literal at line 1, column 60
  18. Hi, sorry still having a question to pwm fan and it seems noone else had for now. I have set it up for CPU HDD HDD-extra I can see HDD and HDD-extra in the log (plugin) . Not the CPU fan. BUT: I get an email for every change the HDD fans do.... Sender: Console and webGui login account Topic: cron for user root /usr/local/emhttp/plugins/pwm-fan/scripts/pwm-fan.sh Text: set fan to value 134 or: Topic: cron for user root /usr/local/emhttp/plugins/pwm-fan/scripts/pwm_hdd_extra.sh Text: set fan to value 228 There is no log (in plugin) and no mail from CPU fan.. pwm2.... but I can control it. So every 2 minutes there is an email from unraid. In Unraid Notification settings there is email only selected for alerts... But I should get alerts also on Telegram, but there is no notification for fan... What do I have to disable? Makes no difference if "syslog" is yes or no or empty Sorry if it is that simple and I only cannot see... Mike
  19. Thanks for your help... Yes I did the wrong command and missed the echo when I tried the command for this posting.... your help... Yes I did the wrong command and missed the echo in this posting.... Initially I did the same commands for all fans and 2 did not work... and I also thought the error message was different... But nevertheless it does not care any more.... When trying again it now worked also for this 2 fans ! Great! Great suggestion... Yes standby temperature seems to be "0" so it works.... Now I am perfectly happy ! ( at least for this year ) Thank you very much for your work and also for your good support !
  20. Hi @alturismo thanks for your good work. I enjoy the new plugins especially the cache mover. But I have questions to pwm fan. I know I can also control CPU ( maybe no good Idea, but I'd like to set the minimum speed higher, because it does always go up and down and that's annoying) Have a Ugreen DXP6800 PWM3 and 4 are hdd fan, they work. PWM2 and 5 left, but when I try: /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_enable bash: /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_enable: Permission denied root@unraid:~# /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_enable bash: /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_enable: Permission denied I did already control CPU Fan with another plugin... 1) any solution ? I am not a linux expert 2) for the extra hdd, does it take the same settings for target temp, min rpm,..... ? I have 6 HDD and 2 fans... often only left HDD side is used.... 3) Can you add an option to respect the min rpm even when the HDDs sleep? That's the biggest problem for me now... The fans switch off when HDD goes to standby. The Ugreen CPU is often getting very hot, but it is much better when the 2 HDD fans are always running at a certain rpm Mike
  21. sure here the output: root@unraid:~# removepkg /boot/config/plugins/cache-mover/gdb-15.2-x86_64-1.txz No such package: gdb-15.2-x86_64-1. Can't remove. root@unraid:~# installpkg /boot/config/plugins/cache-mover/gdb-15.2-x86_64-3.txz Verifying package gdb-15.2-x86_64-3.txz. Installing package gdb-15.2-x86_64-3.txz: PACKAGE DESCRIPTION: # gdb (the GNU symbolic debugger) # GDB, the GNU Project debugger, allows you to see what is going on # inside another program while it executes - or what another program # was doing at the moment it crashed. GDB can do four main kinds of # things to help you catch bugs in the act: 1) Start your program, # specifying anything that might affect its behavior. 2) Make your # program stop on specified conditions. 3) Examine what has happened, # when your program has stopped. 4) Change things in your program, so # you can experiment with correcting the effects of one bug and go on # to learn about another. The program being debugged can be written in # Ada, C, C++, Objective-C, Pascal and many other languages. Package gdb-15.2-x86_64-3.txz installed. root@unraid:~# gdb gdb: error while loading shared libraries: libpython3.12.so.1.0: cannot open shared object file: No such file or directory root@unraid:~# ls -la /boot/config/plugins/cache-mover/ total 34464 drwx------ 2 root root 16384 Dec 23 19:42 ./ drwx------ 46 root root 16384 Sep 11 19:29 ../ -rw------- 1 root root 11776 Dec 17 12:22 cache-mover-2024.12.17e-x86_64.txz -rw------- 1 root root 11784 Dec 18 08:16 cache-mover-2024.12.18-x86_64.txz -rw------- 1 root root 11780 Dec 21 17:52 cache-mover-2024.12.20-x86_64.txz -rw------- 1 root root 11856 Dec 23 19:26 cache-mover-2024.12.23-x86_64.txz -rw------- 1 root root 734 Dec 23 19:42 cachemoversettings -rw------- 1 root root 8184 Dec 17 12:22 fdclose.txz -rw------- 1 root root 5361144 Dec 17 12:22 gdb-15.2-x86_64-1.txz -rw------- 1 root root 4249232 Dec 23 19:26 gdb-15.2-x86_64-3.txz -rw------- 1 root root 25515432 Dec 17 12:22 python3-3.11.10-x86_64-1.txz Mike
  22. Same for me, but I did not change anything... only installing update some minutes ago on unraid 7 rc 2 root@unraid:~# gdb gdb: error while loading shared libraries: libpython3.12.so.1.0: cannot open shared object file: No such file or directory
  23. Hi For me rc1 want's to start the array on its own. (I never enabled auto start anywhere) So I have not saved the passphrase.... It stucks "starting" the array... In the bottom line I can read that the array encryption key is missing (screenshot)... But I cannot stop the starting process nor insert my key anywhere.... I can only shut down and there also the message appears that the array encryption key is missing Rolling back to beta 4 and after reboot I can insert my password and start the array.... Mike PS: okay found that autostart was enabled (had to Google where). Try again to update with disabled autostart. PPS: After upgrading again, the autostart is again enabled and the same problem. I cannot disable it... When I disable it in disk settings and "apply", it is again enabled when I reopen disk settings unraid-diagnostics-20241203-2039.zip
  24. Thanks for your answer... Now I understand it clearly... I think you are right... I will use LUKS encryption with the same password for all... I will disable compression in unraid to avoid double compression and enable it for each dataset. (so I will choose better and slower compression for some seldom used and changed data) Thanks again
  25. @Ikersorry, don´t want to bother you.... I am really a noob, and try to help myself with google. Again the issues for me: 1) Child Dataset only unlock automatically when I create them on terminal with eg. "zfs create ssd/daten/isos", not in ZFS Master as new "child" dataset ssd/daten/isos 2) I can mountpoint of child datasets with ZFS Master to root of the drive when needed (eg. isos / domains) , but it is not automatically mounted, when I unlock the parent dataset in ZFS Master. The folder is empty... the parent is normally mounted... I have to use on terminal command "zfs mount -a" afterwards (thanks google) and it works then. 3) Child Dataset mounted to root of drive are also shown as normal folder in ZFS Master. So maybe something to improve for you or it is wanted as it is... Only need to know...

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.