前言:由于工作需要,整理了一下Linux与Windows之间文件的上传和下载方式。
一、rz上传、sz下载文件
rz是将Windows系统上的文件上传到Linux下
sz是将Linux系统下的文件上传到Windows下
1.rz案例,输入rz下载文件到Linux下
[root@bogon ~]# rz
按图所示在windows上找到要下载的文件,点击Add,点击OK即可自动下载文件。
2.sz案例,输入sz上传文件到Windows系统下
[root@bogon ~]# vi aaa
[root@bogon ~]# sz ./aaa
rz
Starting zmodem transfer. Press Ctrl+C to cancel.
Transferring aaa...
100% 13 bytes 13 bytes/sec 00:00:01 0 Errors
(我这里默认下载到了D盘下,只要看到成功就可以,可以Windows下通过搜索文件名找到下载位置)
3.如果rz,sz报错如下,那就是没安装
Centos系列:yum安装
[root@bogon ~]# rz
-bash: rz: command not found
[root@bogon ~]# yum -y install lrzsz
Ubuntu系列:sudo apt install lrzsz
crr@zaizai:~$ rz
The program 'rz' is currently not installed. You can install it by typing:
sudo apt install lrzsz
crr@zaizai:~$
crr@zaizai:~$ sudo apt install lrzsz
二、其他方法(sftp)
进入sftp,SecureCRT快捷键alt+p
get -r linux绝对路径文件 #Linux文件上传到Windows
put -r Windows绝对路径文件 #Windows文件上传到Linux
操作如下
sftp> get -r /root/aaa
Downloading aaa from /root/aaa
100% 13 bytes 13 bytes/s 00:00:00
/root/aaa: 13 bytes transferred in 0 seconds (13 bytes/s)
sftp> put -r "C:\Users\Administrator\Desktop\J1801235130031 HZ014 --1_proc.jpg"
Uploading J1801235130031 HZ014 --1_proc.jpg to /root/J1801235130031 HZ014 --1_proc.jpg
100% 1893KB 1893KB/s 00:00:00
C:\Users\Administrator\Desktop\J1801235130031 HZ014 --1_proc.jpg: 1939321 bytes transferred in 0 seconds (1893 KB/s)
sftp>