38,904
edits
No edit summary |
(Updating to match new version of source page) |
||
Line 67: | Line 67: | ||
La commande <tt>lfs hsm_state</tt> permet de savoir si un fichier est sur bande ou encore sur disque. (l'abréviation hsm signifie ''hierarchical storage manager''). | La commande <tt>lfs hsm_state</tt> permet de savoir si un fichier est sur bande ou encore sur disque. (l'abréviation hsm signifie ''hierarchical storage manager''). | ||
<div class="mw-translate-fuzzy"> | |||
<source lang="bash"> | <source lang="bash"> | ||
# Here, <FILE> has not yet been copied to tape. | # Here, <FILE> has not yet been copied to tape. | ||
$ lfs hsm_state <FILE> | $ lfs hsm_state <FILE> | ||
<FILE>: (0x00000000) | <FILE>: (0x00000000) | ||
</div> | |||
# Here, <FILE> is in progress of being copied to tape. | |||
$ lfs hsm_state <FILE> | |||
<FILE>: [...]: exists, [...] | |||
# Here, <FILE> is both on the disk and on tape. | # Here, <FILE> is both on the disk and on tape. | ||
Line 78: | Line 84: | ||
# Here, <FILE> is on tape but no longer on disk. There will be a lag when opening it. | # Here, <FILE> is on tape but no longer on disk. There will be a lag when opening it. | ||
$ lfs hsm_state <FILE> | $ lfs hsm_state <FILE> | ||
<FILE>: [...]: released archived, [...] | <FILE>: [...]: released exists archived, [...] | ||
</source> | </source> | ||