| 7 | Login to Cypress using X window tunneling in order to run the graphical installer: |
| 8 | https://wiki.hpc.tulane.edu/trac/wiki/cypress/SshUsage#TunnelingXWindowsSessionviaSSH |
| 9 | |
| 10 | Find and run the "setup.sh" script in the SAS folder, and follow the instructions. Note the following during installation: |
| 11 | |
| 12 | - Specify a location in your project folder to install SAS (SAS Home), for example /lustre/project/mygroup/joeuser/sas. |
| 13 | |
| 14 | - When prompted for SAS installation data file, browse to the "sid_files" folder and select the version for Linux, for example "SAS94_123456_99999999_LINUX_X86-64.txt". If the data file is expired, you will need to replace it with a newer unexpired version provided to you when you purchased or renewed the software. |
| 15 | |
| 16 | - Do not configure any SAS/ACCESS Interfaces (deselect these options if asked). |
| 17 | |
| 18 | - You do not need to run the "setuid.sh" script. |
| 19 | |
| 20 | Now you can run the program using the "sas" startup script, for example /lustre/project/mygroup/joeuser/sas/SASFoundation/9.4/sas. You may add the appropriate folder to your path, e.g.: |
| 21 | |
| 22 | {{{ |
| 23 | export PATH=/lustre/project/mygroup/joeuser/sas/SASFoundation/9.4:$PATH |
| 24 | }}} |
| 25 | |
| 26 | so you can simply type "sas" to start the program. |
| 27 | |
| 28 | '''Note: You should not run the program directly on the Cypress login nodes, but instead run SAS by [https://wiki.hpc.tulane.edu/trac/wiki/cypress/using#SubmittingJobsonCypress submitting either an interactive or batch job].''' |
| 29 | |
| 30 | You can start SAS in interactive line mode: |
| 31 | |
| 32 | {{{ |
| 33 | sas -nodms |
| 34 | }}} |
| 35 | |
| 36 | or, if you have a SAS program, e.g. "example.sas", you can run it with: |
| 37 | |
| 38 | {{{ |
| 39 | sas example.sas |
| 40 | }}} |