gnc-fq-dump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnc-fq-dump: command not found
or when using sudo you get the following error message
sudo: gnc-fq-dump: command not found
Solutions to gnc-fq-dump: command not found
How To Fix gnc-fq-dump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnc-fq-dump is provided by gnucash package.
gnucash is:
Gnucash provides accounting functions suitable for use by small businesses and individuals. It can track finances in multiple accounts, keeping running and reconciled balances. There is support for customer, vendor and employee processing. It has an X based graphical user interface, double entry, a hierarchy of accounts, expense accounts (categories), and can import Quicken QIF files and OFX files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnucash
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnucash.
sudo apt -y install gnucash
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnucash
Summary
In this tutorial we learn how to fix gnc-fq-dump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.