1 如何链接远程服务器
ubuntu下
ssh cheney@10.10.102.55
输入密码
2 如何将本地文件或文件夹传到服务器
scp -r /home/cheney/Project/datasets/COCO_ORI/ cheney@10.10.102.55:/home/cheney/data
输入密码
3.问题:Could not chdir to home directory /home/cheney: No such file or directory
答案:权限不够,
sudo chmod 745 /home
4.问题:将文件夹跨服务器传输
答案: sudo scp -r lightweight-human-pose-estimation.pytorch-master cheney@10.10.102.68:/home/cheney/project/
5.问题:如何跨服务器机器部署conda环境
答案:
sudo scp -r openpose cheney@10.10.102.68:/home/cheney/.conda/envs/
6.问题:CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate
source activate
source deactivate