I need to export data from Firebird to a CSV file. When I used Google, I found the FBExport tool. I need to install this tool on my CentOS 6 machine. I am using CentOS Server. How do I install FBExport in my terminal? Is there any proper documentation for this?
I'm using CentOS 6.
I have unzipped the file and after that I couldn't find any installation file. I am a Linux beginner please help me.
After unzipped the file , i tried to run the fbexport file, but the result is 'command not found'.
Create a folder in your terminal and execute the below code
git clone https://github.com/mariuz/fbexport`
open Fbexport folder and execute the below command
make all;
If you face any error like g++ command not found then run the below command
yum groupinstall 'Development Tools'
Again execute the command make all
, if you face any error like cannot find - lfbclient then do the following commands
sudo -i;
cd /lib64
ln -s libfbclient.so.2.5.9 libfbclient.so
Execute make all
command.