Difference between revisions of "Motif Guide"
m (Saq10002 moved page Motif to Motif Guide: Conform to the titles of the "guide" pages) |
|
(No difference)
|
Revision as of 10:48, 9 September 2015
Motif is Graphical User Interface (GUI) widget toolkit for Unix and Unix-like systems.
Contents
Check Module Availability
To see which Motif modules are available to the system, use the following command:
$ module avail motif
You should see all available modules in motif/<version>
format:
----------------------- /apps2/Modules/3.2.6/modulefiles ----------------------- motif/2.3.4
If the module list is empty please contact your administrators.
Loading a Motif Module
You can load the default Motif module as follows:
$ module load motif
If your program needs a specific versin e.g., motif/2.3.4
, do the following:
$ module load motif/2.3.4
After you load a module you can use it until you log out; you will need to load it again the next time you log in and run your program.
Automatically Loading a Motif Module
If you frequently use a particular module (which is usual) you can do the following:
$ module initadd motif
Or, if you need a specific version,
$ module initadd motif/2.3.4
Note that this auto-loading of the module will start from your next login session. Therefore if you need the module at the present session you will need to load the module using the module load
command.
Unloading a Motif Module
You can unload an already-loaded module as follows:
$ module unload motif
Or, to unload a specific version,
$ module unload motif/2.3.4