This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docpublic:divers:fah [2020/04/25 11:34] procacci@tem-tsp.eu [reference] |
docpublic:divers:fah [2020/04/28 11:47] (current) procacci@tem-tsp.eu [reference] |
||
---|---|---|---|
Line 1: | Line 1: | ||
===== FAH linux centos ===== | ===== FAH linux centos ===== | ||
- | here's how I enabled running | + | here's how I managed to run Folding At Home on a Centos 8 ( and 7) system where few tricks needs to be done |
For supported OS : Windows, Mac, supported Linux distribution, | For supported OS : Windows, Mac, supported Linux distribution, | ||
Line 16: | Line 16: | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
+ | * https:// | ||
===== Centos 8 particularities ===== | ===== Centos 8 particularities ===== | ||
Line 48: | Line 49: | ||
+ | ===== dependencies ===== | ||
+ | ==== pygtk2 ==== | ||
+ | |||
+ | initially FAHControl script fail to start because gtk python module is missing | ||
+ | |||
+ | < | ||
+ | $ / | ||
+ | Traceback (most recent call last): | ||
+ | File "/ | ||
+ | from fah import FAHControl, load_fahcontrol_db | ||
+ | File "/ | ||
+ | import util | ||
+ | File "/ | ||
+ | import gtk | ||
+ | ImportError: | ||
+ | </ | ||
+ | |||
+ | add gtk python module for FAHControl to work | ||
+ | |||
+ | < | ||
+ | # yum install pygtk2 | ||
+ | </ | ||
+ | |||
+ | then FAHControl python script might complain about missing python | ||
+ | |||
+ | < | ||
+ | $ / | ||
+ | bash: / | ||
+ | </ | ||
+ | |||
+ | |||
+ | you can force it to your installed version by editing the 1st line of the script , here / | ||
+ | |||
+ | < | ||
+ | # head -1 / | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | {{: | ||
+ | |||
+ | config is stored in / | ||
+ | ==== FAHViewer and freeglut ==== | ||
+ | |||
+ | because we installed it with --nodeps ! | ||
+ | |||
+ | < | ||
+ | $ FAHViewer | ||
+ | FAHViewer: error while loading shared libraries: libglut.so.3: | ||
+ | </ | ||
+ | |||
+ | the add freeglut for FAHviewer | ||
+ | |||
+ | < | ||
+ | # yum install freeglut | ||
+ | </ | ||
+ | |||
+ | {{: | ||
==== processes ==== | ==== processes ==== | ||