11-27-2020, 01:50 PM
I will answer this as best I can:
1. rsync over ssh - this means you can provide rsync the -e flag (alternative for --rsh=COMMAND) which will use ssh for communication between local and remote machines.
You can also include any ssh command options/flags.
eg
this will connect to to host using ssh with non-default-key.
2. If you have an omv server, why do you keep your music on an extra disk attached to the RPi? Is the server in a remote location with bad connectivity? Because if it's local you can use NFS or Samba/CIFS to share your music on the OMV and mount it on the moOde RPi.
1. rsync over ssh - this means you can provide rsync the -e flag (alternative for --rsh=COMMAND) which will use ssh for communication between local and remote machines.
You can also include any ssh command options/flags.
eg
Code:
rsync -e 'ssh -i ~/.ssh/non-default-key' /local/path host:/remote/path
this will connect to to host using ssh with non-default-key.
2. If you have an omv server, why do you keep your music on an extra disk attached to the RPi? Is the server in a remote location with bad connectivity? Because if it's local you can use NFS or Samba/CIFS to share your music on the OMV and mount it on the moOde RPi.