|
|
|
|
Thread Tools |
|
|
#1 | |
![]() ![]() ![]() ![]() ![]() Member 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 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, to configure the client: Code:
./fah6 -configonly Code:
./fah6 -smp -verbosity 9 Code:
./fah6 -smp 8 -verbosity 9 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 Code:
sudo sh NVIDIA_CUDA_Toolkit_2.0_ubuntu7.10_x86.run 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 The following command will download the latest stable binary release of wine Code:
sudo apt-get install wine Code:
wine notepad 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 Code:
ldd ~/.wine/drive_c/windows/system32/cudart.dll 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) 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 Code:
nice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80 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 Code:
nice -n 19 wine Folding@home-Win32-GPU.exe -forcegpu nvidia_g80 -gpu 1 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 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 Quote:
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 Code:
deb http://ppa.launchpad.net/directhex/monoxide/ubuntu jaunty main deb-src http://ppa.launchpad.net/directhex/monoxide/ubuntu jaunty main Code:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 23DC003A Code:
sudo apt-get update Code:
sudo apt-get install libmono-winforms2.0-cil Then you can run it from a terminal using Code:
mono ~/hfm/HFM.exe Add a new repository Code:
sudo add-apt-repository ppa:xorg-edgers/ppa sudo apt-get update Code:
sudo apt-get install xserver-xorg-video-intel 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. |
|
|
|
|
|
|
#2 |
![]() ![]() ![]() |
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 |
|
|
|
|
|
#3 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
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 |
|
|
|
|
|
#4 | |
![]() ![]() ![]() ![]() ![]() Member Join Date: Sep 2009
Location: Reykjavík, Ísland
|
Quote:
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 |
|
|
|
|
|
|
#5 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jan 2006
|
That's a great guide, Sydney. I will have to change my bookmark over to this one, now. Thanks! ![]() |
|
|
|
|
|
#6 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() 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!!! to Team 32! New guide writers stock the fridge. ![]() |
|
|
|
|
|
#7 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
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 |
|
|
|
|
|
#8 | |
![]() ![]() ![]() ![]() ![]() Member Join Date: Sep 2009
Location: Reykjavík, Ísland
|
Quote:
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 |
|
|
|
|
|
|
#9 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() 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. |
|
|
|
|
|
#10 | |
![]() ![]() ![]() ![]() Member Join Date: Sep 2008
Location: Mirabel, Quebec, Canada
|
Quote:
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 |
|
|
|
|
|
|
#11 |
![]() ![]() ![]() ![]() 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 |
|
|
|
|
|
#12 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#13 |
![]() ![]() ![]() ![]() ![]() 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. |
|
|
|
|
|
#14 |
![]() ![]() ![]() 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) On that note, thanks for the straightforward and current guide ![]() |
|
|
|
|
|
#15 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#16 |
![]() ![]() ![]() 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! |
|
|
|
|
|
#17 | |
![]() ![]() ![]() ![]() ![]() Member Join Date: Sep 2009
Location: Reykjavík, Ísland
|
Quote:
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 |
|
|
|
|
|
|
#18 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#19 |
![]() ![]() ![]() |
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 |
|
|
|
|
|
#20 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() 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/ |
|
|
|
|
|
#21 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#22 |
![]() ![]() ![]() Member |
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 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
__________________
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 |
|
|
|
|
|
#23 | |
![]() ![]() ![]() ![]() ![]() Member Join Date: Sep 2009
Location: Reykjavík, Ísland
|
Quote:
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 |
|
|
|
|
|
|
#24 |
![]() ![]() ![]() Member |
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
__________________
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 |
|
|
|
|
|
#25 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#26 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Senior Folding Zombie |
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 |
|
|
|
|
|
#27 |
![]() ![]() ![]() ![]() ![]() Member 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 |
|
|
|
|
|
#28 |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jan 2006
|
Glad to help. Who's the guy to talk to about the style usage they want for the front page ? |
|
|
|
|
|
#29 | |
![]() ![]() ![]() ![]() ![]() Member Join Date: Sep 2009
Location: Reykjavík, Ísland
|
Quote:
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 |
|
|
|
|
|
|
#30 | |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Sep 2004
Location: @Home... Folding@Home
|
Quote:
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. ![]() |
|
|
|
|
| Thread Tools | |
|
|