ptsb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ptsb: command not found
or when using sudo you get the following error message
sudo: ptsb: command not found
Solutions to ptsb: command not found
How To Fix ptsb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ptsb is provided by libfinance-bank-ie-permanenttsb-perl package.
libfinance-bank-ie-permanenttsb-perl is:
Finance::Bank::IE::PermanentTSB provides a set of functions which can be used in perl programs to interact with the Open24 homebanking (www.open24.ie)
The module will allow the user to check the account balance and to display an account statement for a particular time range.
This package also includes a CLI tool (ptsb), which will provide the same functionalities of the module and will also use gnuplot to draw graphs about the status of a bank account.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libfinance-bank-ie-permanenttsb-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libfinance-bank-ie-permanenttsb-perl.
sudo apt -y install libfinance-bank-ie-permanenttsb-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libfinance-bank-ie-permanenttsb-perl
Summary
In this tutorial we learn how to fix ptsb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.