pskc2csv command not found
In this troubleshooting guide we learn how to fix pskc2csv command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
pskc2csv: command not found
or when using sudo you get the following error message
sudo: pskc2csv: command not found
Solutions to pskc2csv: command not found
How To Fix pskc2csv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pskc2csv is provided by pskc-utils package.
pskc-utils is:
These utilities can be used to convert Portable Symmetric Key Container (PSKC) files as defined in RFC6030.
- csv2pskc - Convert a CSV file to PSKC
- pskc2csv - Convert a PSKC file to CSV
- pskc2pskc - Reformat or change encryption of a PSKC file
To fix this problem, we can install more using the command below.
sudo apt-get -y install pskc-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pskc-utils.
sudo apt -y install pskc-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install pskc-utils
Summary
In this tutorial we learn how to fix pskc2csv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.