Everything posted by Dimtar
-
[Support] Linuxserver.io - Deluge
I know the answer is a little late but my torrent list is gone too. Frankly I just gave up on Deluge.
-
[Support] Linuxserver.io - NZBGet
It says out of memory, how much memory does your server have?
-
[Support] Linuxserver.io - Transmission
I agree that it may be broken, personally for me its actually ideal because a restart sets all my settings to the things I want.
-
[Support] Linuxserver.io - Transmission
I can't say whether or not this is a "bug" but personally if I have to make changes I edit the config directly. Obviously this isn't everyones cup of but it works really well for me
-
[Support] Linuxserver.io - Sonarr
Yes it does work but as far as I can see Docker needs access to all the folder but in a higher level version. So for example /mnt/user - /mnt/user I would think you would actually have to go to a lower level. Different top level folders within /mnt/user winds up being effectively different volumes. You would have to set everything up to access /mnt/cache instead. I understand what you mean, I know this works. /mnt/user/media/transmission /mnt/user/media/tv
-
[Support] Linuxserver.io - Sonarr
Yes it does work but as far as I can see Docker needs access to all the folder but in a higher level version. So for example /mnt/user - /mnt/user
-
[Support] Linuxserver.io - Sonarr
To my limited knowledge Sonarr respects the seeding settings of the program. My guess is that it considers it "seeded" and removes it, have you watched the logs at it does this? If you are using a downloader, you don't need to use Drone Factory.
-
[Support] Linuxserver.io - Plex Media Server
My Plex docker that has worked for months stopped around 12:07AM so a little while after the latest update as I have my dockers auto update nightly. It won't start and I cannot really see where to get logs from as the usual log remains empty. I'll report back if I find anything. EDIT: Resolved the issue.
-
[REPO] LinuxServer.io Docker Repo
Another day another request. Radarr, a fork of Sonarr for Movies. http://feathub.com/linuxserver/linuxserver.github.io/+64 https://github.com/galli-leo/Radarr https://www.reddit.com/r/usenet/comments/5krgvl/i_created_a_fork_of_sonarr_with_support_for/ Given its a fork of Sonarr it might be a little easier to setup as a docker. Cheers.
-
[REPO] LinuxServer.io Docker Repo
It could be one of our community apps? We make it and you support it? Sent from my LG-H815 using Tapatalk I would be happy to help support it sure.
-
[REPO] LinuxServer.io Docker Repo
Just added watcher as a docker request: http://feathub.com/linuxserver/linuxserver.github.io/+62 Discussion here: Hopefully people will upvote. Either way, thanks to everyone in the LinuxServer team, you're all great!
-
[Plugin] rclone
Thanks for your help bobbintb and Waseh. I hope they support rsync etc. in future but for now rclone copy is working and the mount remains working.
-
[Support] Linuxserver.io - NZBGet
Thanks Squid and Trurl. I ended up "fixing" it by pausing downloads whilst an unpack is happening, I think maybe the unpack plus load on my cache drive was causing a high load average due to IO wait. I am not 100% sure but thats ok it seems to be working.
-
[Plugin] rclone
There goes that theory, thanks though.
-
[Plugin] rclone
Do you run a mount and if so, where is your mount point?
-
[Plugin] rclone
I am using Putty via Windows to access the server and run commands. I mounted with this: nohup rclone mount egd:ext /mnt/user/media/ext --allow-other </dev/null >/dev/null 2>&1 & Then I run rsync etc. to the new mount, at no point do I close the terminal/putty. Is this what you meant?
-
[Plugin] rclone
This didn't work, I appreciate it but the same behaviour occurred. It just forgets the mount somehow.
-
[Plugin] rclone
Testing an encrypted Google Drive mount via the beta version of the plugin. I mount it and it works fine but after a few minutes whatever was inside the mount disappears, its very odd. It seems like a disconnection because the encrypted files appear to remain on GD. Is anyone else experiencing this?
-
[Support] Linuxserver.io - NZBGet
Just out of interest, what kind of load average do people get unpacking downloads? I am trying to diagnose an issue because it seems like there is such a load on the file system other things are being held up.
-
[Support] Linuxserver.io - NZBHydra
Yes it is.
-
[SUPPORT] pihole for unRaid - Spants repo
This bit is strange!... are your running two of them?. I would delete/rename the appdirectory for pihole and try again.. Is this related? Its the template on a new setup: https://puu.sh/s3sfM/a728584fb0.png
-
[SUPPORT] pihole for unRaid - Spants repo
I just deleted and re-created with the new 'pihole' docker. Wanted to let you know that there's no longer a 'WebUI' option when it's running and I click the pihole docker icon. If I manually go to '<tower ip>/admin' the pihole web ui loads. Did you install the one from the beta section? I found there is two dockers, they are very different.
-
[Support] Linuxserver.io - Nextcloud
Really unlucky I guess, congrats on having it sorted.
-
[Support] Linuxserver.io - Nextcloud
After you created the .pem file did you update nginx config to look for a .pem file instead of .crt?
-
[Support] Linuxserver.io - Nextcloud
From memory I had a similar problem, I sorted it by using a .pem file instead of a .crt. Here is the excerpt from my guide a few pages back, give it a go? Navigate to the nextcloud keys folder, in my case: /mnt/user/appdata/nextcloud/keys Remove/rename the current cert.key and cert.crt files. Run this command: openssl req -nodes -newkey rsa:2048 -keyout cert.key -out cert.csr Follow the wizard through to generate your cert.csr and cert.key. Use the cert.csr to activate your newly purchased SSL cert with ssls.com Using the SSL cert information make a file called cert.crt using the SSL cert and another called inter.crt with the intermediate CA. Run this command to concatenate the two new files: cat cert.crt inter.crt >> cert.pem The relevent line in my config file: ssl_certificate /config/keys/cert.pem;