Go Back   Overclockers Forums > Teams > Folding Team > A guide to folding under Linux
Reply
 
Thread Tools
Old 09-28-09, 06:00 PM   #1
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
A guide to folding under Linux

Do not use 9.10, the GPU performance is awful when the CPU client is running, I am currently trying to figure it out. Use 9.04 for maximum performance
Works on Ubuntu 9.04 as of December 11th 2009
This guide will only work for Nvidia cards, 8x00 cards or newer.
I've heard about a wrapper for ATi cards, but seeing as I don't own one I can't really test it out.


This guide was done using Ubuntu 9.04 64-bit, should work without any modification on other Debian based distros. To get SMP folding on the CPU client, you must have a 64-bit system.

Start by updating your system
Code:
sudo apt-get update 
sudo apt-get dist-upgrade
Setting up the CPU Client:
Setting up the CPU client is pretty straight-forward
Start by opening a terminal (located in Applications > Accessories > Terminal)

Then type in or copy/paste this into the terminal.

Code:
sudo apt-get install ia32-libs
mkdir -p ~/folding
cd ~/folding
wget http://www.stanford.edu/group/pandegroup/folding/release/FAH6.24beta-Linux.tgz
tar xzf FAH6.24beta-Linux.tgz
Now you have created a folder in /home/yourname/ called folding, downloaded the linux F@H client and extracted it.

Now, to configure the client:

Code:
./fah6 -configonly
Enter your settings, and then you can run the client using the following command

Code:
./fah6 -smp -verbosity 9
If you are using an i7, use
Code:
./fah6 -smp 8 -verbosity 9
and furthermore, if you are running your i7 stable 24/7 you can use the -bigadv flag for a point bonus.

GPU client
This is where it gets tricky, because there is no Linux GPU client, only the Windows binaries. Therefore we will use Wine to run it.

But firstly, we need to install drivers and the CUDA toolkit.

Let's download the latest CUDA enabled driver.

Go to System > Administration > Hardware Drivers and select the 180 drivers, let them download and install.

Reboot

The next step is downloading the CUDA toolkit. Open a new terminal and type in:

Code:
wget http://developer.download.nvidia.com/compute/cuda/2_0/linux/toolkit/NVIDIA_CUDA_Toolkit_2.0_ubuntu7.10_x86.run
Then, within the same terminal type:
Code:
sudo sh NVIDIA_CUDA_Toolkit_2.0_ubuntu7.10_x86.run
Just hit enter to verify install path when asked. CUDA has been set up and you are ready to go.

In case you were wondering, the reason that I'm using the 7.10 toolkit is because the GPU2 wrapper was written for that version of the toolkit, newer toolkits do not work.

Then, we need to link the toolkit.
Code:
sudo sh -c "echo '/usr/local/cuda/lib' > /etc/ld.so.conf.d/cuda.conf"
sudo ldconfig
let's grab wine

The following command will download the latest stable binary release of wine

Code:
sudo apt-get install wine
If you just installed Wine, you might want to create the directory structure before starting up the GPU client, do so by simply running notepad.
Code:
wine notepad
You need to download the CUDA wrapper, so the windows binaries can communicate with the Linux driver.
Code:
wget http://www.gpu2.twomurs.com/wrapper2ndgen/2.1/cudart.dll.so -O ~/.wine/drive_c/windows/system32/cudart.dll
ln -s ~/.wine/drive_c/windows/system32/cudart.dll ~/.wine/drive_c/windows/system32/nvcuda.dll
then run

Code:
ldd ~/.wine/drive_c/windows/system32/cudart.dll
the result should be something like this

Code:
user@computer:~$ ldd /usr/local/lib/wine/nvcuda.dll.so
	linux-gate.so.1 =>  (0xf7fae000)
	libcudart.so.2 => /usr/local/cuda/lib/libcudart.so.2 (0xf7f34000)
	libwine.so.1 => /usr/local/lib/libwine.so.1 (0xf7dfd000)
	libm.so.6 => /lib32/libm.so.6 (0xf7dd6000)
	libc.so.6 => /lib32/libc.so.6 (0xf7c78000)
	libdl.so.2 => /lib32/libdl.so.2 (0xf7c74000)
	libpthread.so.0 => /lib32/libpthread.so.0 (0xf7c5b000)
	librt.so.1 => /lib32/librt.so.1 (0xf7c52000)
	libstdc++.so.6 => /usr/lib32/libstdc++.so.6 (0xf7b64000)
	libgcc_s.so.1 => /usr/lib32/libgcc_s.so.1 (0xf7b54000)
	/lib/ld-linux.so.2 (0xf7faf000)
If you see any not founds, it probably has something to do with the CUDA toolkit, make sure you installed 32-bit toolkit, not the 64-bit, even though you are running a 64-bit kernel.


Hard part is over, now it's just setting up the client. Start by downloading it. To do this open a new terminal and type this:

Code:
mkdir ~/gpu0
cd ~/gpu0
wget http://www.stanford.edu/group/pandegroup/folding/release/Folding@home-Win32-GPU_XP-623.zip
unzip Folding@home-Win32-GPU_XP-623.zip
Then run the client by typing

Code:
nice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80
(even if you have a newer card than a G80, this is the flag to be given)

After configuring it, your client should be folding away.


Dual GPU Folding
If you have more than one GPU, you can use them both at the same time, just as you would do in Windows.
In terminal:
Code:
mkdir ~/gpu1/
cp ~/gpu0/Folding@home-Win32-GPU_XP-623.zip ~/gpu1/
cd ~/gpu1/
unzip Folding@home-Win32-GPU_XP-623.zip
Then run this client by typing
Code:
nice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80 -gpu 1
And put machineid as 3

Scripts for running the clients.

I don't like to have a lot of programs start up with my OS, so I have a simple script to start my clients.
Run these commands to create scripts for every client (Users with only one GPU need not do the last command)
Code:
echo -e "cd ~/folding/\n./fah6 -smp -verbosity 9 -advmethods" > ~/fahcpu
Code:
echo -e "cd ~/gpu0/\nnice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80 -verbosity 9 -advmethods -gpu 0" > ~/fahgpu0
Code:
echo -e "cd ~/gpu1/\nnice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80 -verbosity 9 -advmethods -gpu 1" > ~/fahgpu1
Code:
echo -e "gnome-terminal -x ./fahcpu\ngnome-terminal -x ./fahgpu0\ngnome-terminal -x ./fahgpu1" > ~/fah
Code:
chmod +x fahcpu fahgpu0 fahgpu1 fah
Now you can run all your clients by typing ./fah

Running the clients on startup
Go to System > Preferences > Startup Applications
Now add the clients you want to run

CPU Client:
Name: cpu
Command: ~/./fahcpu
Comment: cpu client

GPU0 Client:
Name: gpu0
Command: ~/./fahgpu0
Comment: GPU0 client

GPU1 Client:
Name: gpu1
Command: ~/./fahgpu1
Comment: GPU1 client

Next time you reboot your system, your folding clients will be running in the background.]
However, as I stated earlier, I personally prefer running the ./fah script myself on each startup so I can monitor the output of each client, instead of having them run in the background.

Overclocking your GPU in Linux
If you are doing this, I assume you have already done so in Windows and know the safe clocks for your card(s). To overclock your video card in Linux you have to enable 'coolbits' in your nvidia control panel. To do this we will have to edit the xorg configuration
Code:
sudo gedit /etc/X11/xorg.conf
And then add 'Option "CoolBits" "1"' under 'Section: "Device"' like so:
Quote:
Section "Device"
Identifier "Configured Video Device"
Driver "nvidia"
Option "NoLogo" "True"
Option "Coolbits" "1"
EndSection
Save the file and quit. Now you will have access to the CoolBits menu under your nvidia control panel
Access the control panel by going to System > Administration > NVIDIA X Server Settings, or simply typing "nvidia-settings" in a terminal. You should now see a 'Clock Frequencies' section where you can set your clocks. This has to be done every time you boot up Linux though, so the most convenient way would be to flash your video card with a BIOS with increased clock settings. Doing that is risky and is NOT RECOMMENDED UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING.

Monitoring
For monitoring I will use harlam's monitoring program, HFM.net. It was written in .net so we need to use Mono to run it under Linux. In Ubuntu 9.04 the mono in the repositories is out of date and will not support HFM.net. We need to add another repository to get mono 2.4.

Edit your package sources
Code:
sudo gedit /etc/apt/sources.list
And at the bottom of the file add
Code:
deb http://ppa.launchpad.net/directhex/monoxide/ubuntu jaunty main 
deb-src http://ppa.launchpad.net/directhex/monoxide/ubuntu jaunty main
Add the GPG key
Code:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 23DC003A
Update the repositories
Code:
sudo apt-get update
Then install the winforms libraries (will also install all the other dependencies needed to run HFM.net)
Code:
sudo apt-get install libmono-winforms2.0-cil
Now download the binaries from here and extract them to a folder of your choice. I used ~/hfm/.

Then you can run it from a terminal using
Code:
mono ~/hfm/HFM.exe
If you are experiencing missing text in HFM and are using an intel i8** or i9** video card on Ubuntu 9.10, then try this fix.
Add a new repository
Code:
sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
Then install the latest xserver-xorg-video-intel package
Code:
sudo apt-get install xserver-xorg-video-intel
Then go to System > Administration > Software Sources and under 'other software' uncheck xorg-edgers to avoid your system from unnecessarily updating more of it's packages to unstable versions.

This guide was based on information from:
Folding@Home Linux SMP Guide
GPU2 Linux
NVIDIA GPU2 Linux/WINE Headless Install Guide

Feel free to improve this guide and redistribute it, giving me credit would be greatly appreciated

If you have any questions, issues or anything regarding F@H under Linux, just ask in this thread and I will try to help.

Troubleshooting
What to do if my xserver doesn't start?

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting

Last edited by Sydney; 12-10-09 at 05:41 PM.
Sydney is offline   Reply With Quote
Old 09-28-09, 06:33 PM   #2
sneakysnowman

 
sneakysnowman's Avatar 

Join Date: Sep 2009
Location: Switzerland
 
Send a message via MSN to sneakysnowman Send a message via Skype™ to sneakysnowman
I love this guide, helped me set up countless PCs

__________________
Folding for T32 with:
i7 920 D0 @ 4GHz, 3x GTX260-216 | i7 920 C0 @ 3.6GHz, 2x GTX260-216, 9800GT | Q9550 @ 4GHz, water cooled, 2x 9800GX2| Phenom II 940 @ 3.6GHz, 3x GTX260-216, 9800GT
Q9300 @ 3.2GHz, 2x GTX260-216 | E8400 @ 4GHz, 2x GTX260-216 | E5200 @ 3.6GHz, GTX260-216 | E5200 @ stock, GTX295, 9800GT, 8800GT (temp until GTX295 comes back from RMA) | T5600 @ 1.83GHz | PS3

I'm a Team 32 Folding Mentor. Ask me about Folding
sneakysnowman is offline   Reply With Quote
Old 09-28-09, 06:54 PM   #3
Shelnutt2
Overclockers Team Content Editor

 
Shelnutt2's Avatar 

Join Date: Jun 2005
Location: /home/
 
Send a message via AIM to Shelnutt2 Send a message via MSN to Shelnutt2
Quote:
Originally Posted by Sydney View Post
You need to download the CUDA wrapper, or else the GPU client is likely to use up 100% CPU and simply freeze everything you are doing.
Only cause the CUDA wrapper started out as my baby do I care, but thats not quite right. The wrapper is the essential part of allowing for the cuda.dll calls you be redirected to the libcudart.so library. Without the wrapper the GPU client would not work. It is true though that a loop timer was built into the wrapper to cut down on CPU usage. Due to the nature of the wine, the wrapper and the linux drivers, fah ended up making more calls than were needed, like if you tried to open the same webpage in 10 different tabs. It's a waste of resources. The loop timer, put a delay in between opening the new tabs.

__________________
Build!.Borg!.Recruit!.Folding.for.Team.32!
Gigabyte P35-DS3R, E6300, 2x512MB Team Group DDR2 667, EVGA 7800GT Heat

Want to run the folding@home gpu client in linux?
www.linuxfah.info

Your teacher is a dumbass. The equation is exact. ~Frodo Baggins
Damn....It's 12:00 AM and I thought my 805 would be a magic pumkin and turn into a conroe.........boy was I fooled:) ~Stilletto
This is what I get for not only being a newb, but also disregarding instructions! ~ShadowPho
I hate women... but im not gay lol. ~MrCrowley
Love can fade but knowledge stays forever (unless you develop alzheimers). ~Constantinos
Shelnutt2 is online now   Reply With Quote
Old 09-28-09, 07:01 PM   #4
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Quote:
Originally Posted by Shelnutt2 View Post
Only cause the CUDA wrapper started out as my baby do I care, but thats not quite right. The wrapper is the essential part of allowing for the cuda.dll calls you be redirected to the libcudart.so library. Without the wrapper the GPU client would not work. It is true though that a loop timer was built into the wrapper to cut down on CPU usage. Due to the nature of the wine, the wrapper and the linux drivers, fah ended up making more calls than were needed, like if you tried to open the same webpage in 10 different tabs. It's a waste of resources. The loop timer, put a delay in between opening the new tabs.
I see, I suppose I was reading the chancelog between first and second generation wrapper instead of what it essentially does.

Fixing now.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 09-28-09, 07:24 PM   #5
Adak
Senior Member

 
Adak's Avatar 

Join Date: Jan 2006
 
That's a great guide, Sydney.

I will have to change my bookmark over to this one, now.

Thanks!
Adak is offline   Reply With Quote
Old 09-28-09, 08:43 PM   #6
harlam357
Senior Fold-a-holic

 
harlam357's Avatar 

Join Date: Sep 2004
Location: @Home... Folding@Home
 
We need to get this into our Install Sticky. However, I'll link this thread from the Intro and the FAQ in the meantime.

Nice Guide Sydney!!! ...and to Team 32! New guide writers stock the fridge.

harlam357 is offline   Reply With Quote
Old 09-28-09, 09:01 PM   #7
Shelnutt2
Overclockers Team Content Editor

 
Shelnutt2's Avatar 

Join Date: Jun 2005
Location: /home/
 
Send a message via AIM to Shelnutt2 Send a message via MSN to Shelnutt2
Sydney would you be willing to make a plug for HFM instead of fahmon?

Also I think I came off wrong. I didn't mean for you to have to put, "most essential part". I was just trying to inform you on what the wrapper actually did. You can word it however you want, but don't feel like you have to say it's the most essential part. I mean in reality is there really one part thats more essential than the others? It takes every step and every piece of software/hardware for it to work!

__________________
Build!.Borg!.Recruit!.Folding.for.Team.32!
Gigabyte P35-DS3R, E6300, 2x512MB Team Group DDR2 667, EVGA 7800GT Heat

Want to run the folding@home gpu client in linux?
www.linuxfah.info

Your teacher is a dumbass. The equation is exact. ~Frodo Baggins
Damn....It's 12:00 AM and I thought my 805 would be a magic pumkin and turn into a conroe.........boy was I fooled:) ~Stilletto
This is what I get for not only being a newb, but also disregarding instructions! ~ShadowPho
I hate women... but im not gay lol. ~MrCrowley
Love can fade but knowledge stays forever (unless you develop alzheimers). ~Constantinos
Shelnutt2 is online now   Reply With Quote
Old 09-28-09, 09:10 PM   #8
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Quote:
Originally Posted by Shelnutt2 View Post
Sydney would you be willing to make a plug for HFM instead of fahmon?

Also I think I came off wrong. I didn't mean for you to have to put, "most essential part". I was just trying to inform you on what the wrapper actually did. You can word it however you want, but don't feel like you have to say it's the most essential part. I mean in reality is there really one part thats more essential than the others? It takes every step and every piece of software/hardware for it to work!
Sure, I'll check it out tomorrow, fahmon isn't really all that great, since it tends to get buggy when reading GPU clients in Linux.

Wording has never been my strongest side, I'm a bit tired right now, being 2 AM and all, I'll have a look at it tomorrow.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 09-28-09, 09:14 PM   #9
harlam357
Senior Fold-a-holic

 
harlam357's Avatar 

Join Date: Sep 2004
Location: @Home... Folding@Home
 
I wasn't going to ask for an HFM plug b/c it's almost as difficult for the novice to get the right version of Mono on their box as it is to learn to compile FahMon.

However, if one has Mono 2.4+... it should be pretty "plug-and-chug" at this point.

btw- the guide is up in both the Intro and FAQ if you want to check it out.

harlam357 is offline   Reply With Quote
Old 09-28-09, 09:55 PM   #10
augie1111
Member



Join Date: Sep 2008
Location: Mirabel, Quebec, Canada
 
Quote:
Originally Posted by harlam357 View Post
I wasn't going to ask for an HFM plug b/c it's almost as difficult for the novice to get the right version of Mono on their box as it is to learn to compile FahMon.

However, if one has Mono 2.4+... it should be pretty "plug-and-chug" at this point.

btw- the guide is up in both the Intro and FAQ if you want to check it out.
Hmm, as Homer would say 'Mono". Hey, as a *nix N00b, I can attest to the excellence of this guide, if followed 'exactly' with the releases shown. My GTX260 is just flying along and I haven't even OC'd it yet! Besides, I now have an SMP running too as an extra bonus to the GPU.

__________________
i7 930 @ 3.95 GHz, eVGA X58 3XSLI, Corsair DDR-3 1600 6GB Dominator, eVGA GTX260-216

Q6600 @ 3.07GHz, ASUS P5Q Pro, 4 GB RAM, 2x eVGA 9800GT @ 1800 shaders, W7 Ult X64, SMP2
augie1111 is offline   Reply With Quote
Old 09-29-09, 03:50 PM   #11
augie1111
Member



Join Date: Sep 2008
Location: Mirabel, Quebec, Canada
 
OK, so the GTX 260 is getting 5.6 PPD on a steady diet of 353 pointers ATM, as far as I can tell. I have run through the OC guide but it's Martian to me in the nVidia XServer. What would be the *nix equivalent to 'shader clock' which is all that I ever really pushed up on in Windows getting the card up to 7K PPD on average? Thanks.

__________________
i7 930 @ 3.95 GHz, eVGA X58 3XSLI, Corsair DDR-3 1600 6GB Dominator, eVGA GTX260-216

Q6600 @ 3.07GHz, ASUS P5Q Pro, 4 GB RAM, 2x eVGA 9800GT @ 1800 shaders, W7 Ult X64, SMP2
augie1111 is offline   Reply With Quote
Old 10-01-09, 05:09 AM   #12
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
You can't modify shader clocks in Linux, you can only edit core and memory clocks, but shader clocks are linked to core clocks, so if you increase them, you increase shaders.

I just flashed my cards with the clocks i was happy with.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-01-09, 11:40 AM   #13
cadman420

 
cadman420's Avatar 

Join Date: Feb 2008
Location: Michigan
 
This guide is great.... Thanks

__________________
Gigabyte 790FX
AMD Phenom II 940 BE @ 3.8ghz
XFX GeForce GTX 260
8 gb Corsair XMS 800
Corsair 750w PSU
150gb Raptor X, Windows 7 Pro x64

WD 250gb Slave
WD 250gb Slave
WD 40gb Slackware 13.0
Custom Water Cooling.
cadman420 is offline   Reply With Quote
Old 10-02-09, 07:20 PM   #14
NV



Join Date: Sep 2009
 
Code:
:~$ ldd ~/.wine/drive_c/windows/system32/cudart.dllldd: warning: you do not have execution permission for `/home/adam/.wine/drive_c/windows/system32/cudart.dll'
	linux-gate.so.1 =>  (0xf7fb8000)
	libcudart.so.2 => not found
	libwine.so.1 => /usr/lib32/libwine.so.1 (0xf7e52000)
	libm.so.6 => /lib32/libm.so.6 (0xf7e2b000)
	libc.so.6 => /lib32/libc.so.6 (0xf7cc8000)
	libdl.so.2 => /lib32/libdl.so.2 (0xf7cc4000)
	/lib/ld-linux.so.2 (0xf7fb9000)
I copied and pasted the wget for the cuda toolkit that you posted. Yes, running 64bit ubuntu, but the wget seems to link to the 32-bit version. Not sure how to check what was installed though, I'm basically blindly following your guide because this is the only straightforward and current guide I've been able to find.

On that note, thanks for the straightforward and current guide
NV is online now   Reply With Quote
Old 10-03-09, 07:00 PM   #15
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Did you get any errors when installing the CUDA toolkit? And did you install it to the default path? (/usr/local/cuda)

Are you sure you executed these two commands?
sudo sh -c "echo '/usr/local/cuda/lib' > /etc/ld.so.conf.d/cuda.conf"
sudo ldconfig

Do you get any errors when executing
sudo sh -c "echo '/usr/local/cuda/lib' > /etc/ld.so.conf.d/cuda.conf"

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-03-09, 07:21 PM   #16
NV



Join Date: Sep 2009
 
Hmm, well I typed that command into the terminal last time. I guess I could have punched it in wrong. Copied and pasted it now, and everything worked smoothly. I now have a more extensive output and nothing not found.

Should be up and running with the GPU client in a few minutes then, I guess. Thanks!

Edit:
Working now Thanks for the awesome guide!
NV is online now   Reply With Quote
Old 10-03-09, 07:24 PM   #17
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Quote:
Originally Posted by NV View Post
Hmm, well I typed that command into the terminal last time. I guess I could have punched it in wrong. Copied and pasted it now, and everything worked smoothly. I now have a more extensive output and nothing not found.

Should be up and running with the GPU client in a few minutes then, I guess. Thanks!
Perhaps you forgot ldconfig, it updates the system with newly created dynamic links.

Anyway, let me know how it goes

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-06-09, 12:19 PM   #18
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Updated with HFM.net instead of fahmon.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-06-09, 12:20 PM   #19
sneakysnowman

 
sneakysnowman's Avatar 

Join Date: Sep 2009
Location: Switzerland
 
Send a message via MSN to sneakysnowman Send a message via Skype™ to sneakysnowman
Hooray

__________________
Folding for T32 with:
i7 920 D0 @ 4GHz, 3x GTX260-216 | i7 920 C0 @ 3.6GHz, 2x GTX260-216, 9800GT | Q9550 @ 4GHz, water cooled, 2x 9800GX2| Phenom II 940 @ 3.6GHz, 3x GTX260-216, 9800GT
Q9300 @ 3.2GHz, 2x GTX260-216 | E8400 @ 4GHz, 2x GTX260-216 | E5200 @ 3.6GHz, GTX260-216 | E5200 @ stock, GTX295, 9800GT, 8800GT (temp until GTX295 comes back from RMA) | T5600 @ 1.83GHz | PS3

I'm a Team 32 Folding Mentor. Ask me about Folding
sneakysnowman is offline   Reply With Quote
Old 10-06-09, 01:20 PM   #20
harlam357
Senior Fold-a-holic

 
harlam357's Avatar 

Join Date: Sep 2004
Location: @Home... Folding@Home
 
Much obliged Sydney.

My only suggestion is to change the download link to send folks to the front HFM.NET Google Code Page. That way when I release another version the link won't have to be updated.

http://code.google.com/p/hfm-net/

harlam357 is offline   Reply With Quote
Old 10-06-09, 01:41 PM   #21
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Done

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-12-09, 06:01 PM   #22
muhon_zen
Member

 
muhon_zen's Avatar 

Join Date: Apr 2003
Location: Peru
 
Send a message via ICQ to muhon_zen Send a message via MSN to muhon_zen Send a message via Yahoo to muhon_zen Send a message via Skype™ to muhon_zen
Hey Sydney, great guide btw! I have trouble getting the GPG Key at

Code:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 23DC003A
It responds in a timeout.

Code:
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --keyserver keyserver.ubuntu.com --recv-keys 23DC003A
gpg: requesting key 23DC003A from hkp server keyserver.ubuntu.com
gpg: keyserver timed out
gpg: keyserver receive failed: keyserver error
Any workarounds for this matter?

__________________
Muhon
Overclocking since 2003

Dell XPS Studio 13
Intel Core 2 Duo P8700 2.53GHz
4GB DDR3-1066 RAM (2x2GB)
nVidia GeForce 9500MG (9200MGS + 9400MG)
320GB Standard 7200RPM HDD
WLED 13.3" LCD
Refurbished FTW


muhon_zen is offline   Reply With Quote
Old 10-12-09, 06:09 PM   #23
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Quote:
Originally Posted by muhon_zen View Post
Hey Sydney, great guide btw! I have trouble getting the GPG Key at

Code:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 23DC003A
It responds in a timeout.

Code:
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --keyserver keyserver.ubuntu.com --recv-keys 23DC003A
gpg: requesting key 23DC003A from hkp server keyserver.ubuntu.com
gpg: keyserver timed out
gpg: keyserver receive failed: keyserver error
Any workarounds for this matter?
That's strange, it's working for me. What happens when you ping the keyserver?
Code:
ping keyserver.ubuntu.com

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-12-09, 07:00 PM   #24
muhon_zen
Member

 
muhon_zen's Avatar 

Join Date: Apr 2003
Location: Peru
 
Send a message via ICQ to muhon_zen Send a message via MSN to muhon_zen Send a message via Yahoo to muhon_zen Send a message via Skype™ to muhon_zen
It is responding correctly.

Code:
PING keyserver.ubuntu.com (91.189.94.173) 56(84) bytes of data.
64 bytes from esperanza.canonical.com (91.189.94.173): icmp_seq=1 ttl=47 time=197 ms
64 bytes from esperanza.canonical.com (91.189.94.173): icmp_seq=2 ttl=47 time=198 ms
64 bytes from esperanza.canonical.com (91.189.94.173): icmp_seq=3 ttl=47 time=201 ms
64 bytes from esperanza.canonical.com (91.189.94.173): icmp_seq=4 ttl=47 time=199 ms
64 bytes from esperanza.canonical.com (91.189.94.173): icmp_seq=5 ttl=47 time=198 ms
And now it worked. Perhaps they were under maintenance just then. I'll keep configuring, thanks a million!

__________________
Muhon
Overclocking since 2003

Dell XPS Studio 13
Intel Core 2 Duo P8700 2.53GHz
4GB DDR3-1066 RAM (2x2GB)
nVidia GeForce 9500MG (9200MGS + 9400MG)
320GB Standard 7200RPM HDD
WLED 13.3" LCD
Refurbished FTW


muhon_zen is offline   Reply With Quote
Old 10-27-09, 03:33 AM   #25
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Hmm, I tried figuring out the slowdown issues on the GPU clients while the CPU client running at 100% with the 2.6.31 kernel in 9.10 with no success. Tried compiling a new kernel with timer frequency at 1000hz as opposed to the default 100hz. Does anyone have any suggestions?

It's either the kernel or the driver, since the 180 driver needed patching to get installed, but I don't think that should affect performance.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 10-27-09, 02:12 PM   #26
AmbientFiction
Senior Folding Zombie

 
AmbientFiction's Avatar 

Join Date: Jun 2001
Location: Somewhere in the top 100 folders for team 32
 
Send a message via ICQ to AmbientFiction Send a message via AIM to AmbientFiction Send a message via MSN to AmbientFiction Send a message via Yahoo to AmbientFiction
Super thread Sydney. This should be stuck!!!! Keep on folding them chips till they bleed!

__________________

*Athlon64x2 AM2 6000@3300 Epox AF570+ultra/g 2G Mushkin DDR2 800+Asus 1GBHD4650
*Athlon64x2 939 4200@2310 Asus A8VE-SE 1GB MushkinDDR ATI 1GBHD4350<Fileserver
*Athlon64x2 939 3800@stock Asus A8VE-SE 512MDDR Geil 1EVGA 512M GTS250<PXE Server
*P4 3000@3300 1ML2 Epox 4VKMI 1GB Mushkin Blue DDR


*NIXON!!
Folding 24/7. Folding CPUs till they bleed!!!
Heatware

AmbientFiction is offline   Reply With Quote
Old 11-02-09, 05:27 PM   #27
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Seeing as English is not my first language, I was recommended to get some help to improve the grammar and such in the guide so it can be submitted as a frontpage article, is anyone up for it?

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 11-15-09, 04:34 AM   #28
Adak
Senior Member

 
Adak's Avatar 

Join Date: Jan 2006
 
Glad to help. Who's the guy to talk to about the style usage they want for the front page ?
Adak is offline   Reply With Quote
Old 11-24-09, 08:11 AM   #29
Sydney
Member

 
Sydney's Avatar 

Join Date: Sep 2009
Location: Reykjavík, Ísland
 
Quote:
Originally Posted by Adak View Post
Glad to help. Who's the guy to talk to about the style usage they want for the front page ?
PM me your email and I'll send you guide I've written. It's in the right format, the text just needs some adjusment.


Also, I can't get the newest version of HFM working on 9.10 on my laptop. Font isn't working, I don't know whether this is a problem with HFM or a problem with mono under Linux, I'm still investigating.

__________________
Asus Maximus Formula X38 flashed with X48 BIOS | Intel Core 2 Quad Q9550 @ 4.01GHz, 1.360V | Swiftech Apogee GT
2x2GB OCZ Reaper 940MHz 5-5-5-15-2T | EVGA GTX275 @ 700/1600/1200 | D-Tek Fuzion GFX2 | MCP350 | Black Ice Pro II
Gigabyte Odin GT 800W | Antec P182 | 2x 320GB WD Caviars RAID0| Arch Linux 64-bit | Windows 7 Ultimate x64


My guide to Linux folding | My guide to RAID dual booting
Sydney is offline   Reply With Quote
Old 11-24-09, 11:28 AM   #30
harlam357
Senior Fold-a-holic

 
harlam357's Avatar 

Join Date: Sep 2004
Location: @Home... Folding@Home
 
Quote:
Originally Posted by Sydney View Post
Also, I can't get the newest version of HFM working on 9.10 on my laptop. Font isn't working, I don't know whether this is a problem with HFM or a problem with mono under Linux, I'm still investigating.
Probably a little of both... using your instructions to install Mono on 9.04, I got v0.4.0 binaries up and running. However, the Queue Viewer is not drawn correctly... and it works fine on the Mono Project's own Development VMWare Image.

So, since there is no 1 Mono package (packages are built for each target distro) it tough to say which is the culprit.

The Queue Viewer drawing is just one thing that exhibits what can happen when one uses the same "version" of the Mono Framework, but not the same "package".

When you get it working (b/c you're a persistent guy - and I just know you will) I'd love to see the instructions. In fact, I'd like to transcribe your current Mono 2.4 & Ubuntu 9.04 instructions into the HFM Google Group. Is that ok with you? You will be credited of course.

harlam357 is offline   Reply With Quote

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT -5. The time now is 12:48 PM.
Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.