Install Yazi on Ubuntu 24.04

Install Yazi on Ubuntu 24.04

Yazi is a file manager via command line. This tool aims to provide an efficient, intuitive, and powerful interface for managing files and directories. This tutorial explains how to Install Yazi on Ubuntu 24.04.

Install Yazi

Download the latest release of Yazi from GitHub:

wget -qO yazi.zip https://github.com/sxyazi/yazi/releases/latest/download/yazi-x86_64-unknown-linux-gnu.zip

Extract files to temporary directory:

unzip -q yazi.zip -d yazi-temp

Move executables to /usr/local/bin directory:

sudo mv yazi-temp/*/{ya,yazi} /usr/local/bin

Note: ya command is used for Yazi plugins management.

We can check Yazi version using the following command:

yazi --version

Remove temporary directory and downloaded archive:

rm -rf yazi-temp yazi.zip

Testing Yazi

To start Yazi, simply run the following command:

yazi

Use the arrow keys to navigate to your desired directory.

Manage filesystem with Yazi

To exit Yazi, type q.

Uninstall Yazi

To delete Yazi, eliminate the associated file:

sudo rm -rf /usr/local/bin/{ya,yazi}

The 4 Comments Found

  1. Avatar
    Sighthesia Reply

    Now you also need to move 'ya' by sudo mv yazi-temp/*/ya /usr/local/bin, becasue now there's new features like installing flavors and plugins needs 'ya'

    • Avatar
      lindevs Reply

      Thanks for the information! I've updated the installation command in the post.

  2. Avatar
    NetCloak Reply

    ubuntu 22.04, run ./yazi cause /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.39 not found error

    try

    wget -qO yazi.zip https://github.com/sxyazi/yazi/releases/latest/download/yazi-x86_64-unknown-linux-musl.zip

    and solve it

    • Avatar
      lindevs Reply

      GLIBC_2.XX not found errors can occur on older Ubuntu versions. In such cases, you can use the statically linked Yazi binary (built with musl libc), as shown in your command.

Leave a Comment

Cancel reply

Your email address will not be published.