datruedave

Members
  • Posts

    112
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

datruedave's Achievements

Apprentice

Apprentice (3/14)

2

Reputation

  1. Ah, well, that's redundant, then. The share is set as public, but Windows still asks me for a username/pass to access. I just looked in the SMB settings, though, and there's still some "appshare" weirdness there in a section called "Samba extra configuration." Should I remove some of that?
  2. Ugh, so now, on top of the Transmission docker not working, I can no longer move files in Windows. It says I don't have permission.
  3. That didn't help. I wonder what happened? How can adding that path screw everything up?
  4. I don't see that anywhere in the GUI, so I'm guessing I have to do command line stuff to see in that vdisk? I tried rebooting the entire server to see if the Transmission Docker would work again. No joy. I'm going to try removing that path and seeing if that helps, but I don't see how that would cause this...
  5. Hmmm, so I tried adding a path to make sure the /downloads/complete thing didn't screw anything up ever again, and now all my torrents are gone again. Here's my docker run, and I bolded the only path I changed: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='transmission' --net='host' --privileged=true -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'TCP_PORT_9091'='9091' -e 'TCP_PORT_51413'='51413' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/user/appdata/transmissionD/config/torrents/':'/watch':'rw' -v '/mnt/user/Books/Audiobooks/':'/downloads/Books/Audiobooks':'rw' -v '/mnt/user/Books/Comic books/':'/downloads/Books/Comic books':'rw' -v '/mnt/user/Books/eBooks/':'/downloads/Books/eBooks':'rw' -v '/mnt/user/Movies/':'/downloads/Movies':'rw' -v '/mnt/user/Sounds (music)/':'/downloads/Music':'rw' -v '/mnt/user/TV/':'/downloads/TV':'rw' -v '/mnt/user/Videos (Music)/':'/downloads/Videos':'rw' -v '/mnt/user/appdata/transmissionD/downloads/':'/root/Downloads':'rw' -v '/mnt/user/Dave Drive/TransmissionDockerComplete/':'/downloads/complete':'rw' -v '/mnt/user/appdata/transmissionD/config/':'/config':'rw' 'linuxserver/transmission' b2a3036dd1e5cba5ea906c582be7298e5bd61ded2414a5bb0b4c15c7d35bdc73 The command finished successfully!
  6. It works when moving from one location to another when the locations are both mapped. I just don't know how the docker.img thing works. Is there a way to view the files within docker.img?
  7. It was actually /downloads/complete, so that would go to the docker.img, right? But changing the data location within Transmission should move it all out of there?
  8. So, after filling up the docker.img again, and using Transmission to move the data back out of that root location, I ran the command you asked for previously. This is the result this time: root@Serenity:~# df -h Filesystem Size Used Avail Use% Mounted on rootfs 7.6G 811M 6.8G 11% / devtmpfs 7.6G 0 7.6G 0% /dev tmpfs 7.7G 0 7.7G 0% /dev/shm cgroup_root 8.0M 0 8.0M 0% /sys/fs/cgroup tmpfs 128M 264K 128M 1% /var/log /dev/sda1 7.5G 412M 7.1G 6% /boot overlay 7.6G 811M 6.8G 11% /lib/modules overlay 7.6G 811M 6.8G 11% /lib/firmware tmpfs 1.0M 0 1.0M 0% /mnt/disks tmpfs 1.0M 0 1.0M 0% /mnt/remotes tmpfs 1.0M 0 1.0M 0% /mnt/rootshare /dev/md1 9.1T 8.9T 301G 97% /mnt/disk1 /dev/md2 9.1T 4.9T 4.3T 54% /mnt/disk2 /dev/md3 9.1T 442G 8.7T 5% /mnt/disk3 /dev/md4 9.1T 8.7T 427G 96% /mnt/disk4 /dev/md5 9.1T 8.6T 593G 94% /mnt/disk5 /dev/md6 17T 17T 307G 99% /mnt/disk6 /dev/md7 3.7T 3.2T 514G 87% /mnt/disk7 /dev/sdb1 932G 239G 693G 26% /mnt/cache shfs 66T 51T 15T 78% /mnt/user0 shfs 66T 51T 15T 78% /mnt/user /dev/sde1 3.7T 37G 3.7T 1% /mnt/disks/WD-WCC4E0211550 /dev/loop2 20G 12G 7.8G 61% /var/lib/docker
  9. Wow, so that fixed everything. All my torrents are there, although pointed at the wrong data locations, but that's a relatively easy fix. But the docker started with all the torrents running, so a bunch of stuff was downloaded to the root/downloads location. I'm going to try to just use Transmission to move the data.
  10. I think I figured that out. Had references to appdisk still in the pathing. Changed 'em and this is my new docker run: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='transmission' --net='host' --privileged=true -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'TCP_PORT_9091'='9091' -e 'TCP_PORT_51413'='51413' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/user/appdata/transmissionD/config/torrents/':'/watch':'rw' -v '/mnt/user/Books/Audiobooks/':'/downloads/Books/Audiobooks':'rw' -v '/mnt/user/Books/Comic books/':'/downloads/Books/Comic books':'rw' -v '/mnt/user/Books/eBooks/':'/downloads/Books/eBooks':'rw' -v '/mnt/user/Movies/':'/downloads/Movies':'rw' -v '/mnt/user/Sounds (music)/':'/downloads/Music':'rw' -v '/mnt/user/TV/':'/downloads/TV':'rw' -v '/mnt/user/Videos (Music)/':'/downloads/Videos':'rw' -v '/mnt/user/appdata/transmissionD/downloads/':'/root/Downloads':'rw' -v '/mnt/user/appdata/transmissionD/config/':'/config':'rw' 'linuxserver/transmission' 14d37ae0ac25c6223e9081668abf0b6208f290ce36490c5411ae8407f0f89040 The command finished successfully!
  11. And now it's saying it can't connect to the tracker (3 different trackers). Edit: Just rebooted and lost all the torrents I had loaded again, but after re-adding a few, they're seeding. Any clue why it's not saving these torrents?
  12. So the Transmission docker worked. I saw a torrent seeding even, so that's good. However, after rebooting, it seems to have lost everything. When I connect via the Transmission Remote GUI, all the torrents are gone.
  13. root@Serenity:~# df -h Filesystem Size Used Avail Use% Mounted on rootfs 7.6G 797M 6.9G 11% / devtmpfs 7.6G 0 7.6G 0% /dev tmpfs 7.7G 0 7.7G 0% /dev/shm cgroup_root 8.0M 0 8.0M 0% /sys/fs/cgroup tmpfs 128M 256K 128M 1% /var/log /dev/sda1 7.5G 412M 7.1G 6% /boot overlay 7.6G 797M 6.9G 11% /lib/modules overlay 7.6G 797M 6.9G 11% /lib/firmware tmpfs 1.0M 0 1.0M 0% /mnt/disks tmpfs 1.0M 0 1.0M 0% /mnt/remotes tmpfs 1.0M 0 1.0M 0% /mnt/rootshare /dev/md1 9.1T 8.9T 301G 97% /mnt/disk1 /dev/md2 9.1T 4.9T 4.3T 54% /mnt/disk2 /dev/md3 9.1T 442G 8.7T 5% /mnt/disk3 /dev/md4 9.1T 8.7T 427G 96% /mnt/disk4 /dev/md5 9.1T 8.6T 593G 94% /mnt/disk5 /dev/md6 17T 17T 307G 99% /mnt/disk6 /dev/md7 3.7T 3.2T 514G 87% /mnt/disk7 /dev/sdb1 932G 233G 699G 25% /mnt/cache shfs 66T 51T 15T 78% /mnt/user0 shfs 66T 51T 15T 78% /mnt/user /dev/loop2 20G 1018M 19G 6% /var/lib/docker root@Serenity:~# So, I turned on the sliders for "automount" and "share." I'm assuming automount will mount it after every reboot, and "share" seems to be the setting you're referring to?
  14. OK, so I'm going to try the Transmission docker again. Here's the docker run (I've created a new TransmissionD folder for config so that it's separate from the plugin). root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker create --name='transmission' --net='host' --privileged=true -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'TCP_PORT_9091'='9091' -e 'TCP_PORT_51413'='51413' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/appdisk/transmissionD/config/torrents/':'/watch':'rw' -v '/mnt/user/Books/Audiobooks/':'/downloads/Books/Audiobooks':'rw' -v '/mnt/user/Books/Comic books/':'/downloads/Books/Comic books':'rw' -v '/mnt/user/Books/eBooks/':'/downloads/Books/eBooks':'rw' -v '/mnt/user/Movies/':'/downloads/Movies':'rw' -v '/mnt/user/Sounds (music)/':'/downloads/Music':'rw' -v '/mnt/user/TV/':'/downloads/TV':'rw' -v '/mnt/user/Videos (Music)/':'/downloads/Videos':'rw' -v '/mnt/appdisk/transmissionD/downloads/':'/root/Downloads':'rw' -v '/mnt/appdisk/transmissionD/config/':'/config':'rw' 'linuxserver/transmission' 247cb900ac758e25bff631bbb1b897030fa27078e894a702dfca34deef8e2e17 The command finished successfully!