# A.11 远程迁移

  1. 远程复制目录
$ scp -r ./dist/ username@(remote_ip):/home/wwwroot/
1
  1. 修改属性(在远程服务器上)
$ chown -R www:www /home/wwwroot/dist/
1