Jump to content

Running Software on Firebird: Difference between revisions

From Swarthmore Knowledge Base
Created page with "== Software Catalog == * Software * Student Software * Assistive Technology Software * Mac Software {| class="wikitable sortable" style="width:100%;" ! Software !! Description !! Access !! Platform !! Accessibility {{#ask: Category:Software |?Description=Description |?Access=Access |?Platform=Platform |?Supports accessibility=Supports accessibility |format=template |template=SoftwareListingRow |limit=500 }} |}"
 
m Aruethe2 moved page Firebird Software to Running Software on Firebird without leaving a redirect
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Software Catalog ==
Firebird offers several software packages, both open-source and licensed. Access to many packages is controlled through '''modules''': in order to use a particular software package, users must first load the appropriate module, which updates the user’s PATH and other environment variables to ensure the software works as expected.
* [[Software]]
 
* [[Student Software]]
== List Available Modules ==
* [[Assistive Technology Software]]
 
* [[Mac Software]]
To see a list of available software modules:
{| class="wikitable sortable" style="width:100%;"
 
! Software !! Description !! Access !! Platform !! Accessibility
<syntaxhighlight lang="text">
{{#ask:
module avail
[[Category:Software]]
</syntaxhighlight>
|?Description=Description
 
|?Access=Access
== Load a Software Module ==
|?Platform=Platform
 
|?Supports accessibility=Supports accessibility
To load a particular module:
|format=template
 
|template=SoftwareListingRow
<syntaxhighlight lang="text">
|limit=500
module load mathematica/14
}}
</syntaxhighlight>
|}
 
Note that because Firebird is a shared system, some software may be licensed only for one institution. For example, Stata is licensed differently for Swarthmore:
 
<syntaxhighlight lang="text">
module avail stata
 
------------------------------------------------------------------------------------- /opt/modulefiles -------------------------------------------------------------------------------------
  stata/18-laf    stata/18-swat (D)
</syntaxhighlight>
 
Make sure to load the module for your institution.
 
== View Loaded Modules ==
 
To see a list of currently loaded modules in your environment:
 
<syntaxhighlight lang="text">
module list
</syntaxhighlight>
 
== Unload or Purge Modules ==
 
To unload a specific module:
 
<syntaxhighlight lang="text">
module unload mathematica/14
</syntaxhighlight>
 
To unload all loaded modules:
 
<syntaxhighlight lang="text">
module purge
</syntaxhighlight>
 
{{Category Navbox|Firebird Software}}
 
[[Category:Firebird Software]]

Latest revision as of 19:33, 9 July 2026

Firebird offers several software packages, both open-source and licensed. Access to many packages is controlled through modules: in order to use a particular software package, users must first load the appropriate module, which updates the user’s PATH and other environment variables to ensure the software works as expected.

List Available Modules

To see a list of available software modules:

module avail

Load a Software Module

To load a particular module:

module load mathematica/14

Note that because Firebird is a shared system, some software may be licensed only for one institution. For example, Stata is licensed differently for Swarthmore:

module avail stata

------------------------------------------------------------------------------------- /opt/modulefiles -------------------------------------------------------------------------------------
   stata/18-laf    stata/18-swat (D)

Make sure to load the module for your institution.

View Loaded Modules

To see a list of currently loaded modules in your environment:

module list

Unload or Purge Modules

To unload a specific module:

module unload mathematica/14

To unload all loaded modules:

module purge