adsh command not found

In this troubleshooting guide we learn how to fix adsh command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

adsh: command not found

or when using sudo you get the following error message

sudo: adsh: command not found

Solutions to adsh: command not found

How To Fix adsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu adsh is provided by apt-dater package.

apt-dater is:

apt-dater provides an easy to use ncurses frontend for managing package updates on a large number of remote hosts using SSH and apt-dater-host. It supports Debian-based managed hosts as well as openSUSE and CentOS based systems.

To fix this problem, we can install more using the command below.

sudo apt-get -y install apt-dater

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install apt-dater.

sudo apt -y install apt-dater

Or if you have aptitude installed you can use the following command.

sudo aptitude install apt-dater

Summary

In this tutorial we learn how to fix adsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.