afl

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by afl

  1. In parallel i had the exact same issue... My docker service crashed every 3-4 hours (out of sudden) and i had to reboot the whole machine to bring it back up. On Tuesday night, i did a memtest (no errors found), checked the stick with Windows Health Utility and the MacOS Health Utility (no Errors Reported) and finally replaced the .bz files on the stick itself. Since then, everything runs stable and i did not have any problem anymore.
  2. Hi all, we recently moved into a house which resulted in a major network expansion and many new Services and devices. Last thing i configured previous week was frigate with neolink and connect them to my Homeassistant (HA is running on a dedicated thin client). Some years ago, I've build my server to idle very low (was hitting around 10W). But since using Frigate (using coral) and 12 cams, my server "idles" with 50-60% CPU Usage. I've played with an upgrade for the last months since my cpu sometimes bottlenecks (e.g. Image imports to Immich, etc.). Until today i just sayed "i have a server to do it in the background and can let it do for the next hours". But now even the unraid UI got slower and most Apps i am hosting have also increased access times. Current Setup is: i5 7500 + some msi standard mobo 32GB DDR4 RAM (no ECC) no dGPU Besides many small Apps, those are the most resource hungry in general: Nextcloud-aio (multiple users) Jellyfin (multiple parallel Users) Immich (during imports) Frigate + Neolink (12 5MP cams - will be upgraded to 12MP in Future) When upgrading, I would like to have ECC since i had some werid issue in the past that seemed to be RAM related (RAM tests where successful afterwards). I was thinking about getting a used DDR5 Intel/AMD setup when they get cheap in future, but now i am thinking about just getting a DDR4 system since DDR5 uses more power anyways and i doubt that my system will profit from the RAM speed increments. So: Would you recommend an upgrade for me? If yes, which? How does AMD iGPU support compares against Intel these days? Back in the days, QSV was just superior and well supported but i read more and more about good experiences with AMD iGPU.
  3. So did you just disable fTPM or what settings have you done
  4. Hi, I've set OVPN up to be used by multiple containers. Internet Access is working great and also the acces from local net to the containers. Now i have the "problem" that i want the containers (using the vpn) to communicate with each other. The Docker Name Resolution (via container name) does not work. I could use docker internal IP but that will change after reboots, etc. How did you solved the problem? Can we add a route to localnet within the ovpn config?
  5. I got another question regarding the hardlinks. lets assume i have "/mnt/user/appdata/folder1/folder2/file.jpg" and i create the first backup. In this case, the file will be transferred and be created on my backup drive. Now, i "mv" the file on unraid from "/mnt/user/appdata/folder1/folder2/file.jpg" to "/mnt/user/appdata/folder1/file.jpg". After, i create a second Backup. On the unraid host, i just "moved" the hardlink. What happens to the backups? will the hardlink be moved also or will the file be copied a second time since the drive is a additional filesystem with it's own inodes and rsync just copies the current state?
  6. Hi, first of all, thank you for the great script! Unfortunately the script seems to have some trouble with the ssh alias option. I have a remote ssh source i want to backup. Since i don't use passwords but ssh-keys instead, i must specify the specific identity file to ssh which why i added the ssh alias: alias ssh='ssh -i /root/.ssh/id_ed25519_userX' unfortunately this alias don't seem to be picked up (even if i put the -vvv option in it, no details why "permission denied" pops up. As a workaround i created a .ssh/config file on unraid and added my Host with it's related identity file there. Now it works! Is this a bug or should it behave like this?
  7. Hey, had this plugin running for some months on Unraid 6.9.3 and upgraded to 6.10.3 today. unfortunately the command "docker-compose" cannot be found in terminal anymore. I also tried removing and reinstalling the plugin with restart but it did not work. Does anyone has an idea on how to fix this?
  8. This Problem ocured after exchanging drives. I had 4 Seagate 2.5" 5TB drives and replaced them with 2 TOSHIBA 18TB HDDs. With those Seagates, everything was fine. My Toshiba Parity drive remains shut down and the disk log does show a "read SMART" some days ago only. My Data Drive does spin up between 30min to 4hours after spin down for "READ SMART" Should not be a Firmware Issure since both drives differ only by 3 digits on their serial. Tried with Docker / VM on and off. No change.
  9. Hi, is there an option / plugin to see, how often the Disks are spun up / down and the uptime period? E.x. Disk spun up 50 times last week or visualized in a bar (coloring the uptime and downtime in gray e.x). I want to evaluate whether it worth to spin them up / down or keep them spinning 24/7. Regards
  10. Well, i shortened the paths, just as an example. in real it would be /mnt/user/appdata/minio/.minio.sys:/data/.minio.sys /mnt/user/minio:/data appdata is on a SSD-Pool only and /mnt/user/minio is on my HDD-Array
  11. Hi, I deployed minio and mounted the array to /data into the container. Now i have the problem, that my array is not spinning down because minio does some r/w on /data/.minio.sys/* files. I tried to do a sub mount: /ssd/pool:/data/.minio.sys /array:/data But now minio refuses to start: ERROR Invalid command line arguments: Cross-device mounts detected on path (/data) at following locations [/data/.minio.sys]. Export path should not have any sub-mounts, refusing to start. > Please check the FS endpoint HINT: FS mode requires only one writable disk path Example 1: $ minio server /data/minio/ Is there any option to make minio write maintanence io to ssd instead of array?