fixwpps command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fixwpps: command not found
or when using sudo you get the following error message
sudo: fixwpps: command not found
Solutions to fixwpps: command not found
How To Fix fixwpps: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fixwpps is provided by psutils package.
psutils is:
This collection of utilities is for manipulating PostScript documents. Page selection and rearrangement are supported, including arrangement into signatures for booklet printing, and page merging for n-up printing.
The following programs are included in psutils: epsffit, extractres, fixdlsrps, fixfmps, fixmacps, fixpsditps, fixpspps, fixscribeps, fixtpps, fixwfwps, fixwpps, fixwwps, getafm, includeres, psbook, psmerge, psnup, psresize, psselect, pstops, showchar
Some programs included here (psmerge) behave differently if gs is available, but all programs work without it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install psutils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install psutils.
sudo apt -y install psutils
Or if you have aptitude installed you can use the following command.
sudo aptitude install psutils
Summary
In this tutorial we learn how to fix fixwpps command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.