source, setenv, or module commandMost programs are installed in /usr/local/. Please check our Software List to see if you are licensed to use the specific software. Software on the Linux compute servers are installed as requested. If you require a certain program or a particular version, please have your advisor or faculty member contact us to get it installed.
matlab for the default install.module avail to see what versions we have available. Use the command module load matlab-xxxxx with the proper version. Then run normally.fluent to run latest version available./usr/local and pick from one of the versions labeled ANSYS-XX.X to pick your version of Ansys./usr/local/ANSYS-XX.X/ansys_inc/vXXX/fluent/bin/fluent/usr/local/ANSYS-XX.X to pick your version of Ansys./usr/local/ANSYS-XX.X/ansys_inc/vXXX/ProductName/bin/ExecutableName for most products./usr/local/bin/ANSYS-16.1/ansys_inc/v161/CFX/bin/cfx5cp -rT /usr/local/Cadence-2018/setup ~/cadencecd ~/cadencemodule load virtuosovirtuoso/usr/local/cadence-20XX/ProductName/bin bash to switch to bash shellsource /usr/local/FDS/FDS6/bashrc_fdsfds to run FDSsource /usr/local/synopsys/synopsys.cshrc from a terminalhspice/usr/local/synopsis/ for the latest version available.source /usr/local/gromacs/bin/GMXRCgmx -h or more help is available at Gromacs.orgmodule load mpi/openmpi-x86_64mpirun, mpicc, mpifort, and others. Navigate to /usr/lib64/openmpi/bin for all available.module load mpi/mpich-x86_64mpirun, mpicc, mpif90, and others. Navigate to /usr/lib64/mpich/bin for all available.lmp_g++ < input_filelmp_g++ -hmodule load openmpi-x86_64lmp_g++ < input_filelmp_g++ -h for command line optionsmodule load mpich-x86_64lmp_g++ < input_filelmp_g++ -h for command line optionsmodule load openmpi-x86_64nwchem_openmpi input_filemodule load mpich-x86_64nwchem_mpich input_file| Command | Description | Example |
|---|---|---|
cd path | Change directories. cd .. goes up a level. cd ~ goes to your home directory. | cd /usr/local/ |
ls -al optional_path | Show items and their permissions in the current folder or location specified. | ls -al /usr/local/ |
pwd | Show where you are in the file hierarchy. | pwd |
setenv variable value | Set an environment variable. Use a colon for multiple values. | setenv PATH /usr/local/:${PATH} |
source filename | Used to set environment variables and execute commands in the current shell. | source my_environment_variables.csh |
If you want more information on how to use a certain UNIX command, type man command at any UNIX prompt. The command “man” is the help page tool for UNIX and command should be replaced with the UNIX command for which you need more information. For example: man cd or for a general overview of a certain command you can use explain shell.