For those linux fans, I use Fedora 12 as the development box, and actually build the windows version and nsis installer all from it. So its easy for me to generate Fedora 12 builds.
Download Fedora 12 Binarieshttp://download.remotehams.com/download.php?file=RCFlinux.2.1.104.fc12.zipIf you want to see more linux builds, the community must show interest, then i will produce them. For now everyone seems to be running Windows.
-------------------------------------------
Fedora Instructions
-------------------------------------------
The instructions here are for Fedora Linux, but may work on other linux distros.
-------------------------------------------
Required for runtime
-------------------------------------------
yum install hamlib postgresql postgresql-server pgadmin3 wxGTK
-------------------------------------------
Basic Overview
-------------------------------------------
There is a folder "~/rcf/data/" wich contains all the required data (config, templates, etc).
Use "./RCFwizard" GUI to generate a configuration file. If you prefer manually editing the config
file in text mode its located under "/home/<user>/rcf/data/RCFserver.conf". If not create one and put it there.
You may execute the server as follows.
cd ~/rcf/
su -c "./RCFserver"
(Note you must run as root to bind to port less than 1024)
-------------------------------------------
Postgresql Quick Setup Guide (Fedora)
-------------------------------------------
Its very important to initialize the postgres server database if you have never done so.
su -c "service postgresql initdb"
After the database initializes you may start the postgresql service
su -c "service postgresql start"
Change the "ident" options found at the bottom of the config file to "trust", example below
* Note, this completly opens PostgreSQL to any user on the local system. Any program or user
can access any database. Please refer to the PostgreSQL manual for a more secure setup if desired.
su -c "vim /var/lib/pgsql/pgsql/data/pg_hba.conf"
-----------------------
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
-----------------------
You might want to restart the postgresql service at this point

su -c "service postgresql stop"
su -c "service postgresql start"
or
su -c "service postgresql restart"
-------------------------------------------
Setting the postgres root password
-------------------------------------------
su - root
su - postgres
psql
postgres=# \password
Enter new password:
Enter it again:
postgres=# \q