source: nanoscale/branches/1.0/start_nanoscale.sh.in

Last change on this file was 6625, checked in by ldelgass, 7 years ago

cleanup mergeinfo

File size: 874 bytes
Line 
1#! /bin/sh
2
3# Fail on errors
4set -e
5
6exec_prefix="@exec_prefix@"
7bindir="@bindir@"
8libdir="@libdir@"
9
10# lspci is either in /sbin or /usr/sbin
11PATH=/sbin:/usr/sbin:${bindir}:${PATH}
12LD_LIBRARY_PATH=${libdir}:${LD_LIBRARY_PATH}
13export PATH LD_LIBRARY_PATH
14
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
19numVideo=`lspci | fgrep VGA | fgrep -i NVIDIA | wc -l`
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
30# Start a window manager so geovis doesn't crash
31pgrep -u rappture -x twm > /dev/null || twm -display :0 &
32
33exec ${bindir}/nanoscale -x ${numVideo}
Note: See TracBrowser for help on using the repository browser.