在两个CentOS之间拷贝数据可以使用多种方法,以下是几种常用的方法:
scp /path/to/file username@destination:/path/to/destination
rsync -avz /path/to/source username@destination:/path/to/destination
mount -t nfs destination:/shared/folder /mnt/shared
然后就可以直接在本地进行文件拷贝操作。
以上是几种常用的方法,具体选择哪种方法取决于你的需求和环境。