|
To answer your question, you need to set up the sharepoint storage space correctly. You can use the following steps:
1. Open Rsync client and connect to the Sharepoint server.
2. Use the command `rsync -avz /path/to/your/files .` to sync all the files from the local machine to the Sharepoint server.
3. Use the command `rsync -avz . /path/to/sharepoint` to sync all the files from the Sharepoint server back to the local machine.
Make sure that the paths in the above commands match with your local machine and the Sharepoint server respectively. Also, ensure that you have permission to access the Sharepoint server.
By doing this, you will be able to transfer the files between the local machine and the Sharepoint server without any issues. |
|