Diskusage Explorer/fr: Difference between revisions
(Updating to match new version of source page) |
(Created page with "=== Interface ncurses === Listez d'abord tous les projets auxquels vous avez accès. <pre> ls ~/projects/ def-bourqueg def-lathrop def-poq-ab rrg-bourqueg-ad rrg-lath...") |
||
Line 13: | Line 13: | ||
</div> | </div> | ||
=== | === Interface ncurses === | ||
Listez d'abord tous les projets auxquels vous avez accès. | |||
<pre> | <pre> | ||
ls ~/projects/ | ls ~/projects/ | ||
def-bourqueg def-lathrop def-poq-ab rrg-bourqueg-ad rrg-lathrop | def-bourqueg def-lathrop def-poq-ab rrg-bourqueg-ad rrg-lathrop | ||
</pre> | </pre> | ||
Le projet <tt>def-poq-ab</tt> servira à notre exemple. | |||
<pre> | <pre> | ||
GROUP=def-poq-ab | GROUP=def-poq-ab | ||
duc ui -d /project/.duc_databases/${GROUP}.sqlite /project/${GROUP} | duc ui -d /project/.duc_databases/${GROUP}.sqlite /project/${GROUP} | ||
</pre> | </pre> | ||
Cette commande charge un navigateur qui montre les ressources consommées par tous les fichiers dans l'arborescence d'un répertoire. | |||
[[File:Ncurse duc.png|thumb|using|450px|frame|left| Navigating | [[File:Ncurse duc.png|thumb|using|450px|frame|left| Navigating you project space with duc ncurse tool]] | ||
<br clear=all> <!-- This is to prevent the next section from filling to the right of the image. --> | <br clear=all> <!-- This is to prevent the next section from filling to the right of the image. --> | ||
Revision as of 20:03, 20 April 2021
Contenu des répertoires
Attention : Pour l'instant, cette fonction est seulement disponible sur Béluga.
Il est possible d'obtenir le détail de l'utilisation de l'espace dans vos répertoires /home, /scratch et /project. Cette information est mise à jour quotidiennement et est triée selon un format SQLite pour un accès rapide.
Dans notre exemple, nous verrons la consommation de l'espace disque du répertoire $GROUP
dans /project.
Interface ncurses
Listez d'abord tous les projets auxquels vous avez accès.
ls ~/projects/ def-bourqueg def-lathrop def-poq-ab rrg-bourqueg-ad rrg-lathrop
Le projet def-poq-ab servira à notre exemple.
GROUP=def-poq-ab duc ui -d /project/.duc_databases/${GROUP}.sqlite /project/${GROUP}
Cette commande charge un navigateur qui montre les ressources consommées par tous les fichiers dans l'arborescence d'un répertoire.
Type c
to toggle between consumed disk space and the number of files, q
or <esc>
to quit and h
for help.
If you are only interested in a /project/${GROUP}
subfolder and do not want to navigate the whole tree in the ncurse user interface,
duc ui -d /project/.duc_databases/${GROUP}.sqlite /project/${GROUP}/some/subfolder/
A complete manual page is available with the man duc
command.
Graphical User Interface
Note that when the login node is especially busy or if you have an especially large amount of files in you project space, the graphical interface mode can be slow and choppy. For a better experience, you can read the section below to run diskusage_explorer
on your own machine.
Note that Compute Canada recommends the use of the standard text-based ui
mode on our cluster login nodes but diskusage_explorer
does also include a nice graphical user interface (GUI).
First make sure that you are connected to the cluster using ssh's -Y
option
ssh -Y poq@beluga.calculcanada.ca
You can then make a window appear
GROUP=def-poq-ab duc gui -d /project/.duc_databases/${GROUP}.sqlite /project/${GROUP}
You can navigate the folders with the mouse and still type c
to toggle between the size of the files and the number of files.
Browse faster on your own machine
First install the diskusage_explorer software on your local machine and then, still on your local machine, download the SQLite file from your cluster and run duc
.
MYUSERNAME=poq GROUP=def-poq-ab rsync -v --progress ${MYUSERNAME}@beluga.calculcanada.ca:/project/.duc_databases/${GROUP}.sqlite . duc gui -d ./${GROUP}.sqlite /project/${GROUP}
This immediately leads to a smoother and more satisfying browsing experience.