Difference between revisions of "VO specific software on the Grid"
From GridPP Wiki
								
												
				 (→Accessing software distributed via CVMFS)  | 
				|||
| Line 2: | Line 2: | ||
== Accessing software distributed via CVMFS ==  | == Accessing software distributed via CVMFS ==  | ||
For most VOs the software is now being distributed via CVMFS. The only detail a user (client) has to know is how the repository(-ries) are mapped on Worker Nodes.  | For most VOs the software is now being distributed via CVMFS. The only detail a user (client) has to know is how the repository(-ries) are mapped on Worker Nodes.  | ||
| − | In this article we will use the gridpp VO repository, which is mapped to <code>/cvmfs/gridpp.egi.eu/</code>  | + | In this article we will use the gridpp VO repository, which is mapped to <code>/cvmfs/gridpp.egi.eu/</code> . A VO software administrator uploaded a following example  | 
| + | code into a directory called <code>testing/</code> :  | ||
| + |  <nowiki>  | ||
| + | |||
| + | #!/usr/bin/env python  | ||
| + | import sys  | ||
| + | |||
| + | print "----------------------"  | ||
| + | print "Hello, I'm a snake !  /\/\/o"  | ||
| + | print "----------------------"  | ||
| + | |||
| + | print " More info:\n"  | ||
| + | |||
| + | print (sys.version)  | ||
| + | |||
| + | #  | ||
| + |  </nowiki>  | ||
Revision as of 12:23, 19 September 2017
DRAFT
Accessing software distributed via CVMFS
For most VOs the software is now being distributed via CVMFS. The only detail a user (client) has to know is how the repository(-ries) are mapped on Worker Nodes.
In this article we will use the gridpp VO repository, which is mapped to /cvmfs/gridpp.egi.eu/ . A VO software administrator uploaded a following example
code into a directory called testing/ :
#!/usr/bin/env python import sys print "----------------------" print "Hello, I'm a snake ! /\/\/o" print "----------------------" print " More info:\n" print (sys.version) #