Moving PostgreSQL (from Windows to Linux)NOTE: This is a user submitted instruction for reference. Your environment may be different.
C:\Program Files\PostgreSQL\8.2\bin\pq_dump kwokdb > kwokdb.backup Then transfer the file to a Linux server. Under linux:
sudo su postgres
createdb kwokdb
psql -u kwokdb < kwokdb.backup |