I'm using FAH client 7.5.1 on Ubuntu Linux 16.04 and I am wondering if there's a screensaver available since the folding interfers especially with video playback?
Regards, Jonas Jakob Öberg.
Screensaver for Linux?
Moderators: Site Moderators, FAHC Science Team
Re: Screensaver for Linux?
Well, it's not a screensaver because it displays nothing, but there's an option to configure a slot to run only on idle -- and that assumes your OS correctly notifies a screensaver when the system is considered idle.
In FAHControl, Right-click on the slot in the Status tab or add the option to your config.
In my experience, you don't need to do that for CPU slots. The GPU has no concept of priority or any way to interrupt one kernel for another one. Those are "advanced"
concepts that only exist when there's an OS deciding what to do next.
In FAHControl, Right-click on the slot in the Status tab or add the option to your config.
In my experience, you don't need to do that for CPU slots. The GPU has no concept of priority or any way to interrupt one kernel for another one. Those are "advanced"
concepts that only exist when there's an OS deciding what to do next.
Posting FAH's log:
How to provide enough info to get helpful support.
How to provide enough info to get helpful support.
Re: Screensaver for Linux?
When clicking "Configure" and then the "Expert" tab it is possible to add "Extra client options." I've broswed the configuration guide but didn't see any option to only fold on idle: what option name with what value should I add?
-
- Posts: 1996
- Joined: Sun Mar 22, 2020 5:52 pm
- Hardware configuration: 1: 2x Xeon E5-2697v3@2.60GHz, 512GB DDR4 LRDIMM, SSD Raid, Win10 Ent 20H2, Quadro K420 1GB, FAH 7.6.21
2: Xeon E3-1505Mv5@2.80GHz, 32GB DDR4, NVME, Win10 Pro 20H2, Quadro M1000M 2GB, FAH 7.6.21 (actually have two of these)
3: i7-960@3.20GHz, 12GB DDR3, SSD, Win10 Pro 20H2, GTX 750Ti 2GB, GTX 1080Ti 11GB, FAH 7.6.21 - Location: UK
Re: Screensaver for Linux?
I only use windows so not sure it is the same for Linux but in the advanced control if I right click on a cpu slot I can select on idle for that slot iirc … I guess then entering configuration for that slot and editing it would show what the actual flag used is? … Apologies if this doesn't help
2x Xeon E5-2697v3, 512GB DDR4 LRDIMM, SSD Raid, W10-Ent, Quadro K420
Xeon E3-1505Mv5, 32GB DDR4, NVME, W10-Pro, Quadro M1000M
i7-960, 12GB DDR3, SSD, W10-Pro, GTX1080Ti
i9-10850K, 64GB DDR4, NVME, W11-Pro, RTX3070
(Green/Bold = Active)
Xeon E3-1505Mv5, 32GB DDR4, NVME, W10-Pro, Quadro M1000M
i7-960, 12GB DDR3, SSD, W10-Pro, GTX1080Ti
i9-10850K, 64GB DDR4, NVME, W11-Pro, RTX3070
(Green/Bold = Active)
Re: Screensaver for Linux?
Status + rt-click a GPU in Folding_Slots and click ON_IDLE.
Setting it in the ExtraClientOptins as idle / true will apply it to ALL slots. My method applies it to individual slots. I contend that the only part of FAH that's interfering with your other uses of the GPU is the slot using the same GPU. (You may have more than one GPU and I'll bet that CPU folding is properly prioritized by your OS.)
You're welcome to choose whatever works for you.
Setting it in the ExtraClientOptins as idle / true will apply it to ALL slots. My method applies it to individual slots. I contend that the only part of FAH that's interfering with your other uses of the GPU is the slot using the same GPU. (You may have more than one GPU and I'll bet that CPU folding is properly prioritized by your OS.)
You're welcome to choose whatever works for you.
Posting FAH's log:
How to provide enough info to get helpful support.
How to provide enough info to get helpful support.
Re: Screensaver for Linux?
Another option is to reconfigure your video playback software to rasterize using the CPU rather than the GPU. The programmers who taught your mahcine to rasterize on your GPU made the assumption that nobody would ever use a GPU for anything except rasterizing their video.
Posting FAH's log:
How to provide enough info to get helpful support.
How to provide enough info to get helpful support.
Re: Screensaver for Linux?
Thank you all for your replies.
I managed to find a small script that activates the FAH client when the screen goes blank:
#!/bin/bash
while sleep 30s ; do
state=$(gnome-screensaver-command --query | grep -o "\w*active\w*")
if [[ $state == active ]]
then
sudo /etc/init.d/FAHClient start
else
sudo /etc/init.d/FAHClient stop
fi
done
I managed to find a small script that activates the FAH client when the screen goes blank:
#!/bin/bash
while sleep 30s ; do
state=$(gnome-screensaver-command --query | grep -o "\w*active\w*")
if [[ $state == active ]]
then
sudo /etc/init.d/FAHClient start
else
sudo /etc/init.d/FAHClient stop
fi
done