Size: 4252
Comment:
|
Size: 4271
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 114: | Line 114: |
tcsh -c 'cd /opt/rtcds/tst/x1/medm/ && /opt/apps/linux64/epics/extensions/bin/linux-x86_64/medm -x' | tcsh -c 'cd /opt/rtcds/tst/x1/medm/ && /opt/apps/linux64/epics/extensions/bin/linux-x86_64/medm -displayFont fixed -x' |
Setup CDS software on Workstations
Setup
change controls UID to 1001, and controls GID to 1001 because all of the CDS files owned by controls account with UID=1001 and GID=1001. see https://awiki.ligo-wa.caltech.edu/aLIGO/CdsUbuntuDesktopBuild
sudo chown 1001 /frames sudo chown -R 1001:1001 /frames/* sudo chown 1001 /opt sudo chown 1001 /opt/apps sudo chown 1001 /opt/rtcds sudo chown -R 1001:1001 /opt/apps/* sudo chown -R 1001:1001 /opt/rtcds/*
sudo apt-get install tcsh
- change default shell to tcsh
sudo apt-get install g++
- Install Matlab with simulink at /opt/apps/linux64/matlab
install NFS client as
sudo apt-get install nfs-common
add in /etc/fstab
standalone:/opt/rtcds /opt/rtcds nfs rw,bg,soft 0 0 standalone:/opt/rtapps /opt/rtapps nfs rw,bg,soft 0 0 standalone:/opt/cdscfg /opt/cdscfg nfs rw,bg,soft 0 0
add in /etc/hosts
131.215.113.100 standalone 131.215.113.110 desktop1
sudo reboot
Installation
EPICS installation
Installed binary package from /daq/software/binary/apps/... in aLIGO DAQ software page.
fftw installation
Installed binary package from /daq/software/binary/apps/... in aLIGO DAQ software page.
grace installation
Installed binary package from a standard package using sudo apt-get install grace.
dataviewer compilation
The dataviewer package is now available with the advLigoRTS repository, as it has to be built against the frame-builder libraries. We need to get an export of the advLigoRTS repository to build dataviewer. One method is to do a fresh checkout of the trunk and export that.
- mkdir /ligo/cds/project/repos
- mkdir /ligo/cds/project/repos/advLigoRTS
- cd /ligo/cds/project/repos/advLigoRTS
svn co https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk --username=<first.last>
- cd trunk
- svn export . /ligo/cds/project/RTS-dv
- cd /ligo/cds/project/RTS-dv
- cd src/dv
- edit Makefile to install in /opt/apps/linux64/dataviewer
- edit Control/dataviewer so DVPATH is set to /opt/apps/linux64/dataviewer
- sudo apt-get install libXp-dev
- sudo apt-get install libXpm-dev
- make
- make install
metaio installation
Installed binary package from /daq/software/binary/apps/... in aLIGO DAQ software page.
Root compilation
5.26.00 shown in aLIGO CDS page did not work. We installed 5.28.00
GDS compilation
GDS is also maintained in a CDS Subversion repository. So, as with dataviewer, we will checkout the gds repository, export it, and build from there. The configure will use some switches to limit the build to non-DMT tools and to add EPICS tools.
- mkdir /ligo/cds/project/repos/gds
- cd /ligo/cds/project/repos/gds
svn co https://redoubt.ligo-wa.caltech.edu/svn/gds/trunk --username=<first.last>
- cd trunk
- svn export . /ligo/cds/project/gds-2.14.2
- cd /ligo/cds/project/gds-2.14.2
- ./bootstrap
- export GDSBUILD=online
./configure --prefix=/opt/apps/linux64/gds-2.15.0 --enable-only-dtt --with-epics=/opt/apps/linux64/epics
- make
- make install
- cd /opt/apps/linux64/
- ln -s gds-2.15.0 gds
TDS installation
Installed binary package from /daq/software/binary/apps/... in aLIGO DAQ software page.
Not installed software
Software shown in aLIGO CDS page, we did not install framecpp, FrameL(libframe), MATLAB tools(mDV, awgstream, ligoDV), and Useful tools(ligotools, sunutils).
How to put icon on panel bar
Make a Custom Application Launcher by right click on panel bar and select Add to Panel. In "Command" put like
tcsh -c 'cd /opt/rtcds/tst/x1/medm/ && /opt/apps/linux64/epics/extensions/bin/linux-x86_64/medm -displayFont fixed -x'