Changes between Version 3 and Version 4 of FeddDownload
- Timestamp:
- Dec 12, 2008 4:34:13 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FeddDownload
v3 v4 37 37 The easiest way to get a copy of fedd installed on your machine is to 38 38 download the python distutils tar file and install it. The current 39 version is fedd-1.0.tar.gz.39 version is [attachment:fedd-1.0.tar.gz fedd-1.0.tar.gz]. 40 40 41 41 You will need to have the following python packages installed as well. … … 63 63 }}} 64 64 65 Your install will include the python package federation,the following65 Your install will include the python package called `federation` and the following 66 66 scripts: 67 67 68 * `/usr/local/bin/confirm_sshkey.py`69 *used in certain static project installs, see [FeddConfig configuring]70 * `/usr/local/bin/exp_access_db.py`71 *application to simplify creating experiment creation databases72 * `/usr/local/bin/fedd.py`73 *fedd itself74 * `/usr/local/bin/fedd_client.py`75 *command line tool for accessing fedd services76 * `/usr/local/bin/fedid.py`77 *command line tool for getting fedids from X509 certificates78 * `/usr/local/bin/user_to_project.py`79 *used in dynamic project installs, see [FeddConfig configuring]68 `/usr/local/bin/confirm_sshkey.py`:: 69 used in certain static project installs, see [FeddConfig configuring] 70 `/usr/local/bin/exp_access_db.py`:: 71 application to simplify creating experiment creation databases 72 `/usr/local/bin/fedd.py`:: 73 fedd itself 74 `/usr/local/bin/fedd_client.py`:: 75 command line tool for accessing fedd services 76 `/usr/local/bin/fedid.py`:: 77 command line tool for getting fedids from X509 certificates 78 `/usr/local/bin/user_to_project.py`:: 79 used in dynamic project installs, see [FeddConfig configuring] 80 80 81 Finally a set of sample configuration files will be installed in `/usr/local/share/fedd/` 81 These scripts are documented in more detail on the [FeddCommands commands page]. 82 82 83 83 == Additional scripts == … … 89 89 90 90 The patches are here: 91 addpubkey92 grantnodetype91 * [attachment:addpubkey.patch addpubkey] 92 * [attachment:grantnodetype.patch grantnodetype] 93 93 94 94 To avoid inadvertently interfering with testbed operation, we suggest … … 135 135 from the subversion repository on this site and install it. The 136 136 same packages must be installed as for the tar file version. The 137 commands to access the subversion repository and installare:137 commands to check out a local copy from the subversion repository and install from it are: 138 138 139 139 {{{ 140 $ svn checkout http://fedd.isi.deterlab.net :8088/svn/fedd/trunk some_dir140 $ svn checkout http://fedd.isi.deterlab.net/svn/fedd/trunk some_dir 141 141 $ cd some_dir 142 142 $ make dist … … 146 146 And from there, install from the tar file in dist, as above. 147 147 148 You can also browse the source [source:/fedd/trunk on the web].