Topics Map > ResearchDrive
ResearchDrive - Transferring Data with a Linux Computer
This document explains how to transfer data to ResearchDrive with a linux computer.
There are several methods to transfer data from a linux computer:
- Transferring data with shell commands
- Transferring data with rsync
- Comparing files or folders with diff
Transferring data with shell commands
Note: replace references to [source path] and [destination path] with the folder locations you want to use such as /home or /mnt/researchdrive/myfolder
- Connect to ResearchDrive from the linux Computer
- Navigate to the source directory that you want to transfer data from.
- To copy data, use the command syntax:
cp [source path] [destination path]
Refer to the cp man page for additional details.
- To move data, use the command syntax:
mv [source path] [destination path]
Refer to the mv man page for additional details.
Transferring data with rsync
- Connect to ResearchDrive from the linux Computer
- Navigate to the source directory that you want to transfer data from.
- To copy data, use the command syntax:
rsync [options] [source path] [destination path]
Refer to the rsync man page or SS64 - rsync for additional details.
Comparing files or folders with diff
Note: replace references to [source path] and [destination path] with the folder locations you want to use such as /home or /mnt/researchdrive/myfolder
- Connect to ResearchDrive from the linux Computer
- Navigate to the source directory that you want to compare.
- To compare files or folders, use the command syntax:
diff [options] [source path] [destination path]
Refer to the diff man page or SS64 - diff for additional details.