F@H January TeAm record run?

Page 3 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
This is what I get
 

Attachments

  • Screenshot from 2025-01-11 11-57-43.png
    226.4 KB · Views: 3

mmonnin03

Senior member
Nov 7, 2006
264
249
116
8.3.18 is the latest version. Your file names downloaded do not match the file attempting to install. If its a remote PC, the only program needed is the client which can be controlled from from a main desktop fahcontrol
Code:
wget https://download.foldingathome.org/releases/public/fah-client/debian-10-64bit/release/fah-client_8.3.18_amd64.deb
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
8.3.18 is the latest version. Your file names downloaded do not match the file attempting to install. If its a remote PC, the only program needed is the client which can be controlled from from a main desktop fahcontrol
Code:
wget https://download.foldingathome.org/releases/public/fah-client/debian-10-64bit/release/fah-client_8.3.18_amd64.deb
I am running v8 now on that box, I gave up on v7, but how to I fix it to allow "remote access" as fahcontrol says ??
 

mmonnin03

Senior member
Nov 7, 2006
264
249
116
You can edit the config.xml file in the /etc/fahclient folder with a copy from another PC. Once connected the slot can be adjusted if the PCI slot # is different. A client restart is probably needed after maybe?
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
You can edit the config.xml file in the /etc/fahclient folder with a copy from another PC. Once connected the slot can be adjusted if the PCI slot # is different. A client restart is probably needed after maybe?
found another config.xml

<!-- HTTP Server -->
<allow v='127.0.0.1,192.168.1.1-192.168.1.255'/>

<!-- Network -->
<proxy v=':8080'/>

<!-- Remote Command Server -->
<command-allow-no-pass v='127.0.0.1,192.168.1.1-192.168.1.255'/>

Was the appropriate area, edited, then rebooted (I could not figure out how to restart the service)

No joy.....
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
Here is the entire config on 9654 linux box. for some reason, I see the above added to the config.xml, but when I pasted into email, it lost the above !!


<config>
<!-- Client Control -->
<fold-anon v='true'/>

<!-- Folding Slot Configuration -->
<gpu v='false'/>

<!-- Slot Control -->
<power v='FULL'/>

<!-- User Information -->
<passkey v='*******************************'/>
<team v='198'/>
<user v='Mark_F_Williams'/>

<!-- Folding Slots -->
<slot id='0' type='CPU'>
<paused v='true'/>
</slot>
</config>
 
Last edited:

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
so... its not there. Everytime I reboot it wipes out the changes I make !

Edit: I did it one more time, reboot, its now in config.xml, but again, no joy.
 

Skillz

Golden Member
Feb 14, 2014
1,019
1,048
136
You can NOT control a V8.x client with any V7.x versions. They are NOT backwards compatible between them.

Like I told you in Discord. You need to install V8 on ALL your clients so you can control all of them using the web interface.\

 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
You can NOT control a V8.x client with any V7.x versions. They are NOT backwards compatible between them.

Like I told you in Discord. You need to install V8 on ALL your clients so you can control all of them using the web interface.\

View attachment 114779
well, thanks for that. More information than I got in discord while I was there. screw V8.
 

StefanR5R

Elite Member
Dec 10, 2016
6,275
9,591
136
Configs are automatically backed up at /var/lib/fahclient/configs
I know. But are they still there if a deinstallation is performed? And since the user does not explicitly control when these copies are created, he does not explicitly control the exact state that is written to these copies.

Was the appropriate area, edited, then rebooted (I could not figure out how to restart the service)

No joy.....
Here is the entire config on 9654 linux box. for some reason, I see the above added to the config.xml, but when I pasted into email, it lost the above !!
It is safer, if not necessary, to shut down the client before you edit config.xml.

If you edit the config file while the client is still running, the client would have to monitor the file for changes and re-read when necessary, otherwise it would overwrite it with outdated content eventually. (There are multiple occasions at which the client rewrites the config file.) Maybe it normally does the monitoring and reading, or maybe it doesn't; I don't know. But after something went seriously wrong with the client, it's safer to assume that the client remains unaware of external changes to config.xml. Hence first bring the client down, then edit config.xml.

Note that shutdown sometimes takes very long. Sometimes it doesn't succeed, then I kill the FAHClient processes manually.
 

StefanR5R

Elite Member
Dec 10, 2016
6,275
9,591
136
Some commands, to be executed locally on the host on which the Folding@Home client is running.

Start and stop the FAHClient service

service FAHClient status
Query what the system is knowing of the state of the F@H client service.

sudo service FAHClient start
Start the service, obviously.

sudo service FAHClient stop
Tell the service to shut down, pretty please.

pgrep -l 'FAHClient|FAHCore|FahCore'
Look up whether there is still a client or/and core process around. Specify -a instead of -l if you want to see the entire commandline of these processes.

sudo pkill 'FAHClient|FAHCore|FahCore'
If the client keeps running even though you told the service to be stopped, send SIGTERM to the client and any still running fahcorewrapper and fahcore. Only to be done in emergencies.

sudo pkill -9 'FAHClient|FAHCore|FahCore'
If SIGTERM wasn't enough, send SIGKILL which is guaranteed to end any affected process. Only for emergencies because this will likely leave /var/lib/fahclient/work/ in a bad state. (But a full system reboot may leave this in a bad state too, as the system will first try to shut down remaining services gently, then will shut down them forcibly, same as [p]kill -9.)

Configure autostart of the FAHClient service

sudo systemctl enable FAHClient
Tell the system that the FAHClient service shall be started at boot. Personally, I don't do that, as mentioned.

sudo systemctl disable FAHClient
Tell the system that the FAHClient service shall *not* be started at boot.

Monitoring, slot configuration and control, and more

nvidia-smi dmon -d 30
Only for Nvidia GPUs, evidently. Periodically show GPU power, temperature, shader utilization, and more. 30 means monitoring intervals of 30 seconds. Quit with [Ctrl][c].

tail -F /var/lib/fahclient/log.txt
Monitor the client log. Quit with [Ctrl][c].

See thread "Folding@home: FAHClient config & control manual page" for much more.
 
Last edited:

IEC

Elite Member
Super Moderator
Jun 10, 2004
14,505
5,662
136
Brought my final two rigs online. 5700X/Radeon VII under Bitspower waterblock and a Epyc 4564P aircooled CPU-only rig are operational within the past 24 hours.

RTX 4080 Super, 2x RTX 2070 have been online pretty much since Jan 1. The only other GPU I have lying around is a Radeon 290 but not worth folding I think.
 

Endgame124

Senior member
Feb 11, 2008
974
705
136
A 290 sounds better than the dual Radeon 250X I’ve got but haven't turned on yet.
 
Last edited:

Endgame124

Senior member
Feb 11, 2008
974
705
136
Half Way through the month stats! We are about 2B points behind where we need to be to break the record, however the 5 team F@H competition could possibly be where we add a bunch of points, just like last year.

Daily January Peak (1/9/2025):
902,886,501

Week Peak (Week of 1/5/25 to 1/12/25):
5,733,330,395

Peak month active Users (1/6/2025):
64

Current team peaks:
Daily Peak (1/25/2024):
1,666,901,932 points

Week Peak (week of 1/21/24)
7,654,446,4125 points

Monthly Peak (Month of Jan 2024)
26,898,347,599 points

Peak month active Users (1/23/2024):
83
Peak Active Users (April 19th, 2020):
1481
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
I might do better if windows would stop re-booting all my damn boxes. I purposely did not try to activate them, as some said it won't update until you activate. Well thats not true.

And its not the boxes rebooting due to problems, I get windows prompts. This time it wanted to activate backups. And Genoa boxes don't reboot due to instability, 4 of them were Genoas !
 

StefanR5R

Elite Member
Dec 10, 2016
6,275
9,591
136
January points, from EOC's 01.15.25 12pm CST update:

... 11,569,987,851 ...... Team AnandTech
..... 1,054,469,972 ...... 10esseetony
.......... 35,702,991 ...... [TA]Assimilator1
........ 432,594,953 ...... biodoc
........ 503,181,662 ...... cellarnoise2
........ 115,576,916 ...... Cliff_Taylor
..... 1,998,933,063 ...... crashtech
.......... 79,256,798 ...... Daniel_Trudeau
........ 131,459,060 ...... drnickriviera
........ 607,933,566 ...... Endgame124
.......... 87,548,453 ...... Familyman_19
.......... 49,884,703 ...... fhonyotski
.......... 95,289,560 ...... Hostile
........ 315,741,378 ...... IEC
........ 135,719,009 ...... Ken_g6
.......... 80,001,320 ...... King_of_Efland
..... 2,437,481,051 ...... Mark_F_Williams
........ 488,915,547 ...... mmonnin
..... 1,697,248,637 ...... Pokey_TA
.......... 72,109,992 ...... spaghettiJunction
........ 805,499,365 ...... xii5ku
................................... and *many* more contributors

I am lazy and copy+pasted only the figures from twenty TeAm mates with high 24h average. But shouts to all who were chipping in so far. Even if it was perhaps just for a couple of days or so when you could set aside some computer time for the purpose, you push the TeAm closer to *maybe* make another record F@H month!
 

Endgame124

Senior member
Feb 11, 2008
974
705
136
I just bumped up my 3080ti to a power limit of 110%. It won't yield much extra PPD, but it was getting cold in my basement and it would add more PPD than trying to fold on Raspberry Pis.
 

IEC

Elite Member
Super Moderator
Jun 10, 2004
14,505
5,662
136
Looks like my UPS shut down for some reason this morning taking out my internet meaning 9+ hours of no production. Oh well, manually bringing rigs back online.
 

Pokey

Platinum Member
Oct 20, 1999
2,781
480
126
It would appear we have picked up some additional Folders. We were, if I recall 50-something on the 1st and now 60+.
 
Reactions: Endgame124

Endgame124

Senior member
Feb 11, 2008
974
705
136
It would appear we have picked up some additional Folders. We were, if I recall 50-something on the 1st and now 60+.
We started with, I believe, 56 active on 12/29. Hopefully we pickup a few more by the time the 5 team contest rolls around.
 

In2Photos

Platinum Member
Mar 21, 2007
2,304
2,388
136
For some reason I had a work unit that showed "Update Core" on the status for over 12 hours. It's going now. Don't think I have had that happen before.
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,678
15,737
136
I just got my electric bill $1150 !! After the PG race that ends on the 23rd, all my stats are going in the toilet !
 
Reactions: Assimilator1

Endgame124

Senior member
Feb 11, 2008
974
705
136
This will likely be my last update before the F@H challenge. Peaks are unchanged from last week, and we are about 10B points away from topping Jan 2024. Will we break the record? Who knows, but it will be fun to find out!

Below are the current peak statistics

Daily January Peak (1/9/2025):
902,886,501

Week Peak (Week of 1/5/25 to 1/12/25):
5,733,330,395

Peak month active Users (1/6/2025):
64

Current team peaks:
Daily Peak (1/25/2024):
1,666,901,932 points

Week Peak (week of 1/21/24)
7,654,446,4125 points

Monthly Peak (Month of Jan 2024)
26,898,347,599 points

Peak month active Users (1/23/2024):
83
Peak Active Users (April 19th, 2020):
1481
 
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |