win11终端配置 ubuntu trzsz-go trz/tsz 上传/下载

2024-12-11 339 0

trzsz ( trz / tsz ) 是一个兼容 tmux 的文件传输工具,和 lrzsz ( rz / sz ) 类似,并且有进度条和支持目录传输。

https://trzsz.github.io/cn/go.html

快捷登陆

C:\Users\Administrator>cat .ssh/config
Host github.com
    IdentityFile ~/.ssh/github

Host 18
    HostName 192.168.33.18
    Port 22
    PreferredAuthentications publickey
    User sunday
    IdentityFile ~/.ssh/sunday
C:\Users\Administrator> ssh 18

这样就登陆成功了

ubuntu

sudo apt update && sudo apt install software-properties-common
sudo add-apt-repository ppa:trzsz/ppa && sudo apt update

sudo apt install trzsz

或者直接下载go二进制文件
https://github.com/trzsz/trzsz-go/releases

Windows 终端

CMD终端安装trzsz

winget install trzsz

使用

trzsz ssh sunday@192.168.33.18
# 发送文件到本地
tsz xx.txt

Windows doskey 自动加载

开机自动加载bat脚本

如bat文件路径 D:\Shell\auto-doskey.bat

@echo off
doskey ssh=trzsz ssh $*

开机自动执行脚本, 文件名:auto-doskey.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
"AutoRun"="D:\\Shell\\auto-doskey.bat"

执行auto-doskey.reg 加入注册表 重启电脑则会自动加载

image.png

 trzsz配置默认下载路径

trzsz使用的配置文件是 ~/.trzsz.conf( Windows 是 C:\Users\your_name\.trzsz.conf )。注意路径必须包含 / 结尾,如:

DefaultUploadPath =
DefaultDownloadPath = /Users/username/Downloads/

相关文章

UFW+IPSET 禁用非法IP
ip_local_port_range: prefer different parity for start/end values
Linux Sudo 权限配置
阿里云ECS云盘IOPS压测
nextcloud preview-generate 报错文件无权限解决
tcpdump 抓包使用小结

发布评论