| | 1 | If you have access to the ifaps1 machine at the ifa, you can 'steal' the ipp user's config files in order to use the IPP without compiling or worrying about keeping the IPP software up to date. The IPP build for the ipp user is updated and maintained by Heather Flewelling. |
| | 2 | |
| | 3 | == setting up IPP on your account == |
| | 4 | |
| | 5 | First you need to ssh to the ifaps1: |
| | 6 | |
| | 7 | {{{ |
| | 8 | ssh username@ifaps1 |
| | 9 | }}} |
| | 10 | Then copy .ptolemyrc and .ipprc from the user ipp: |
| | 11 | |
| | 12 | {{{ |
| | 13 | cp ~ipp/.ptolemyrc ~/ |
| | 14 | cp ~ipp/.ipprc to your ~/ |
| | 15 | }}} |
| | 16 | |
| | 17 | |
| | 18 | and then edit ~/.tcshrc and add the following: |
| | 19 | |
| | 20 | {{{ |
| | 21 | if (-e /home/ifaps1/ipp/psconfig//psconfig.csh) then |
| | 22 | alias psconfig "source /home/ifaps1/ipp/psconfig//psconfig.csh" |
| | 23 | psconfig default |
| | 24 | endif |
| | 25 | }}} |
| | 26 | That should be all that is necessary to run the IPP on ifaps1 (under your account). |
| | 27 | |