Lo Key

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

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

Lo Key's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Yeah, you were right. I didn't think of clicking the Advanced settings to see everything I needed so I just assumed since it was a special setup I had to do via command line. BTW, don't anyone do what I did as it will be gone after the next start/stop of docker anyway I've now set it up properly via the GUI and it's working fine.
  2. @ken-ji it worked! Thank you so much! With everything moved over, I'm now able to get to any docker with an assigned static IP over OpenVPN. I had not managed anything with docker from the command line before this. So, in case anyone else was like me and wants to do this, here were the commands I used in the console for the steps "Delete the docker custom network on eth0/br0" and "Setup the docker custom network on eth1/br1" after I had broken the bond on the interfaces in network settings: docker network ls (this will list out what docker networks are available) NETWORK ID NAME DRIVER SCOPE c152fe231096 br0 macvlan local 2077b50fac9e bridge bridge local c73f55312022 host host local e219d9bf945e none null local docker network rm br0 (this will delete the br0 network used by docker when static ips are applied - be sure you're ready to do this) docker network create -d macvlan --subnet=192.168.1.0/24 --gateway=192.168.1.1 -o parent=eth1 docker (creates the new network and names it "docker". Name it what you want. Make sure the network settings match your own local network if you're keeping them all on the same subnet.) Then, go into Docker and move each container onto the new network.
  3. Thank you ken-ji. Luckily enough, I am running Unraid on a server motherboard with dual NICs onboard. I'll try your best solution and report back in a few days.
  4. I have been running this OpenVPN container without issues for a few months now. Once I realized the option for assigning containers their own IP address was available in Unraid, I assigned most of my containers static IPs in their settings so I could use my router software to track bandwidth usage. I did not reassign the OpenVPN container and left it running on the same IP as Unraid. Internally, everything is fine. But when I connect via OpenVPN, I cannot get to any container that has it's own IP address. I am able to reach the Unraid webgui and any container still running off of the Unraid IP address. I am able to get to any other resources on the network with other PCs, web sites not on Unraid, etc. The static IPs are on the same internal subnet, 192.168.1.0/24. In searching for information, I came upon this old reddit thread where the top response says "Using custom IP's (macvlan) isolates you from the host, can't remember if it also isolates you from other containers.". Is this correct, and if so, is there any way around it or do I have to reassign the containers back to using the Unraid IP if I want to access them via OpenVPN?
  5. Was just thinking about what I would do when a drive fails on me. I have a 5TB parity and 3 data drives (5TB/2TB/2TB). I do not have hot spares available. If a drive failed, of course I'd want to replace ASAP, but does that mean I need to go to my local store and buy a replacement that day or can it hold out waiting 2 days for an Amazon Prime shipment? Is there any sort of time limit on how long parity keeps the ability to rebuild the drive or is it more along the lines of, as long as I don't write anything further to the remaining array, there is an indefinite time limit?
  6. Came here to ask this same question! To be clear, I want to put my Unraid server in another room and have a monitor in my office displaying a VM that's using a dedicated video card in the Unraid server. OP, do you want audio as well as video? There are both video over ethernet and audio/video over ethernet solutions. I was only looking at audio/video over ethernet and I found the following. As far as keyboard/mouse, I was going to control from another local PC in my office using Synergy. Does anyone have any experience with these and Unraid? https://www.amazon.com/dp/B005SHWXRI/ref=sspa_dk_detail_0?psc=1&pd_rd_i=B005SHWXRI&pd_rd_wg=1bcB7&pd_rd_r=0DBAVA71AGKG58W2YHPT&pd_rd_w=KfHyT https://www.amazon.com/Cable-Matters-Extender-Single-Support/dp/B00SVX57UQ/ref=pd_cp_23_2?_encoding=UTF8&pd_rd_i=B00SVX57UQ&pd_rd_r=9W5JM82CBX37HA1TQBAS&pd_rd_w=OViqA&pd_rd_wg=8ygxT&psc=1&refRID=9W5JM82CBX37HA1TQBAS https://www.amazon.com/Tripp-Lite-Transmitter-1920x1440-B130-101A-2/dp/B00E07GRWY
  7. Is anyone aware of a docker or plugin that would allow downloading of photos and videos from iCloud? I'm not trying to do any uploads or syncing, just downloads. I have a workaround for now by installing iCloud for Windows on my Windows VM and pointing the download directory to the unRAID share but I'd rather have the download process handled via docker or plugin if possible. Thanks!
  8. May be a dumb question... but is it OK to let Crashplan back up the appdata share? I ask mainly because there are so many warnings about appdata and permissions, etc. Just want to be sure before backing up.
  9. Ugh... yeah, that was it. Corrected the path and I'm good to go. Thanks!
  10. I've been having the same kind of errors as Gog. The renaming issue also happens with Radarr although here, of course, we'll focus on Sonarr. I'll provide everything I can think of here. Please let me know what I might be overlooking.
  11. Just curious on what most people have their mover schedule set to. I'm still pretty new to Unraid so I'm still checking out all of the settings. Right now I have all of my shares set to Yes for "Use cache drive". I set it to this originally because I was moving so much data over at first from my old storage I thought it might speed things up. Now that I'm fully migrated, I still haven't changed this. The only thing that is writing somewhat regularly to Unraid is downloads in nzbget. I guess, to sum up, here are my questions: 1. Should I set any shares that aren't written to often to No for "Use cache drive" so they are protected immediately? 2. Are there any disadvantages to running Mover hourly instead of once per day? I understand there will be more disk usage but I'm not really moving 10's of GB at a time onto the array anymore so I would think running more often shouldn't impact performance too much, would it? Thanks.