Difference between revisions of "Installing Software to a UNIX Server"

From Bridges Lab Protocols
Jump to: navigation, search
(wrote intial page)
 
m (added categories)
 
(One intermediate revision by the same user not shown)
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:
Line 22: Line 22:
 
<li>Copy the relevant binaries into $HOME/bin.</li>
 
<li>Copy the relevant binaries into $HOME/bin.</li>
 
</ol>
 
</ol>
 +
 +
[[Category: Software]]
 +
[[Category: Bioinformatics]]
 +
[[Category: Cluster]]
 +
[[Category: Server]]

Latest revision as of 11:31, 21 July 2012

  1. Install Putty if using windows or openSSH if using OSX or Linux (usually already installed)
  2. Log into the server with your ssh client, username and password
  3. 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
  1. Make a source code directory to download software into:
mkdir $HOME/SRC
cd $HOME/SRC
  1. Download and extract software into the source code directory using wget to download and tar to extract
  2. Install software with make if a c-program, check the installation instructions for the program.
  3. Copy the relevant binaries into $HOME/bin.