3- Affter issuing gons.sh command I got "gons.sh: command not found" error, what should I do?
1- Affter issuing ./configure command I get this error "C++ compiler cannot create executables" what should I do?
You have not C++ compiler installed on your meshine, please install g++ compiler,
If you are on Debian or Ubuntu issue following command.
sudo apt-get install g++
2- Affter First issue of command ./reconfiguregons.sh I got "autoreconf: not found" error, what should I do?
Because we are going to add new module to gons package we want to install the `Automake' and `Perl' packages. Grab them from any GNU archive site.
If you are on Debian or Ubuntu issue following command.
sudo apt-get install automake
3- Affter issuing gons.sh command I got "gons.sh: command not found" error, what should I do?
If your are on Debian or Ubuntu all following step will be done the first time you issue ./reconfiguregons command, you should just logout and login to your account again.
You have got this error because you have not gons.sh command on your PATH environment variable.
create "bin" directory in your home directory
$ mkdir /home/"user name"/bin
Add this local bin to your PATH, change .profile file in your home directory as follow. this way it will be added automatically each time you login to your account.
$ gedit /home/"user name"/.profile
Add these lines to the end of .profile file
# *****************
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# ****************
Issue ./reconfiguregons.sh command again and the simlink to gons.sh will be created in your local bin directory.




