ssh username@Ubuntu’s ip (eg.192.168.45.127)
将 文件/文件夹 从远程 Ubuntu 机拷至本地(scp)
scp -r username@192.168.45.127:/home/username/remotefile.txt .
将 文件/文件夹 从本地拷至远程 Ubuntu 机(scp)
scp -r localfile.txt username@192.168.45.127:/home/username/
将 文件/文件夹 从远程 Ubuntu 机拷至本地(rsync)
rsync -v -u -a –delete –rsh=ssh –stats username@192.168.45.127:/home/username/remotefile.txt
.
将 文件/文件夹 从本地拷至远程 Ubuntu 机(rsync)
rsync -v -u -a –delete –rsh=ssh –stats localfile.txt username@192.168.45.127:/home/username/
scp 命令可以用来通过安全、加密的连接在机器间传输文件。它与 rcp 相似。
把本地文件传输给远程系统的一般语法是:
scp localfile username@tohostname:/newfilename
localfile 指定源文件,username@tohostname:/newfilename 指定目标文件。
要把本地文件 shadowman 传送到你在 talkyun.example.net 上的账号内,在 shell 提示下键入(把 username 替换成你的用户名):
scp shadowman username@talkyun.example.net:/home/username
这会把本地文件 shadowman 传输给 talkyun.example.net 上的 /home/username/shadowman 文件。
把远程文件传输给本地系统的一般语法是:
scp username@tohostname:/remotefile /newlocalfile
remotefile 指定源文件,newlocalfile 指定目标文件。
源文件可以由多个文件组成。譬如,要把目录 /downloads 的内容传输到远程机器 talkyun.example.net 上现存的 uploads 目录,在 shell 提示下键入下列命令:
scp /downloads/* username@talkyun.example.net:/uploads/