rc.byron command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rc.byron: command not found
or when using sudo you get the following error message
sudo: rc.byron: command not found
Solutions to rc.byron: command not found
How To Fix rc.byron: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rc.byron is provided by rc package.
rc is:
rc is a command interpreter and programming language similar to sh(1). It is based on the AT&T Plan 9 shell of the same name. The shell offers a C-like syntax (much more so than the C shell), and a powerful mechanism for manipulating variables. It is reasonably small and reasonably fast, especially when compared to contemporary shells. Its use is intended to be interactive, but the language lends itself well to scripts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rc.
sudo apt -y install rc
Or if you have aptitude installed you can use the following command.
sudo aptitude install rc
Summary
In this tutorial we learn how to fix rc.byron command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.