frozenpine

Members
  • Posts

    5
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

frozenpine's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Thanks, I might not need hard links. As for SMB as a replacement, I switch from it to NFS because temporarily losing shares would leave unraid in state that would require unclean shutdown. Maybe all that has been fixed in 6.8 :>)
  2. I have found when this happens restarting the container that uses the share is all that is needed. If you have more than container using shares restart them one at time until the errors stop. 'GUI they also show up as "0 B"' this might be a GUI issue. I see shares NFS and SMB listed like this frequently not new to 6.8. Refreshing the page normally cleans it up, maybe there is a timeout on reading this data so 0 is displayed so the page doesn't hang.
  3. Yes, I use unraid. While I could change to transmission, I wouldn't anytime soon. I like all of my client options with deluge. Only work is changing your install file to include the extra packages and pip install the modules. The mod install sample I gave is the only difference between your docker and the one I made https://hub.docker.com/r/frozenpine1/arch-flexget-fp/ https://github.com/frozenpine1/arch-flexget-fp If you add deluge and rar, I'll switch to just using your docker directly. Otherwise if you want to keep yours transmission only, I completely understand and ill periodically look for your updates and make my mods until I learn how to do a proper fork/pull. "connect seamlessly to 2 different Deluge instances running on unraid." I'm doing this too.
  4. Yes I looked at binhex version but don't care about the VPN, your version was easier to configured and just worked. I don't need both transmission and deluge only rar and could switch to transmission but i like deuge. I understand if you did not want to add bloat. I made a personal docker with what I need. Its a complete plagiarism of your work.
  5. Any chance you could modify your install script to include support for deluge and rar? I can figure out how to do a pull request if needed. /setup/root/install.sh Orig: # define pacman packages pacman_packages="python2 python2-pip" # install pre-reqs pacman -Sy --needed $pacman_packages --noconfirm pip2 install --upgrade setuptools pip2 install flexget pip2 install transmissionrpc Mod: # define pacman packages pacman_packages="python2 python2-pip unrar deluge" # install pre-reqs pacman -Sy --needed $pacman_packages --noconfirm pip2 install --upgrade setuptools pip2 install flexget pip2 install transmissionrpc pip2 install service_identity pip2 install deluge pip2 install rarfile