Jump to content

mgutt

Moderators
  • Posts

    11,355
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by mgutt

  1. Ja das ist zu erwarten. Es liegt am XFS Dateisystem. Durch die Funktionen CRC und Reflink, wird ein gewisser Teil der Platte reserviert. Reflink ist nun "neu" und braucht relativ viel Platz. Reflink ist übrigens ein Snapshot Feature: https://blogs.oracle.com/linux/xfs-data-block-sharing-reflink
  2. Nein. Auch 15 Minuten wären kein Problem. Die meisten HDDs sind laut technischen Daten auf 500k Power Cycles ausgelegt.
  3. Lies mal hier: https://forums.unraid.net/topic/97165-smb-performance-tuning/
  4. Tja, kann dann ja eigentlich nur wieder wegen dem Kopierschutz sein. Wegen VLC probiere ich die Tage mal.
  5. https://forums.unraid.net/topic/88035-usb-creator-wont-detect-my-usb/?do=findComment&comment=942541
  6. There exists already a bug report: https://forums.unraid.net/bug-reports/stable-releases/windows-usb-creator-does-not-list-all-usb-flash-drives-r1169/ Solution: Other flash drive or use the manual method: https://wiki.unraid.net/UnRAID_6/Getting_Started#Manual_Method_.28Legacy.29
  7. Ja die Plugins scheinen leider kaum noch gepflegt zu werden: Wird sich wohl irgendwann einer die Mühe machen müssen das zu forken und als neues Plugin einzustellen. Freiwillige vor ^^
  8. Nice to know. Docs: https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html#:~:text=filesystem_check_changes Not sure how huge the impact is, but it can be lowered as follows which scans only in 10% of all page loads: 'filesystem_check_changes' => intval(str_shuffle('0000000001')[0]),
  9. Don't know if it was already mentioned. This is how to re-index the file folders if files were added through SMB etc: docker exec --user www-data Nextcloud php occ files:scan --all Replace "Nextcloud" against your Container name if it was changed. You could add a script which executes it on file changes similar to this: https://askubuntu.com/a/339241/227119 But add a pause so its not executed every millisecond
  10. Bedarf hätte ich nur bei zwei Platten (Dokumente und Backups). Bei meinen Medien-Sammlungen wäre es nur unnötiger Overhead. Eventuell mache ich das irgendwann. Aktuell kein Bedarf, weil ich eh immer zu Hause bin ^^
  11. Yes it is needed as /transcode will be created, even it is not mapped through the containers settings. So I will hopefully update my guide for the last time ^^ EDIT: Done.
  12. Is it needed? As /transcode does not exists, it should fallback to /tmp automatically.
  13. Tested this. After setting it the first time it works. But after stopping / starting the container it writes to /tmp/Transcode. Then changed to 700. Same game. Then changed to 0770. Same game. Result after setting 0770 and first start: 755 drwxr-xr-x 3 plex users 60 Feb 1 14:36 transcode Result after stop / start: 755 drwxr-xr-x 2 root root 40 Feb 1 14:37 transcode Executing this inside the container and it works again: chown 99:100 /transcode Another solution: Edit the container, change nothing and hit apply (which re-creates the container). So stop / start and restart does not set the owner. And now? EDIT: Seems to be a bug: https://github.com/docker/for-linux/issues/138
  14. If the transcode dir physically exists in the container, then this can happen. One user accidentally mapped his movies to /transcode/Movies and since then he was not able to map /transcode as a tmpfs path. Even after he corrected the wrong mapping, he was still not able to use /transcode. I think a fresh Plex installation would solve it (or an update?!). Not sure. But the solution was to use /transcode2 as the tmpfs path and changing this path in the Plex settings accordingly.
  15. Ich verschlüssele aktuell gar nicht. Von der Sicherheit her macht das keinen Unterschied. LUKS kann nicht geknackt werden, wenn das Passwort lang genug / zufällig genug ist (außer die Prozessoren sind in x Jahren viel schneller als heute). Natürlich vorausgesetzt, dass eine entsprechend starke Verschlüsselung ausgewählt wurde. Wählt man das als Nutzer aus oder ist das von Unraid vorgegeben?
  16. Das wäre sinnfrei, weil wenn jemand bei Dir einbricht, kann er ja beides mitnehmen. Die Idee dahinter ist, dass du die Keyfile jederzeit löschen kannst, damit ein Dieb die Platten nicht entschlüsseln kann.
  17. Preparations: - deleted all nextcloud dirs under /mnt/user/appdata - deleted all previous installed nextcloud apps in CA apps menu (which deletes the nextcloud user templates) Now I installed Linuxserver's Nextcloud container and changed the settings as follows: Installs as usual: Then I parallel installed knex666 Nextcloud container as follows: Now this bug happens (all output is in separate lines): And version is "not available":
  18. Is not needed as rw is the default: https://docs.docker.com/storage/volumes/
  19. Und das ist richtig "lustig", wenn man im laufenden Betrieb den Cache zwischen "No" und "Only" wechselt. Je nachdem hat man den Docker dann 1x auf der SSD und 1x auf der HDD installiert und weiß dann nachher evtl gar nicht mehr welche der beiden Dateien eigentlich die richtigen sind. So etwas cleveres ist mir auch schon passiert ^^
  20. Wie gesagt. Entweder VLC als Docker probieren oder eben alles in MKV wandeln und die Dateien öffnen und Zahlen umbenennen. Rest Filebot machen lassen. Eine andere Methode zeitsparende Methode sehe ich nicht. Ich habe meine Laufwerke in einem externen Gehäuse und verbinde sie so nur bei Bedarf mit meinem Rechner. Dadurch brauche ich kein riesen PC Gehäuse und könnte sie auch bei Bedarf mit dem Unraid-Server verbinden.
  21. I tested it with br0 and it works for me: Only the WebGUI entry in the dropdown was missing so I opened IP:8081 manually.
  22. @jonp It would be nice if you could update your first post as follows: https://forums.unraid.net/topic/35878-plex-guide-to-moving-transcoding-to-ram/?do=findComment&comment=894460 It contains the improvement of @ich777 which makes the guide even easier for the user. Using "/tmp" as mentioned in your post is dangerous as an unlimited RAM usage will probably cause server crashes.
  23. It should be: --mount type=tmpfs,destination=/transcode,tmpfs-size=4000000000 As /transcode is the default transcode path of Plex: This is really nice as it makes it even easier as this tmpfs path only exists inside of the Plex Container. I will update my Guide. Thank you!
  24. Mit einer Keyfile könnte man sowas machen: https://youtu.be/TSlHEBR1yfY Unraid nutzt LUKS. Das kann mit jedem Linux entschlüsselt werden: https://forums.unraid.net/topic/72980-mouting-a-hdd-containing-a-luks-encrypted-os/ Mit Gnome Disk Utility könnte es sogar per GUI gehen, wobei diese Screenshots jetzt keine Keyfile zeigen, sondern nur ein Passwort: https://linuxhint.com/encrypt_drive_ubuntu/ Schlussendlich könntest du die Platte aber auch mit irgendeinem Rechner verbinden und mit einer Unraid Testlizenz entschlüsseln.
×
×
  • Create New...