asql command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
asql: command not found
or when using sudo you get the following error message
sudo: asql: command not found
Solutions to asql: command not found
How To Fix asql: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu asql is provided by asql package.
asql is:
This package contains a simple tool which allows you to easily run SQL queries against Apache common logfiles.
This can be more illuminating than viewing static logfile analysis.
To fix this problem, we can install more using the command below.
sudo apt-get -y install asql
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install asql.
sudo apt -y install asql
Or if you have aptitude installed you can use the following command.
sudo aptitude install asql
Summary
In this tutorial we learn how to fix asql command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.