Everything posted by ICDeadPpl
-
[Plugin] CA User Scripts
Is the 'stop' file supposed to be in the '/boot/config/' also?
-
Unraid 14th Birthday Case Badge Giveaway
I'd like 2 badges, if and when these become available.
-
Unraid 14th Birthday Case Badge Giveaway
Happy birthday! I've been using Unraid since 2012. 😀
-
[Support] binhex - DelugeVPN
ItConfig for Deluge 2.0 released: https://github.com/ratanakvlun/deluge-ltconfig/releases/tag/v2.0.0
-
Chrome OS
I don't know if this helps, but I'm linking to an article about running Chrome OS from a USB drive. https://www.fossmint.com/run-google-chromium-os-from-usb/ The interesting part is a link to Chromium OS builds: https://chromium.arnoldthebat.co.uk/ Maybe those images will work better?
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
How come any edits I make to 'quassel-web.subfolder.conf' gets undone when I restart the Letsencrypt container? I have other proxy conf files with edits that work just fine, they don't get reverted to default values when I restart Letsencrypt.
-
[Support] Linuxserver.io - Quassel-Web
Just curious, when is this going to be merged in template repo? It's been over a week since the announcement.
-
[Plugin] Advanced Copy and Move for unRAID v6.8.3 and later
Is it advisable to add 'cp' and 'mv' as aliases for 'gcp' and 'gmv'?
-
unRAID 6 DevPack - Dev tools (gc, gcc, glib, make, etc.)
I'd like to request HTTPie, a command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more. https://httpie.org/ https://github.com/jakubroztocil/httpie https://slackbuilds.org/repository/14.2/network/httpie/?search=httpie
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Yeah, maybe. I'll post a request in the Dev Pack thread.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I'd like to request HTTPie, a command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more. https://httpie.org/ https://github.com/jakubroztocil/httpie https://slackbuilds.org/repository/14.2/network/httpie/?search=httpie
-
[Support] Linuxserver.io - Nextcloud
I suggest you read this post, on how to add shares to Nextcloud without the need of copying/moving files:
-
[Support] Linuxserver.io - Nextcloud
You don't need to move your files into Nextcloud. What you can do is enable the External Storage plugin in Nextcloud Apps and add your shares as "local". 1812 had instructions on how to do this just a few posts above yours:
-
[Support] Josh5 - Unmanic - Library Optimiser
+1 on this. Maybe look for a file named ".um_ignore" in the movie's folder. Assuming one has each movie in its own folder.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Request: dive is a handy tool for exploring Docker images and layer contents. https://github.com/wagoodman/dive
-
[Support] Linuxserver.io - Radarr
I had the same problem. If you are using NzbGet for downloading, you can add a script for the movie category in NzbGet settings which deletes the folder after all other post-processing is done. #!/bin/bash ########################################### ### NZBGET POST-PROCESSING SCRIPT ### ### NZBGET POST-PROCESSING SCRIPT ### ########################################### rm -rf "$NZBPP_DIRECTORY" POSTPROCESS_SUCCESS=93 POSTPROCESS_ERROR=94 exit $POSTPROCESS_SUCCESS Make sure that the script is run last int the Extensions list in the movie category setting in NzbGet. I have it just after the nzbToRadarr (https://github.com/clinton-hall/nzbToMedia) script has been run.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Added Adding bash-completion for Docker in your /boot/config/go: curl https://raw.githubusercontent.com/docker/docker-ce/master/components/cli/contrib/completion/bash/docker -o /etc/bash_completion.d/docker.sh
-
[Plugin] Network Stats
The plugin creates the "/mnt/cache/appdata" folder by default (hardcoded?), it should consider using the "Default appdata storage location" setting maybe?
-
[Support] Linuxserver.io - Nextcloud
Of course it's possible to add more fine grained shares/paths, but since I'm the only user with access to this server, I don't bother.
-
[Support] Linuxserver.io - Nextcloud
No, I added a new path config to the docker template, with the "/mnt" share both on host and container path.
-
[Support] Linuxserver.io - Nextcloud
Yeah, I've added the "/mnt" to the docker template. Forgot to mention that, sorry!
-
[Support] Linuxserver.io - Nextcloud
In NextCloud, enable "Apps" - " External storage support". Then in "Settings" - "External storages", add external storage of type "local". Give the Folder a name, and in in the "Configuration" textbox you type the mount, like "/mnt/user/Stuff". Without the quotes of course.
-
[Support] binhex - DelugeVPN
I can't reach the WebUI either, if I don't go via the proxy. I've solved this for the browsers on my Windows 10 by using a "proxy.pac" file (look for "automatic configuration script" in browser proxy settings) with the following content: function FindProxyForURL(url, host){ if(dnsDomainIs(host,"192.168.1.105")) return "PROXY 192.168.1.105:8118"; } The "proxy.pac" file is served from my LetsEncrypt docker.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Does reverse proxying nzbGet, Sonarr, Radarr, etc, affect connectivity from outside of the LAN and third party apps? Thinking of mobile apps (NzbManager & Nzb360) and Usenet indexing sites, which allow clicking and submitting a post to NzbGet via a button. Which authorization method should one use? The app's built in ones, or have Nginx manage it?
-
[Support] Linuxserver.io - NZBGet
Could we get these python modules added: py2-requests-oauthlib py2-markdown py2-decorator These are required to get the subtitles post processing script from https://github.com/caronc/nzb-subliminal to work. Now I have a script that runs "apk add --update py2-requests-oauthlib py2-markdown py2-decorator" after updating of the docker as a workaround.