ianGB

Members
  • Posts

    13
  • Joined

  • Last visited

ianGB's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I have installed the docker and want to add Google Drive as a backup target. When I add Google Drive I can create the json token correctly and it gets downloaded to ~/Downloads on my computer. When I open Storage Configuration and click on Google Drive and Token File I can only see directories in the docker container. I have tried pasting the json token directly into the Token File box, but this doesn't work. Any clues as to how I can make this work?
  2. To answer my own question. It's simple: just add another network id in the Network ID field.
  3. Adding more than one zerotier network. I would like to create two zerotier networks. One that only allows access to my Emby server e.g.192.166.10:8096 and another network that allows me to access the UNRAID dashboard i.e. 192.168.0.10:80. I can see how to do this by creating two separate zerotier networks. Does your container allow me to specify more than one zerotier network? Suggestions for alternative methods welcomed!
  4. I want to run the webui on port 8090 to avoid conflict with another app. I have changed Host Port 3 to 8090 WebUI is set to: http://[IP]:[PORT:8090]/ When I run the container the log shows it is running: 2022-04-25 16:25:20,201 DEBG 'watchdog-script' stdout output: [info] qBittorrent process listening on port 8090 However, when I try to open the webui I get: 192.168.0.103 refused to connect I have disabled the vpn while I try to set the container up. I am obviously missing something very obvious, but can't work out what the problem is. Screenshot of the config. attached.
  5. Thanks for the tutorial. I am almost there, but still need to overcome the hurdles of using Starlink and a pfSense router!
  6. "tailscale up" If you need to start tailscale from a command prompt on the terminal it seems you need to put quotes round the command or it won't be recognized.
  7. Thank you! I have now stuck a label on my forehead in mirror writing in case I forget:)
  8. I am missing something very obvious here:) I have set up a new server without a cache drive. I now want to add a cache drive. I have installed a WD 250GB SSD which is shown in Unassigned Devices. It is not formatted. I have stopped the Array and gone to the Main menu which lists all the drives. I would expect to see a menu bar called Cache Devices, but it isn't there. What am I doing wrong?
  9. I am using pCloud with rclone. So far this has worked OK for me. For some things (not media files) I also back up to Google drive using rclone. I haven't tried doing a full restore, but testing restores of selected data has worked OK.
  10. Thanks I had forgotten about that! Almost all of my rsync usage is via bash scripts which do indeed include this flag.
  11. Yes, but I haven't done anything to change the timestamps. Also even if the timestamp is changed, but the content isn't rsync will just move on to the next file. In my case I haven't changed the content, but rsync is still uploading the full file from the source and overwriting the destination file.
  12. I am copying some files from my old server to my UNRAID server using rsync. The command I am using is: rsync -av --progress /mnt/md127/GoPro/ [email protected]:/mnt/user/GoPro/ There are a lot of files and at some point in the night the connection dropped. Starting the command again this morning I expected rsync to quickly go past all the files already synced and carry on from where the connection dropped. However, rsync seems to be syncing all the files again. I use rsync on other computers frequently and have not come across this problem before. Can anyone suggest why this might be happening?