If you must use sz/rz, try this thing
If you just want to transfer some files and don’t want/can use scp, you can actually be simpler: ssh user@host tar cz /path/files_need_to_be_transferred | tar xvfz -
Or simply like this: ssh user@host cat /path/file > /dest/path/file
If you must use sz/rz, try this thing
If you just want to transfer some files and don’t want/can use scp, you can actually be simpler:
ssh user@host tar cz /path/files_need_to_be_transferred | tar xvfz -
Or simply like this:
ssh user@host cat /path/file > /dest/path/file
You can try downloading an FTP client. Most clients now support the sftp protocol. You can log in directly with an SSH account to transfer files
Install zssh, then use zssh to connect to your machine, and use sz/rz to download/upload resources.
Use
CTRL+SHIFT+2
to switch between the remote machine and the local machine to achieve downloading/uploading.