cdargs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cdargs: command not found
or when using sudo you get the following error message
sudo: cdargs: command not found
Solutions to cdargs: command not found
How To Fix cdargs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cdargs is provided by cdargs package.
cdargs is:
CDargs is a tool which enhances the navigation of the common unix file-system inside the shell. It plugs into the shell built-in cd-command (via a shell function or an alias) and adds bookmarks and a browser to it.
It enables you to move to a very distant place in the file-system with just a few keystrokes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cdargs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cdargs.
sudo apt -y install cdargs
Or if you have aptitude installed you can use the following command.
sudo aptitude install cdargs
Summary
In this tutorial we learn how to fix cdargs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.