page-crunch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
page-crunch: command not found
or when using sudo you get the following error message
sudo: page-crunch: command not found
Solutions to page-crunch: command not found
How To Fix page-crunch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu page-crunch is provided by page-crunch package.
page-crunch is:
Converts PDF and PS files to new PDF and PS documents with several sheets on the same page, or with resized or rotated sheets. It also can generate a book ready to print.
It acts as a graphical frontend to psutils programs, like psnup and psbook, and runs viewers such as xpdf and gv for preview once the processing is done. The GUI is made in Tcl/Tk.
To fix this problem, we can install more using the command below.
sudo apt-get -y install page-crunch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install page-crunch.
sudo apt -y install page-crunch
Or if you have aptitude installed you can use the following command.
sudo aptitude install page-crunch
Summary
In this tutorial we learn how to fix page-crunch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.