ctags.emacs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ctags.emacs: command not found
or when using sudo you get the following error message
sudo: ctags.emacs: command not found
Solutions to ctags.emacs: command not found
How To Fix ctags.emacs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ctags.emacs is provided by emacs-bin-common package.
emacs-bin-common is:
GNU Emacs is the extensible self-documenting text editor. This package contains the architecture dependent infrastructure that’s shared by emacs-gtk, emacs-lucid, and emacs-nox.
To fix this problem, we can install more using the command below.
sudo apt-get -y install emacs-bin-common
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install emacs-bin-common.
sudo apt -y install emacs-bin-common
Or if you have aptitude installed you can use the following command.
sudo aptitude install emacs-bin-common
Summary
In this tutorial we learn how to fix ctags.emacs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.