source: trunk/packages/vizservers/start_nanoscale.sh.in @ 2984

Last change on this file since 2984 was 2984, checked in by gah, 12 years ago
File size: 722 bytes
RevLine 
[2343]1#! /bin/sh
2
3# Fail on errors
4set -e
5
6exec_prefix="@exec_prefix@"
7bindir="@bindir@"
8libdir="@libdir@"
9. ${bindir}/rappture.env
10
[2350]11# lspci is either in /sbin or /usr/sbin
12PATH=/sbin:/usr/sbin:${PATH}
13export PATH
14
[2343]15# Determine the number of video cards we have.  The new render server
16# motherboards have the useless XGI Volari onboard video controllers (no 3D
17# capabilities) so we have to make sure we count only the nVidia cards.
18
[2787]19numVideo=`lspci | fgrep VGA | fgrep -i NVIDIA | wc -l`
[2343]20
21# Don't let nanoscale and the visualization servers run away.  Limit cpu time
22# to 20 minutes.
23
24minutes=20
25ulimit -t $(expr ${minutes} \* 60 )
26
27# Make /tmp the current working dirctory.
28cd /tmp
29
[2348]30exec ${bindir}/nanoscale -x ${numVideo}
[2343]31
32
Note: See TracBrowser for help on using the repository browser.