安装 SSH(Secure Shell) 服务以提供远程管理服务
sudo apt-get install ssh
从远程拷贝
scp user@host:/path/to/files local_file_name
拷贝到远程
scp local_file_name user@host:/path/to/files
scp拷贝文件夹
scp -r local_directory user@host:/path/to/directory
sudo apt-get install ssh
从远程拷贝
scp user@host:/path/to/files local_file_name
拷贝到远程
scp local_file_name user@host:/path/to/files
scp拷贝文件夹
scp -r local_directory user@host:/path/to/directory