Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
kvalobs:kvoss:system:qc2:8hdk376snf09zj37dk82s92:ubuild [2009-06-23 22:08:59] paule created |
kvalobs:kvoss:system:qc2:8hdk376snf09zj37dk82s92:ubuild [2022-05-31 09:29:32] (current) |
||
---|---|---|---|
Line 2: | Line 2: | ||
====== System Build Notes ====== | ====== System Build Notes ====== | ||
+ | |||
+ | Below is a mixed bag of what is needed and other things I tried. Refer also to the definitive kvalobs installation dokumentasjon within the DMZ. | ||
< | < | ||
Line 102: | Line 104: | ||
make install | make install | ||
</ | </ | ||
+ | |||
+ | The current documentation provides the folllowing guidance: | ||
+ | < | ||
+ | # Local additions for kvalobs | ||
+ | host all | ||
+ | host all | ||
+ | host all | ||
+ | host all | ||
+ | host all | ||
+ | host all | ||
+ | </ | ||
+ | |||
+ | Eventually I found that by default the pg_hba.conf file includes: | ||
+ | |||
+ | # IPv4 local connections: | ||
+ | host all | ||
+ | |||
+ | ... and this I needed to change to: | ||
+ | |||
+ | (A) | ||
+ | # IPv4 local connections: | ||
+ | # host all | ||
+ | host all all | ||
+ | |||
+ | or even | ||
+ | |||
+ | (B) | ||
+ | ... | ||
+ | host all kvalobs | ||
+ | |||
+ | ==== GSL ==== | ||
+ | |||
+ | For the GNU Scientific library: | ||
+ | |||
+ | < | ||
+ | |||
+ | Also useful for plotting results(e.g. GNU graph) | ||
+ | < | ||
+ | |||
+ | Also include: | ||
+ | < | ||
+ | ... | ||
+ | -lgsl \ | ||
+ | -lgslcblas | ||
+ | ... | ||
+ | </ | ||
+ | in the local Makefile.am | ||
+ | |||
+ | |||
+ | |||