Advanced search

Message boards : Graphics cards (GPUs) : Linux-box w/o GUI?

Author Message
Profile Txt.file
Send message
Joined: 5 Jun 08
Posts: 2
Credit: 3,232
RAC: 0
Level

Scientific publications
wat
Message 4049 - Posted: 26 Nov 2008 | 7:35:19 UTC

I want to change the OS on my PC from actually Windoze Vista x64 to Debian/sid amd64 but i don't want to install any GUI cause i don't need one. This PC will only run boinc. Not less and not more.

Is ist possible to run gpugrid without a GUI? or do I need to install and run one?

Profile GDF
Volunteer moderator
Project administrator
Project developer
Project tester
Volunteer developer
Volunteer tester
Project scientist
Send message
Joined: 14 Mar 07
Posts: 1957
Credit: 629,356
RAC: 0
Level
Gly
Scientific publications
watwatwatwatwat
Message 4054 - Posted: 26 Nov 2008 | 22:21:11 UTC - in response to Message 4049.

from a text terminal use this script to create the devices. All the rest is more or less standard.

gdf

#!/bin/bash

modprobe nvidia

if [ "$?" -eq 0 ]; then

# Count the number of NVIDIA controllers found.
N3D=`/sbin/lspci | grep -i NVIDIA | grep "3D controller" | wc -l`
NVGA=`/sbin/lspci | grep -i NVIDIA | grep "VGA compatible controller" | wc -l`

N=`expr $N3D + $NVGA - 1`
for i in `seq 0 $N`; do
mknod -m 666 /dev/nvidia$i c 195 $i;
done

mknod -m 666 /dev/nvidiactl c 195 255

else
exit 1
fi

Post to thread

Message boards : Graphics cards (GPUs) : Linux-box w/o GUI?

//