pscal command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pscal: command not found
or when using sudo you get the following error message
sudo: pscal: command not found
Solutions to pscal: command not found
How To Fix pscal: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pscal is provided by xcal package.
xcal is:
The “classic” calendar app with memos and alarms, xcal normally sits idle and displays the date. When clicked on, pops up a `strip' for this month. Clicking on a day allows you to enter details. Automatically parses times entered, and reminds you 5 minutes before your appointment.
Supports daily and weekly repeating events and context-sensitive help.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xcal
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xcal.
sudo apt -y install xcal
Or if you have aptitude installed you can use the following command.
sudo aptitude install xcal
Summary
In this tutorial we learn how to fix pscal command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.