rfkill command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rfkill: command not found
or when using sudo you get the following error message
sudo: rfkill: command not found
Solutions to rfkill: command not found
How To Fix rfkill: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rfkill is provided by rfkill package.
rfkill is:
rfkill is a simple tool for accessing the Linux rfkill device interface, which is used to enable and disable wireless networking devices, typically WLAN, Bluetooth and mobile broadband.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rfkill
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rfkill.
sudo apt -y install rfkill
Or if you have aptitude installed you can use the following command.
sudo aptitude install rfkill
Summary
In this tutorial we learn how to fix rfkill command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.