EnvironmentalVariables: Difference between revisions

From UMIACS
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:
# Click Environment variables.
# Click Environment variables.
# Under User Variables for <username> choose the PATH Variable.
# Under User Variables for <username> choose the PATH Variable.
## If there is none Click New and put PATH for the variable Name.
## If there is none click New and put PATH for the variable Name.
# Click Edit and append the location you are trying to add. Different paths are separated by semicolons.
# Click Edit and append the location you are trying to add. Different paths are separated by semicolons.



Revision as of 20:23, 24 April 2013

In UNIX and Windows many of the commands run have variables that are parsed from a users environment.

PATH(Unix)

The most common variable is the PATH variable, this will add additional paths to search for programs to be run from the command line. These can be set in many ways but we will cover the most popular tcsh and bash. You can see your PATH variable by using the built in echo command in the shell. When printing out environment variables you will need to prefix the variable with the $ sign.

# echo $PATH
/usr/kerberos/bin:/opt/condor-7.0.5/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin

In almost all cases you will want to append to either the beginning or end of your PATH variable and not replace it fully as this will most likely decrease the functionality of your shell. For example if you wanted to add the path /opt/UMtorque/bin to the end of your PATH then you could do the following,

tcsh/csh
setenv PATH ${PATH}:/opt/UMtorque/bin
bash/sh
export PATH=${PATH}:/opt/UMtorque/bin

These can be either typed into your shell directly or added to your shells initialization files so every time you spawn a shell it will get this new PATH.

PATH(Windows)

To modify the Windows PATH Environmental Variable do the following:

  1. Right-click Computer, and then click Properties.
  2. Click on Advanced system settings.
  3. Select the Advanced Tab
  4. Click Environment variables.
  5. Under User Variables for <username> choose the PATH Variable.
    1. If there is none click New and put PATH for the variable Name.
  6. Click Edit and append the location you are trying to add. Different paths are separated by semicolons.


To verify that the PATH variable has been modified properly do the following:

  1. Open a new Command Prompt (Start -> Accessories -> Command Prompt).
  2. Type in PATH

The updated PATH should be printed.