| | 1 | * set up ssh |
| | 2 | ssh-keygen -t rsa1 |
| | 3 | cat ~/.ssh/identity.pub >> ~/.ssh/authorized_keys |
| | 4 | ssh-keygen -t dsa |
| | 5 | cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys |
| | 6 | ssh-keygen -t rsa |
| | 7 | cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys |
| | 8 | |
| | 9 | * login to each of your machines to set up the known_hosts entry. |
| | 10 | |
| | 11 | * download the external libraries from the IPP web pages: |
| | 12 | |
| | 13 | wget -nH --cut-dirs=3 -L -r http://pan-starrs.ifa.hawaii.edu/project/IPP/software/ext/ |
| | 14 | wget -nH --cut-dirs=3 -L -r http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl/ |
| | 15 | |
| | 16 | * unpack the ipp tarball |
| | 17 | |
| | 18 | tar xvzf ipp-1.2.tgz |
| | 19 | |
| | 20 | * enter the ipp build directory |
| | 21 | |
| | 22 | cd ipp-1.2/psconfig |
| | 23 | |
| | 24 | * check for external C libraries |
| | 25 | |
| | 26 | pschecklibs |
| | 27 | |
| | 28 | * install using psconfigure / psmake ''we need a tool to automatically build the needed libraries'' |
| | 29 | |
| | 30 | * cfitsio and fftw3 need to have --enable-static set for configure |
| | 31 | * cfitsio needs to be called with 'make shared' before 'make install' |