kalarmautostart command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kalarmautostart: command not found
or when using sudo you get the following error message
sudo: kalarmautostart: command not found
Solutions to kalarmautostart: command not found
How To Fix kalarmautostart: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kalarmautostart is provided by kalarm package.
kalarm is:
KAlarm provides a graphical interface to schedule personal timed events - pop-up alarm messages, command execution and sending emails. There is a range of options for configuring recurring events.
A pop-up alarm can show either a simple text message, or the contents of a text or image file. It can optionally be spoken, or play a sound file. You can choose its appearance, and set reminders. Among KAlarm’s other facilities, you can set up templates to allow KAlarm to be used as a ’tea timer'.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kalarm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kalarm.
sudo apt -y install kalarm
Or if you have aptitude installed you can use the following command.
sudo aptitude install kalarm
Summary
In this tutorial we learn how to fix kalarmautostart command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.