fix-qdf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fix-qdf: command not found
or when using sudo you get the following error message
sudo: fix-qdf: command not found
Solutions to fix-qdf: command not found
How To Fix fix-qdf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fix-qdf is provided by qpdf package.
qpdf is:
QPDF is a program that can be used to linearize (web-optimize), encrypt (password-protect), decrypt, and inspect PDF files from the command-line. It does these and other structural, content-preserving transformations on PDF files, reading a PDF file as input and creating a new one as output. It also provides many useful capabilities to developers of PDF-producing software or for people who just want to look at the innards of a PDF file to learn more about how they work.
QPDF understands PDF files that use compressed object streams (supported by newer PDF applications) and can convert such files into those that can be read with older viewers. It can also be used for checking PDF files for structural errors, inspecting stream contents, or extracting objects from PDF files. QPDF is not PDF content creation or viewing software – it does not have the capability to create PDF files from scratch or to display PDF files.
This package includes the command-line qpdf tools. It also contains the documentation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qpdf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qpdf.
sudo apt -y install qpdf
Or if you have aptitude installed you can use the following command.
sudo aptitude install qpdf
Summary
In this tutorial we learn how to fix fix-qdf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.