realm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
realm: command not found
or when using sudo you get the following error message
sudo: realm: command not found
Solutions to realm: command not found
How To Fix realm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu realm is provided by realmd package.
realmd is:
realmd is a D-Bus system service that manages discovery and enrollment in realms/domains like Active Directory or IPA.
realmd can configure either SSSD or Windbind as client software. It will also automatically install the required packages using PackageKit if needed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install realmd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install realmd.
sudo apt -y install realmd
Or if you have aptitude installed you can use the following command.
sudo aptitude install realmd
Summary
In this tutorial we learn how to fix realm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.