Jump to content

ich777

Community Developer
  • Posts

    15,740
  • Joined

  • Days Won

    202

Everything posted by ich777

  1. ich777

    fritz exporter

    Wenn dann würde ich einen NUT exporter machen wenns um USVs geht, aber ich hab keine USV...
  2. Nein, muss nichts konfiguriert werden. Beim checkmk Agent ist keine config notwendig, das sind passive clients und connecten einfach so ohne authentifizierung.
  3. Since when did this happen exactly? This would change nothing to a Docker container, this has to be something inside the container. Please try to start over, delete the container, then go to your appdata directory and delete the jdownloader2 directory, then go to the CA App and redownload the container
  4. No, I don't do changelogs for my containers usually. I updated only the baseimage to Debian Bullseye and also had to update one package because on Bullseye it's named a little different. Had to revert the changes that I did yesterday because for some people it doesn't work, so the container is working like before. I would say the benefits are improved security...
  5. Like the Reddit post tells you, first the MariaDB, because Photoprism needs a Database that it can connect to.
  6. A quick Google search brought up this: But I would recommend skipping Step 4 from the Reddit tutorial and put in the credentials here (please read the description from the variable): Hope that helps, I also think that @Sycotix has also made a Youtube video on this.
  7. Die schleppst du hin und her, ich würd mir da eher sorgen wegen dem Gewicht machen... da musst du kein Workout mehr machen... Sowas hatte ich auch mal, und keine Angst mir ist egal wieviel dein System verbraucht... Das Problem mit Linux und WLAN ist immer wie konfigurierst du es? Viele Chipsätze werden zwar unterstütz aber sie funktionieren nicht immer einwandfrei und weil es sich um ein Server Betriebssystem handelt fällt WLAN eher weg und wird auch wahrscheinlich nie offiziell unterstützt. Mal so anders gefragt, funktioniert WLAN OOB auf Proxmox oder TrueNAS (ich hab ehrlich gesagt keine Ahnung)? Also eine WLAN bridge wäre für dich nichts? Ich weiß nicht was du mit den CPUs machst bzw. Beruflich machst aber ich muss ganz ehrlich sagen Cinebench ist nicht wirklich ein Benchmark der was über die richtige Performance aussagt bzw. werden die CPUs bei Single core ziemlich hinterherhinken. Hab erst von 2x Xeon 2670 auf einem ASUS Z9PA-D8 (fast das gleiche wie deins) auf einen i5-10600 umgestellt und ich kann dir nur sagen mit dem Kompiliere ich den unRAID Kernel schneller als auf meinem alten System (ca 1 bis 2 Minuten spare ich sicher ein, auch das Neukompilieren der ganzen Pakete für die Plugins die ich bereitstelle konnte ich von 45 Minuten auf 30 Minuten drücken).
  8. This is a setting that you have to in your BIOS when you got integrated or onboard graphics. You have to set the primary graphics adapter to integrated or onboard. On what unRAID version are you? Open up a Terminal from unRAID and try this command and then reboot: sed -i '/disable_xconfig=/c\disable_xconfig=true' /boot/config/plugins/nvidia-driver/settings.cfg (no guarantee that it works but you can try it) If you have no GUI output after you've rebooted issue this command from a unRAID terminal and reboot again: sed -i '/disable_xconfig=/c\disable_xconfig=false' /boot/config/plugins/nvidia-driver/settings.cfg (this will revert the changes from above) Is something plugged into the VGA port, some onboard controllers need actually a monitor or dummy plug connected to work even when you've set the primary GPU to the internal/onboard one.
  9. I don't recommend it doing it that way but it is possible but can result in lock ups from the entire server when done wrong. You have create a custom script or something similar which you can trigger from unRAID itself and you should be good to go. You can start a VM from a script or the CLI with: virsh start VMNAME You also can do that with a container: docker start CONTAINERNAME Replace 'start' with 'stop' to stop the VM/containers. Hope that helps.
  10. Just create a post in the main part of the German sub forums with the prefix [VERKAUFE] in the title. I think you reach more people by also posting there.
  11. I don't have any of those editors installed in Krusader, only gedit. Sure just do: apt-get update And then search for the prefered app for Debian and then install it with: apt-get install YOURAPP
  12. Container is done and will be available in the CA App in the next few hours.
  13. Can you try to pull the update that I've now pushed?
  14. Hab ich nicht nur gesagt sondern sogar einen Screenshot irgendwo gepostet... Ich würd auf jeden Fall VirtIO als Interface benutzten damit hast du nur minimalen overhead und du hast auch den Vorteil von Linux Caching.
  15. Currently I'm having very limited time and such network issues I'm not too familiar with... I will look into it when I got more time...
  16. I thought Jellyfin is working but reverse proxy isn't working? If only reverse proxy isn't working I would strongly recommend posting over on the SWAG support thread.
  17. I think so, since if you install the latest build from Windows 11 the installer even doesn't complain anymore about a incompatible CPU (6700k).
  18. Another update (I know there is much on the screen but I wanted to show that Bitlocker is working, TPM is working and Secure Boot is available):
  19. Darf ich hier nochmal einharken, wie laden die Kameras das auf die Fritzbox? Warm lädst du es nicht gleich nach unRAID hoch in einen SMB share?
  20. Kann man drüber Streiten... Mir ist 'cp' meistens lieber und anschließendes entfernen. Man könnte das mit 'if' auch mit 'mv' machen: #!/bin/bash # Move files from source to destination if mv /mnt/remotes/DEINQUELLVERZEICHNIS/* /mnt/user/DEINZIELVERZEICHNIS/ ; then logger "Move from share /mnt/remotes/DEINQUELLVERZEICHNIS to /mnt/user/DEINZIELVERZEICHNIS successfull!" else /usr/local/emhttp/plugins/dynamix/scripts/notify -e "Move Failed" -d "Move from share /mnt/remotes/DEINQUELLVERZEICHNIS to /mnt/user/DEINZIELVERZEICHNIS failed!" -i "alert" exit 1 fi
  21. I've tested this with German and it works flawlessly even with root mode. But I've also found other things that are different in other languages, maybe the languages cause things to get sketchy...
  22. Das funktioniert aber nur bei Dateien die im Ziel nicht vorhanden sind. 'mv' ersetzt keine Dateien, deshalb 'cp'
  23. Also hab ich nicht probiert aber du kannst: #!/bin/bash # Copy files from source to destination if cp -R /mnt/remotes/DEINQUELLVERZEICHNIS /mnt/user/DEINZIELVERZEICHNIS ; then logger "Copy from share /mnt/remotes/DEINQUELLVERZEICHNIS to /mnt/user/DEINZIELVERZEICHNIS successfull!" else /usr/local/emhttp/plugins/dynamix/scripts/notify -e "Copy Failed" -d "Copy from share /mnt/remotes/DEINQUELLVERZEICHNIS to /mnt/user/DEINZIELVERZEICHNIS failed!" -i "alert" exit 1 fi # Remove all files from source rm -rf /mnt/remotes/DEINQUELLVERZEICHNIS/ Das wäre jetzt wirklich sehr vereinfacht gemacht, wenn das 'cp' fehl schlägt dann steigt er aus (eben wegen 'exit 1' = Fehler) und gibt einen Fehler im unRAID GUI aus, wenn alles geklappt hat schreibt er ins Syslog den Eintrag von 'logger'. Vergiss aber nicht wenn du den seltenen Fall hast das deine Fritzbox sich disconnected von unRAID und dann wieder connected dann könnte es sein das er trotzdem alles löscht weil eben kein Fehler, aber das müsste wirklich schon ein blöder Zufall sein.
×
×
  • Create New...