当前位置:网站首页>scp upload file to remote server
scp upload file to remote server
2022-08-09 08:03:00 【scwMason】
One.Upload
scp demo.txt [email protected]:home/name
It is to upload the demo.txt folder to the /home/name directory of the remote server
II. Download
scp -r [email protected]:/home/name/caffe /home/deeplearning/Public/labeling/caffe
Three. The problem of permissions
May encounter the problem of Permission denied without permission, here we need to change the writable attribute of the target folder:
sudo chmod 777 home/name
Upload now:
边栏推荐
猜你喜欢
随机推荐
账户和权限管理2
[STL]stack与queue
ssh:connect to host master port 22:Network is unreachable
Native JDBC operation database
VOC格式标签转YOLO格式
C language: reverse character order
SDRAM的数据存储实现并对其数据进行读写操作
监视文本框的输入
Shell之函数与数组
3D软件开发工具HOOPS全套产品开发介绍 | HOOPS Exchange、HOOPS Communicator
MDK Keil debug时, watch1中全局变量不更新
(三)、时间序列预测
【Rust指南】快速入门|开发环境|hello world
SSM integration development case
74HC595 chip pin description
.net(二) 配置数据库
C: print the diamond
Introduction to the Endpoint
Shell编程之正则表达式
scp上传文件到远程服务器