Learn Boost Productivity with Z and Zsh on CentOS

September 6, 2019

Table of Contents

Introduction

Working on Linux systems means that one is using the command line more often than not. Having to type long directory names over and over as well as guessing command names eats up valuable time. This can add up very quickly. Z is a tool that records every directory you browse and compiles a weighted list of the most frequent/recently used ones. Zsh is an alternative to bash (the default shell that come with most Linux distros) that adds subtle improvements like spelling correction of words/commands and better tab-completion.

Setup & Installation

Spin-up An ITWeb.Services instance running CentOS (either version 6 or 7) and follow the steps below to add a new admin (sudo) user. We’re doing this because it is along the lines of best practices to create a new user and assign it admin rights to access the server, rather than use the root user.

  1. Connect to your IT Web Services instance ssh root@[itweb.services-ip-address].
  2. Add a new user adduser <newuser>.
  3. Set the password for the new user passwd <newuser>.
  4. Make the new user an admin user usermod -a -G wheel <newuser>.
  5. (CentOS 6 only) Add to sudoers: echo ' <newuser> ALL=(ALL) ALL' >> /etc/sudoers.
  6. Disconnect from instance exit.
  7. Reconnect to instance, but this time as the new user ssh <newuser>@[itweb.services-ip-address].

Installing and Using Z

You should be in your home directory after you logon as “newuser” (otherwise, run cd ~). Follow the next set of steps to install Z. Note that since Z is a script, what we do is download it to our home directory and tell our default shell to run Z anytime it starts.

  1. Download wget https://raw.githubusercontent.com/rupa/z/master/z.sh.
  2. Install printf "nn#initialize Z (https://github.com/rupa/z) n. ~/z.sh nn" >> .bashrc. This command appends . ~/z.sh to your .bashrc file, which in turn tells it to run Z upon start-up.
  3. Reload shell source ~/.bashrc.

To test how Z works, browse to these directories:

cd /etc/cloud/templates
cd /usr/share/nano
cd /etc/pki/java
cd ~

Now, from your terminal, type in z clo and push the tab button, then enter. Next, type z nano and hit the tab button, then enter again. You will see in both cases that Z automatically knew to cd into the first and second directories where we initially browsed.

Installing and Using Zsh

  1. Install sudo yum update && sudo yum -y install zsh.
  2. Check version to verify installation zsh --version.
  3. Make Zsh your default shell chsh -s /bin/zsh. You will be prompted to enter your password.
  4. Logout exit.
  5. Log back into the system ssh <newuser>@[itweb.services-ip-address].

If you are greeted with a Zsh shell configuration prompt, select “2”, then “1”, then “0” to accept the default settings.

To test things out, type “kill ” and push the tab button (there is a space after kill). Zsh will automatically show you a list or processes to kill as oppose to doing nothing.

Zsh also shares your terminal history across multiple windows/sessions, and has tons of other useful features. There are also frameworks built on top of Zsh that even add more dazzling features to it, such as oh-my-zsh and prezto.

Using Z with Zsh

  1. Run printf "nn#initialize Z (https://github.com/rupa/z) n. ~/z.sh nn" >> .zshrc. This command appends . ~/z.sh to .zshrc file, which tells it to run Z on start-up.
  2. Reload shell source ~/.zshrc.

Note: If you do not like the default settings, you can update the Zsh shell configuration by editing the .zshrc file (in your home directory), or by running the following commands:

autoload -U zsh-newuser-install
zsh-newuser-install -f
    source ~/.zshrc

Conclusion

Z and Zsh are useful tools that may drastically help increase your productivity.

Other Versions

https://www.itweb.services/tutorials/linux-guides/boost-productivity-with-z-and-zsh-on-ubuntu”>Ubuntu

https://www.itweb.services/tutorials/linux-guides/boost-productivity-with-z-and-zsh-on-centos”>CentOS

Need help?

Do you need help setting up this on your own service?
Please contact us and we’ll provide you the best possible quote!