Difference between revisions of "Installing Software to a UNIX Server"
From Bridges Lab Protocols
Davebridges (Talk | contribs) (wrote intial page) |
Davebridges (Talk | contribs) m (corrected a link) |
||
Line 1: | Line 1: | ||
− | # Install [ http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty ] if using windows or openSSH if using OSX or Linux (usually already installed) | + | # Install [http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty] if using windows or openSSH if using OSX or Linux (usually already installed) |
# Log into the server with your ssh client, username and password | # Log into the server with your ssh client, username and password | ||
# Make your own binary directory in the HOME folder within the root directory and add it to your path: | # Make your own binary directory in the HOME folder within the root directory and add it to your path: |
Revision as of 11:30, 21 July 2012
- Install Putty if using windows or openSSH if using OSX or Linux (usually already installed)
- Log into the server with your ssh client, username and password
- Make your own binary directory in the HOME folder within the root directory and add it to your path:
mkdir $HOME/bin export PATH=$HOME/bin:$PATH
- Make a source code directory to download software into:
mkdir $HOME/SRC cd $HOME/SRC