L-Store Usage Instructions

From ReddNet
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
  1. Setting Up Lstore
  2. Uploading/Downloading Files
  3. Other Applications

Setting Up Lstore

 $ java -version
 java version "1.6.0_01"
 Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
 Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
  • Create a directory for lstore files:
 $ mkdir ~/lstore
  • If a lstore_env file exists, edit it to appear this way (with appreopriate shell syntax), or create it:
 $ emacs setup_env
 alias lstcp "java -cp ~/lstore/lstcp.jar org.lstore.client.AutomatedLstcp --login-id lstore_root --password changeme"
  • This alias automatically enters the username and password so that lstcp commands can be used in other programs.
  • Source the lstore_env file, and the system is prepared to run commands:
 $ source lstore_env
  • To set this permanently, add it to your login file (shown here for tcsh):
 $ emacs (or another editor) ~/.cshrc
 add:
 #source the setup file for lstore applications
 source ~/lstore/lstore_env

Proceed to Uploading/Downloading Files