Changes between Version 15 and Version 16 of Admin/StandardOperatingProcedures/InstallSoftwareFromSource


Ignore:
Timestamp:
May 16, 2019, 1:14:39 PM (6 years ago)
Author:
Mikael Brandström Durling
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Admin/StandardOperatingProcedures/InstallSoftwareFromSource

    v15 v16  
    1 == Software installations (Currently being rewritten) ==
     1== Software installations ==
    22
    33In general when installing software, we prefer to install software as modules. This facilitates for users to revert to older software versions, as well as to keep track of what version was used for a specific project. However, most general libraries (eg. in many cases packages called libsomething in Debian) should be installed as Debian packages. If unsure, please discuss with Mikael and/or Les. Debian packages can only be installed by system administrators, while software packages installed and made available as software modules can also be installed by users who have been granted software install permissions (and adhere to the software install guidelines.)
     
    55Which software should be installed and made available to all users? In general, software that will have a use by more than a single project, and that can be installed in a manner that can be shared by many users can be installed. (This excludes for example excludes software that needs write permission to a central database och file set)
    66
    7 == Software install procedure (all parts not yet available) ==
     7== Software install procedure ==
    88
    99Software install is a two step procedure. First you install the software into a given directory that is created under /opt/sw and made available to you. Once the module file is written, a system administrator can make the software available for all users. This two step procedure is implemented for security and quality reasons. Software under /opt/sw is installed in directories adhering to the naming standard /opt/sw/SOFTWARE/VERSION. Since we are now using Lmod, module files can be written either in the legacy TCL/C syntax, or in Lua. Please visit Lmod homepage for more information [[https://github.com/TACC/Lmod/]]
    1010
    11 Detailed procedure (not involving software specifics on how to set installation location).
     11Detailed procedure (not involving software specifics on how to set installation location). See below for instructions on how to install python/perl modules.
    1212
    1313  1. Create a ticket regarding the software install, unless the user has already done so.
     
    2020  1. Write a module file (copy and edit previous version or so) to reflect the new software version you have installed. The module file should be created in /opt/modulefiles_staging/Core for standard software and named SOFTWARE/VERSION (or SOFTWARE/VERSION.lua if you prefer to write a Lua module). See below for special routines for installing Python packages and Perl packages.
    2121  1. Add the module file to subversion with `svn add` (you might have to add the directory too, if you had to create it) and then commit the module file with svn commit.
    22   1. Update the wiki page for the software referenced from the software index found on [[Software]] (or create a new one). This page should, as a bare minimum, contain any local modifications or specifics, and a link to a manual for the software.
     22  1. Update the wiki page for the software referenced from the software index found on [[Software]] (or create a new one). This page should, as a bare minimum, contain any local modifications or specifics, and a link to a manual for the software. If you need to create a new page, please use the software page template.
    2323  1. Document any deviations from the documented install procedure of the software in the ticket.
    2424  1. Ask a system administrator to publish the newly installed software by providing SOFTWARE and VERSION as per above, as well as ticket ID.
     
    3030  1. Publish software by running `grid-pubsw SOFTWARE VERSION TICKETID`. The script will ask for your password in order to commit some changes to the svn repository, as well as for setting permissions on software folders. This step will also close the software install ticket.
    3131
     32
     33== Installation of Python and Perl packages as modules ==
     34
     35The basic Python/Perl interpreter should be installed in the same manner as any other package. Any python/perl package should be installed as modules which then set a `depends_on()` for the specific version of the interpreter it was installed with. The dependent version of the interpreter should be documented in the wiki page.
     36