User Tools

Site Tools


other:newppl:starting

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
other:newppl:starting [2024/02/05 16:09]
jypeter [Determining the space used by directories]
other:newppl:starting [2024/04/24 12:37] (current)
jypeter [Using module to access optional programs] Improved
Line 220: Line 220:
 $ hostname $ hostname
 obelix5</​code>​ obelix5</​code>​
 +    * In a python script, you can use the following to get some information
 +      * <​code>>>>​ import os
 +>>>​ os.getlogin(),​ os.getenv('​HOST'​)
 +('​mylogin',​ '​obelix5'​)</​code>​
  
   * **[[https://​intranet.lsce.ipsl.fr/​informatique/​en/​calcul/​batch.php|The LSCE cluster]]** (aka the //batch system//)\\ Use this cluster for **//heavy duty// programs**, rather than killing the multi-users interactive servers   * **[[https://​intranet.lsce.ipsl.fr/​informatique/​en/​calcul/​batch.php|The LSCE cluster]]** (aka the //batch system//)\\ Use this cluster for **//heavy duty// programs**, rather than killing the multi-users interactive servers
Line 272: Line 276:
 </​code>​ </​code>​
     ​     ​
-The top lines give you some summary information about the system, but you should monitor the memory usage (''​VIRT''​ and ''​RES''​),​ ''​CPU''​ and ''​TIME''​ columns. By default, ''​top''​ will will put the processes using the more CPU at the top (as shown above). You can see above that the ''​emacs''​ text editor has clearly crashed, because it should not use 100% CPU for such a long time+The top lines give you some summary information about the system, but you should monitor the memory usage (''​VIRT''​ and ''​RES''​),​ ''​CPU''​ and ''​TIME+''​ columns. By default, ''​top''​ will will put the processes using the more CPU at the top (as shown above). You can see above that the ''​emacs''​ text editor has clearly crashed, because it should not use 100% CPU for such a long time 
 + 
 +  * The ''​TIME+''​ information is in //minutes// (e.g. ''​5432:​01''​ means //5432 minutes and 1 second//, ''​25:​15.20''​ means //25 minutes, 15 seconds and 20% of 1 second//) 
 + 
 +  * Memory usage: 
 +    * ''​%MEM''​ (Kb): percentage of the total available **physical memory** used by a process. This is based on ''​RES'',​ the **non-swapped physical memory** used by a process 
 +    * ''​VIRT''​ (Kb): total  amount ​ of **virtual memory** (i.e. memory temporarily swapped/​saved to disk) used by a process. ​ It includes all code, data and shared libraries plus pages that have been swapped out and pages that have been mapped but not used 
 +    * The ''​free''​ command can display the memory usage of a server at a given time. ''​available''​ is an estimation of how much memory is available for starting new applications,​ without swapping 
 +      * <​code>​ % free -ht 
 +              total        used        free      shared ​ buff/​cache ​  ​available 
 +Mem:            62G        1.5G         ​56G ​        ​11M ​       5.0G         60G 
 +Swap:           ​62G ​       1.7G         60G 
 +Total: ​        ​125G ​       3.3G        116G</​code>​
  
 If you type ''​M'',​ the processes will be sorted my memory usage, as shown below If you type ''​M'',​ the processes will be sorted my memory usage, as shown below
Line 433: Line 449:
 ==== Using module to access optional programs ==== ==== Using module to access optional programs ====
  
-Main ''​module''​ options:+Most useful ​''​[[https://​modules.readthedocs.io/​|module]]''​ options:
   * ''​module list'':​ list the currently loaded modules   * ''​module list'':​ list the currently loaded modules
-  * ''​module avail'':​ list the available modules+  * ''​module avail [mod_name]'':​ list the available modules ​(or only the ones with a name starting with ''​mod_name''​)
   * ''​module load module_a ... module_n'':​ load modules (automatically including dependencies)   * ''​module load module_a ... module_n'':​ load modules (automatically including dependencies)
     * ''​module load module_a'':​ load default version of //​module_a//​     * ''​module load module_a'':​ load default version of //​module_a//​
Line 448: Line 464:
 No Modulefiles Currently Loaded. No Modulefiles Currently Loaded.
  
- > module avail + > module avail ncview 
-[...] +ncview/​2.1.7
-batch_env ​         grib_api/​1.14.0 ​   netcdf/​4 ​          ​python/​3.6 +
-[...] +
-glost/​0.3.1 ​       ​ncview/2.1.7       ​python/​2.7+
  
  > module load ncview netcdf/4  > module load ncview netcdf/4
Line 485: Line 498:
  
 There are **lots of text editors available** on Linux computers/​servers (''​emacs'',​ ''​nano'',​ ''​vi'',​ ''​vim'',​ ''​gvim'',​ ''​gedit'',​ ...). You can use them: There are **lots of text editors available** on Linux computers/​servers (''​emacs'',​ ''​nano'',​ ''​vi'',​ ''​vim'',​ ''​gvim'',​ ''​gedit'',​ ...). You can use them:
 +
   * In basic **text terminals**   * In basic **text terminals**
-    * useful ​if you are in a hurry, and/or working on a remote server with a bad network connection or have no local [[other:​x_conf|X server]] running +    * **If you only need to read a text file**, use a //pager// like [[http://​www.greenwoodsoftware.com/​less|less]] (or ''​more''​):​ ''​less my_text_file.txt''​ 
-    * you should know the basic commands and shortcuts! ​Some text editors (e.g ''​nano''​) fortunately display some help at the bottom of the screen+      * ''​SPACE''​ goes down one page 
 +      * ''​b''​ (//back//) goes back one page 
 +      * ''/​STRING''​ looks for ''​STRING''​ in the text (then ''​n''​ext,​ ''​p''​revious,​ ''​q''​uit) 
 +      * ''​q''​ exits  
 +    * **[[#​gnu_nano|nano]] is probably the easiest editor in text mode** to use! 
 +    * Useful ​if you are in a hurry, and/or working on a remote server with a bad network connection or have no local [[other:​x_conf|X server]] running 
 +    * You should know the basic commands and shortcuts!
  
   * With a **full Graphical User Interface** (aka //GUI//) allowing you to use the mouse+menus/​buttons/​etc...   * With a **full Graphical User Interface** (aka //GUI//) allowing you to use the mouse+menus/​buttons/​etc...
Line 496: Line 516:
 <note important>​Read the **dedicated [[other:​emacs_doc|Using emacs]] page**, and become a power user!</​note>​ <note important>​Read the **dedicated [[other:​emacs_doc|Using emacs]] page**, and become a power user!</​note>​
  
 +=== Gnu nano ===
 +
 +<note tip>Gnu [[https://​www.nano-editor.org/​|nano]] is probably the easiest text editor in text mode to use!</​note>​
  
 +You can easily view/edit a file by just typing ''​nano my_text_file.txt''​ in a terminal, and looking at the instructions displayed at the bottom of the screen (e.g. ''​^X Exit''​ means that you can exit the editor by typing ''​CTRL-X''​)
  
 === vi (vim, gvim) === === vi (vim, gvim) ===
other/newppl/starting.1707149376.txt.gz · Last modified: 2024/02/05 16:09 by jypeter