aklog-kafs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aklog-kafs: command not found
or when using sudo you get the following error message
sudo: aklog-kafs: command not found
Solutions to aklog-kafs: command not found
How To Fix aklog-kafs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aklog-kafs is provided by kafs-client package.
kafs-client is:
kAFS is a Linux kernel implementation of the AFS file system. This package contains the basic AFS-compatible tools for kAFS and systemd scripts to mount the dynamic root on /afs and preload the cell database.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kafs-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kafs-client.
sudo apt -y install kafs-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install kafs-client
Summary
In this tutorial we learn how to fix aklog-kafs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.