Everything posted by Greyberry
-
[Support] Linuxserver.io - Plex Media Server
Hey, I assume "Network Type" in the docker-template is standard on "Host" because otherwise plex would deny browsing the webinterface without plexpass. However if you set the "List of IP addresses and networks that do not require authentication" (might not be original-text-label; translated from german) in the options menu under Server > Settings > Network to the standard private network classes (10.0.0.0/8,172.16.0.0/12,192.168.0.0/16) you can also browse it from your private network with "Network Type" set to "Bridge" so that the internal Docker-Network is used. I dont know if 0.0.0.0/0 does work, this would turn off this stupid plex-pass-enforcement alltogether. This seems to be a good case for an environment-variable / standard-value, doesn't it?
-
[Support] for atribe's repo Docker images
That worked, thank you! 🙂
-
[Support] for atribe's repo Docker images
Hi, I am moving from a native install (without docker) on a VM to this docker-image on UNRAID and so far everything is good. But I am not that experienced with docker, so I got this issue: In my original installation I made some edits in /etc/grafana/grafana.ini which I want to move to the docker-container as well. [analytics] reporting_enabled = false check_for_updates = false [security] admin_user = [censored] admin_password = [censored] [users] allow_sign_up = false [auth.anonymous] enabled = true org_name = Main Org. org_role = Viewer With this settings i managed that users could browse grafana without login, but login was required for editing the dashboards. In addition it turned off analytics. I know i can edit the file also within the docker-container but as far as I know, this is not the proper way to do it. is it? The part that the admin password is set via "Container Variable" is especially confusing for me. Now every username does work, as long as the admin-password is right.!?
-
Install 'bc' command on Unraid
Wonderful! Thank you very much to both of you. I am new to unraid and its community, but had the best community-experience whatsoever. 🙂 Hopefully I can give something back at later times.
-
[Plugin] CA User Scripts
I see, I have not thought of that. Thank you for the advice! ... but then again I am not able to see the logs in the WebInterface.
-
Install 'bc' command on Unraid
Hello everyone, For a shell-script I need the command "bc", which does basic arithmetics. (division in my case) In Ubuntu it would be a "apt install bc" but I don't know how to add/install a command in Unraid. Man-Page: https://linux.die.net/man/1/bc regards
-
[Plugin] CA User Scripts
Is there an option to run the script after boot, regardless of the array is up or down? I tried with custom "@reboot" as it would be with cronjobs/crontab implemented but that seems to not work out. Is there any better solution for running a script "service"-like? Or run the script every x seconds? (I have implemented this in the script now; I fetch some data, run a regex and write the result into a influxdb)
-
USB Passthrough: device location changing
Halleluja it is working! This was a real pain. As you mentioned the udev-rules run before or after the "/boot/config/go" script. Seems that this depends on each case and therefore is a prime example of a race-condition. The developers should have a look at this IMHO. I attached the trigger command directly to the boot script, saving the "User Scripts" App. My "/boot/config/go" : #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & # add udev at boot cp /boot/config/rules.d/90-usb.rules /etc/udev/rules.d/90-usb.rules chmod 644 /etc/udev/rules.d/90-usb.rules udevadm trigger --attr-match=subsystem=tty The reload command was not necessary in my case. 🤷♂️