Search found 36 matches

by Marcos FRM
Sun Oct 12, 2025 12:13 pm
Forum: v8.4.9 Public Release for Windows / Linux / macOS
Topic: cannot install on ubuntu 25,04
Replies: 3
Views: 632

Re: cannot install on ubuntu 25,04

This issue has been fixed starting from alpha version 8.5.0.

https://foldingathome.org/alpha/
by Marcos FRM
Thu Aug 14, 2025 6:41 pm
Forum: v8.4.9 Public Release for Windows / Linux / macOS
Topic: v8 client on rpm ?
Replies: 10
Views: 5013

Re: v8 client on rpm ?

Since I fixed and updated the tooling to make it possible to create the v8 RPM, it is possible to build the package from the sources. In theory, it would be possible, with rpmbuild available, to create it even within Debian and derivatives (requiring some changes here to avoid autodetection: https:/...
by Marcos FRM
Mon Jul 28, 2025 7:24 pm
Forum: v8.4.9 Public Release for Windows / Linux / macOS
Topic: Build Rpm fails
Replies: 10
Views: 9354

Re: Build Rpm fails

https://github.com/FoldingAtHome/fah-cl ... ING-RPM.md

"Fedora 41+ also requires the openssl-devel-engine package."
by Marcos FRM
Tue May 13, 2025 10:56 pm
Forum: v8.4.9 Public Release for Windows / Linux / macOS
Topic: Build Rpm fails
Replies: 10
Views: 9354

Re: Build Rpm fails

git clone https://github.com/cauldrondevelopmentllc/cbang git clone https://github.com/foldingathome/fah-client-bastet git -C cbang checkout bastet-v8.4.9 git -C fah-client-bastet checkout v8.4.9 git -C cbang cherry-pick -n 1e24e6d90cde528db0bb7a1f65009d237c737701 export CBANG_HOME=$PWD/cbang scons...
by Marcos FRM
Fri May 09, 2025 12:39 am
Forum: 3rd party contributed software
Topic: lufah - Little Utility for FAH v8
Replies: 22
Views: 208956

Re: lufah - Little Utility for FAH v8

Aha! This appears to be the mysterious bug I reported to you a while ago, calxalot. Thanks arisu.
by Marcos FRM
Mon May 05, 2025 5:34 pm
Forum: v8.4.9 Public Release for Windows / Linux / macOS
Topic: My client cannot detect the GPU after reboot, and I need to manually restart the client
Replies: 7
Views: 6374

Re: My client cannot detect the GPU after reboot, and I need to manually restart the client

The difference is that if we order after graphical.target, the practical effect is ordering the service after display-manager.service, implemented by GDM, SDDM, etc. Display managers usually do at least one additional thing: wait for the CanGraphical property of systemd-logind to become true. Conseq...
by Marcos FRM
Tue Feb 18, 2025 1:02 pm
Forum: V8.3.xx Open Beta
Topic: [tuto] 8.3.5, openSUSE Tumbleweed, installation
Replies: 55
Views: 966961

Re: [tuto] 8.3.5, openSUSE Tumbleweed, installation

I can't reproduce the compilation error. It works fine here. Note that you need to apply this cbang fix on top of version 8.4.9 to be able to create the package on Tumbleweed.
by Marcos FRM
Sun Feb 02, 2025 6:04 pm
Forum: Problems with AMD/ATI drivers
Topic: Ultimate AMD GPU Linux FAH Guide for OpenCL (FAH-Client v8 only)
Replies: 52
Views: 220692

Re: Ultimate AMD GPU Linux FAH Guide for OpenCL (FAH-Client v8 only)

Excluding the -devel packages, which, in theory, aren't needed, installing the rocm-opencl package from the Fedora repository would be the equivalent, which you've already proven doesn't work. :lol: Have you tried installing just the rocm-opencl-runtime package from the AMD repository (it should bri...
by Marcos FRM
Sun Feb 02, 2025 5:33 pm
Forum: Problems with AMD/ATI drivers
Topic: Ultimate AMD GPU Linux FAH Guide for OpenCL (FAH-Client v8 only)
Replies: 52
Views: 220692

Re: Ultimate AMD GPU Linux FAH Guide for OpenCL (FAH-Client v8 only)

I looked into what this AMD rocm-opencl-sdk package consists of in Fedora. It is an empty package that depends on the following packages: hsa-rocr-devel hsakmt-roct-devel rocm-core rocm-opencl-devel rocm-opencl-runtime Fedora packages several ROCm packages. Maybe it's a matter of figuring out which ...
by Marcos FRM
Thu Jan 30, 2025 11:07 am
Forum: Q&A about unsupported distros of Linux
Topic: Radeon 7800 XT not used for folding (Fedora 41) [Solved]
Replies: 12
Views: 49154

Re: Radeon 7800 XT not used for folding (Fedora 41)

muziqaz wrote: Wed Jan 29, 2025 3:57 pm ... usermod render and video for your username ...
Is it necessary? The client process is executed under the fah-client user account, which is already part of the render and video groups. :?
by Marcos FRM
Wed Dec 18, 2024 11:26 am
Forum: V8.1.xx Open Beta
Topic: Unable to run NVIDIA GPU with driver 535 [Solved]
Replies: 17
Views: 46849

Re: Unable to run NVIDIA GPU with driver 535 [Solved]

Up until version 8.4.9, the fah-client service has NoNewPrivileges=yes set, meaning any process running as a normal user can't escalate privileges, like running SUID root binaries. It's a crucial security measure, as nothing in the fah-client needs root privileges. Unfortunately, the Nvidia driver i...
by Marcos FRM
Mon Nov 04, 2024 3:34 pm
Forum: V8.1.xx Open Beta
Topic: Unable to run NVIDIA GPU with driver 535 [Solved]
Replies: 17
Views: 46849

Re: Unable to run NVIDIA GPU with driver 535 [Solved]

Using an override (i.e. `systemctl edit fah-client.service`) to set NoNewPrivileges to "no" also results in the GPU working, as expected. Now, going by the systemd.exec man page this would mean that something in the code is utilising `execve()` on a setuid or setgid binary. Is there any c...
by Marcos FRM
Sat Oct 19, 2024 10:55 pm
Forum: V8.3.xx Open Beta
Topic: Linux Ubuntu/Mint/Pop OS Install Work folder to different hard drive
Replies: 13
Views: 23189

Re: Linux Ubuntu/Mint/Pop OS Install Work folder to different hard drive

First, do not directly edit /usr/lib/systemd/system/fah-client.service. Editing this file directly is discouraged, as it will be overwritten during package updates. Use the command systemctl edit --full fah-client.service to create a custom service unit. If the EDITOR environment variable is not set...