
"All work done by GPUGRID is purely scientific and all discoveries will be in the public domain. Thanks for your contribution."
— The GPUGRID team, Developers
Message boards : Frequently Asked Questions (FAQ) : GPU FAQ: HOW TO install NVIDIA drivers on Linux 64 bit
| Author | Message |
|---|---|
|
A little guide how to install NVIDIA drivers on 64bit Linux PCs * Download the drivers from the NVIDIA website into a directory (for instance /tmp) * Press ctrl-alt-F1, a text login screen will appear * login as root * type "init 3" to stop the X server * type "sh NVIDIA....pkg.run" to install the driver from the directory where you had downloaded it * answer yes to all questions from the installer * type "init 5" * press "ctrl-alt-F7" to get back to X Windows
| |
| ID: 1385 | Rating: 0 | rate:
| |
|
Your method didn't work for me. I couldn't stop the X server with "init 3" | |
| ID: 2102 | Rating: 0 | rate:
| |
|
This is what worked for me to install the Video card drivers on Linux Ubuntu 8.04 after about 12 hours of trying spread out over 3 days ... Maybe it can help somebody else ... | |
| ID: 3186 | Rating: 0 | rate:
| |
|
My post below is inaccurate in a sense since once I Re-Booted everything was messed up again & I couldn't run the CUDA Wu's again. Trying to figure it out now again ... | |
| ID: 3191 | Rating: 0 | rate:
| |
|
I think it's not necessary to hide your posts, maybe they can help someone... | |
| ID: 3193 | Rating: 0 | rate:
| |
|
I messed with it a few hours again this morning, the "sbin/init 3" command does nothing & tells me I haven't exited the X Server when trying to install the Video Drivers. | |
| ID: 3216 | Rating: 0 | rate:
| |
|
Installing on a headless box (no X-windows) mknod -m 0666 /dev/nvidiactl c 195 255 If you have a second card, add: mknod -m 0666 /dev/nvidia1 c 195 1 | |
| ID: 3334 | Rating: 0 | rate:
| |
|
This was my inelegant workaround to access init 3 in Mandriva 2009 64. Nothing of what was said in prevoius posts worked for me. | |
| ID: 3452 | Rating: 0 | rate:
| |
Installing on a headless box (no X-windows) Something I saw elsewhere and should probably fix the need to do this is to add user boinc (or BOINC) to the video group. When I look at /dev/nvidia* in Ubuntu 8.10, I see this: crw-rw---- 1 root video 195, 0 2009-09-05 23:24 nvidia0 crw-rw---- 1 root video 195, 255 2009-09-05 23:24 nvidiactl The shows that root is the owner and that video is the group that have read and write permissions. If you add boinc to the video group, it will have the group rw permissions. This is the correct way to allow a user access to hardware. If you do 666 to the device, you give access to anyone. I can't get my computer to use CUDA either despite it recognizing the card. It just won't request GPU tasks at all on any project. I tried 185 and 190 nvidia drivers. The SDK programs work, so I have no idea why boinc isn't using the card. | |
| ID: 12403 | Rating: 0 | rate:
| |
|
On the most recent version of Ubuntu there's no need to install the NVIDIA driver. Apparently it's already installed. All you have to do is use BOINC to attach to GPUGRID, and it works. | |
| ID: 13541 | Rating: 0 | rate:
| |
On the most recent version of Ubuntu there's no need to install the NVIDIA driver. Sadly, I was too optimistic. Each time the system is booted, BOINC randomly finds or doesn't find the GPU. Usually it doesn't find it, occasionally it does. Is there some easy way to get BOINC to make a new attempt to find the GPU? I'm guessing that maybe it can find the GPU more reliably once the bootup process is finished and everything is stable. Unfortunately, running the CPU benchmarks doesn't make it look for the GPU again. I'd try stopping and restarting the boinc client if I knew how to stop it safely and how to start it as the "boinc" user. The BOINC version is 6.4.5. | |
| ID: 13556 | Rating: 0 | rate:
| |
Sadly, I was too optimistic. I found a solution. See this post by Skip Da Shu and also my reply. | |
| ID: 13571 | Rating: 0 | rate:
| |
|
I hope you don't mind that I place a link to my N00B guide to Nvidia Driver & BOINC installation on Ubuntu/Mint here. http://www.gpugrid.net/forum_thread.php?id=1553 | |
| ID: 15124 | Rating: 0 | rate:
| |
On the most recent version of Ubuntu there's no need to install the NVIDIA driver. Something in the startup happens too quickly so when you get control open a terminal and type sudo /etc/init.d/boinc-client restart and all should be well. | |
| ID: 16486 | Rating: 0 | rate:
| |
|
I stuck a "sleep 5" in the startup script. start() { sleep 5 log_begin_msg "Starting $DESC: $NAME" if is_running; then log_progress_msg "already running" else start-stop-daemon --start --quiet --background --pidfile $PIDFILE \ --make-pidfile --user $BOINC_USER --chuid $BOINC_USER \ --chdir $BOINC_DIR --exec $BOINC_CLIENT -- $BOINC_OPTS fi ____________ - da shu @ the BOINC farm, SkipsJunk, Guru Mountain, Crunchers | |
| ID: 17922 | Rating: 0 | rate:
| |
Message boards : Frequently Asked Questions (FAQ) : GPU FAQ: HOW TO install NVIDIA drivers on Linux 64 bit