ICDeadPpl

Members
  • Posts

    224
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ICDeadPpl

  1. 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
  2. Forgot to mention that I just get a black screen, with nothing showing. No shell, no login form, nada. Ssh and browsing the UI from another device works fine. I also haven't any logs to attach, will get to it later.
  3. I don't get a GUI either on 6.6.7. Worked fine on 6.6.6. I have not tested in safe mode, will try when I get the time to do that.
  4. I suggest you read this post, on how to add shares to Nextcloud without the need of copying/moving files:
  5. 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:
  6. +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.
  7. I get the same error: plugin: updating: unRAIDServer.plg plugin: downloading: https://s3.amazonaws.com/dnld.lime-technology.com/stable/unRAIDServer-6.6.4-x86_64.zip ... done plugin: downloading: https://s3.amazonaws.com/dnld.lime-technology.com/stable/unRAIDServer-6.6.4-x86_64.md5 ... done wrong md5 plugin: run failed: /bin/bash retval:
  8. Request: dive is a handy tool for exploring Docker images and layer contents. https://github.com/wagoodman/dive
  9. 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.
  10. 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
  11. The plugin creates the "/mnt/cache/appdata" folder by default (hardcoded?), it should consider using the "Default appdata storage location" setting maybe?
  12. Is there a script or package that would be useful in converting images from on format to another on Unraid? I'm interested in GIF to PNG conversion.
  13. The speech bubble on the left side of the topic, see attached picture.
  14. 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.
  15. No, I added a new path config to the docker template, with the "/mnt" share both on host and container path.
  16. Yeah, I've added the "/mnt" to the docker template. Forgot to mention that, sorry!
  17. 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.
  18. This is what I have in my profile now, although the forum shows the much older info: Mobo: MSI - Z87-GD65 GAMING (MS-7845) | CPU: Intel® Core™ i7-4770K CPU @ 3.50GHz | Memory: 16GB DDR3 1600MHz (2x8GB) | Case: BitFenix Shinobi Miditower | PSU: Be Quiet! Pure Power 730W PSU Parity: Western Digital Red 4TB Array: Western Digital Red 4TB (x2) | Seagate Barracuda 7200.14 3TB | Seagate IronWolf 4TB (x2) Cache: Western Digital Gold 1TB Flash: SanDisk USB 3.0 Ultra Fit 16GB unRAID Plus 6.5.3
  19. My signature is now editoed to "TEST 2", but the forum still shows the old one.
  20. It still showed the old signature (with v6.4.1), when I deleted everything and just had "TEST" in the signature. Now I've edited it to show the up-to-date signature (with v6.5.3), but the forum shows the old version still.
  21. Now my profile is edited to just the word "TEST".
  22. I have my signature set up as this picture shows: But today when I posted in a thread, I noticed that my signature looked like this (Notice that the unRAID version is wrong, as is the Parity disk and array disks info): Where does the old forum signature get pulled from?
  23. 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.
  24. +1 on this! Here's instructions on how to build it, to host Bitwarden yourself: https://help.bitwarden.com/article/install-on-premise/ I've not been successful, Docker Compose is new to me.