public:user_software:user_software

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
public:user_software:user_software [2014-10-13 13:14] Nicolas Vilchezpublic:user_software:user_software [2017-03-08 15:27] (current) – external edit 127.0.0.1
Line 49: Line 49:
 You can obtain a working copy of the source code by running (Registration is needed to access the repository; January 2013) You can obtain a working copy of the source code by running (Registration is needed to access the repository; January 2013)
   * __using Subversion...__ <code bash>   * __using Subversion...__ <code bash>
-svn co https://svn.astron.nl/LOFAR/trunk lofarsoft +svn co http://usg.lofar.org/svn/code/trunk code</code>
-</code>+
   * __using Git...__ <code bash>   * __using Git...__ <code bash>
-git svn clone https://svn.astron.nl/LOFAR/trunk lofarsoft+git svn clone http://usg.lofar.org/svn/code/trunk code
 </code> Please be aware though that this will retrieve to complete backlog of all changes, so you might rather use <code bash> </code> Please be aware though that this will retrieve to complete backlog of all changes, so you might rather use <code bash>
-git svn clone -r <revision> http://usg.lofar.org/svn/code/trunk lofarsoft+git svn clone -r <revision> http://usg.lofar.org/svn/code/trunk code
 cd lofarsoft cd lofarsoft
 git svn rebase git svn rebase
 </code> where ''<revision>'' is either a specific revision number or the word ''HEAD'', which refers to the latest available version. </code> where ''<revision>'' is either a specific revision number or the word ''HEAD'', which refers to the latest available version.
  
-In case you not only want a working version of the source code, but also of the various documents, you do have two options to options of retrieval: +In case you not only want a working version of the source code, but also of the various documents:<code bash>
-  - Check out everything in a single go: <code bash> +
-svn co http://usg.lofar.org/svn usg +
-</code> +
-  - Check out a slightly cleaned-up version, omitting the ''trunk'' directories from your working version: <code bash>+
 mkdir usg mkdir usg
 cd usg cd usg
Line 69: Line 64:
 svn co http://usg.lofar.org/svn/documents/trunk docs svn co http://usg.lofar.org/svn/documents/trunk docs
 </code> </code>
 +
 +Note: Release versions of the Pulsar tools (as used on CEP2 and CEP3) can be obtained from the URL (for example):<code>
 +svn co http://usg.lofar.org/svn/code/branches/LOFAR-Pulp-Release-2_12 src
 +</code>
 +This will download the whole tree, including the pulsar tools.
  
 === Bootstrapping your working copy === === Bootstrapping your working copy ===
Line 93: Line 93:
 </code> If however you prefer to directly merge the upstream changes into your feature/development branch, you simply run <code bash>git svn rebase</code> In either case ensure there are no uncommitted changes -- either add and then commit them or stash them, before pulling in the upstream changes. </code> If however you prefer to directly merge the upstream changes into your feature/development branch, you simply run <code bash>git svn rebase</code> In either case ensure there are no uncommitted changes -- either add and then commit them or stash them, before pulling in the upstream changes.
  
-=== Write access to the repository === 
- 
-FIXME <html><font color=red><b>This information is outdated! It will be updated soon</b></font color></html> 
- 
-While (by design) the user software repository is world-wide readable, write access is being restricted to a list of registered users. The basic procedure for getting added to that list -- which basically relies on a combination of a ''username'' and MD5 encrypted ''password'' -- is described below: 
- 
-The information which needs to be provided by the user is a combination of ''username'' and ''password'', where the latter is being hashed using the MD5 algorithm. The encryption of the password can be done in a number of ways, depending on the tools available to the user requesting access: 
- 
-  * Using ''htpasswd'': <code bash>htpasswd -nbm <username> <password></code> 
-  * Using ''openssl'': <code bash>openssl passwd -apr1 <password></code> 
- 
-If none of the above mentioned tools are available, use can be made of an [[http://www.htaccesstools.com/htpasswd-generator|online htpasswd generator]]. 
- 
-Depending on the command line tool being used, the output will contain the full string to be entered into the password file or the encrypted password only (in which case the username needs to be prepended): 
-<file> 
-lbaehren:$apr1$ziNPu...$YYKeohAqIiIzfz4YA12345    ## htpasswd 
-$apr1$9H8IBSvy$yswI9jLosDkDx1a6.12345             ## openssl 
-</file> 
- 
-==== Supported platforms ==== 
- 
-First-level supported platforms: 
- 
-  - Ubuntu 10.04 LTS 
- 
-Second-level supported platforms: 
  
-  - Debian GNU/Linux 6.x 
  
 ==== Local installation ==== ==== Local installation ====
 {{public:user_software:installation_manual.pdf}} {{public:user_software:installation_manual.pdf}}
  • Last modified: 2017-03-08 15:27
  • by 127.0.0.1