How does `scp` differ from `rsync`?

后端 未结 7 2033
失恋的感觉
失恋的感觉 2020-12-04 04:58

An article about setting up Ghost blogging says to use scp to copy from my local machine to a remote server:

scp -r ghost-0.3 root@*your-server-         


        
7条回答
  •  执笔经年
    2020-12-04 05:03

    it's better to think in a practical context. In our team, we use rsync -aP to replace a bad cassandra host in our cluster. We can't do this with scp (slow and no progress preservation).

提交回复
热议问题