我有 40 个 WGS 文件,每个文件大小约为 0.1 TB,存储在我旁边的硬盘中。我需要将它们转移到我们的计算集群中。我使用的是 Windows 操作系统,因此我使用 MobaxTerm 来连接到计算集群
人们说通过
rsync -axv --numeric-ids --progress -e "ssh -T -o Compression=no -x" *.file user@path_to_hpc(...):/scratch/your_username/folder...
但当我在 Windows 中时我不知道如何使用它
答案1
在 rsync 命令行中
*.file
代表源文件(例如您的本地磁盘)user@path_to_hpc(...):/scratch/your_username/folder...
代表目的地。user
用户名path_to_hpc(...)
IP 或主机名/scratch/your_username/folder...
目标路径(例如 /scratch/fi1d18 )
本地文件
最好的方法是继续
cd /where/r/myfile
- 其中
/where/r/myfile
是磁盘的本地路径。
然后
rsync ..options.. *.bam user@remote:/scratch/fi1d18