Vérifier l'installation de bzip2 avec bzip2 --version
Dans l'étape précédente, nous avons vérifié la version de gzip
. Maintenant, faisons de même pour bzip2
, un autre utilitaire de compression courant.
Comme gzip
, bzip2
prend également en charge l'option --version
pour afficher ses informations de version.
Dans votre terminal, tapez la commande suivante et appuyez sur Entrée :
bzip2 --version
Vous devriez voir une sortie similaire à celle-ci :
bzip2, a block-sorting file compressor. Version 1.0.8, 13-July-2019.
Copyright (C) 1996-2019 Julian Seward <[email protected]>. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
This software is provided `as is'', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Julian Seward, Cambridge, UK.
[email protected]
Encore une fois, le numéro de version spécifique peut être différent, mais cette sortie confirme que bzip2
est installé et disponible pour utilisation.
Vérifier la version d'une commande est une compétence fondamentale sous Linux. Cela vous aide à confirmer que le programme est installé et à comprendre quelle version vous utilisez, ce qui peut être important pour la compatibilité ou la résolution de problèmes.
Cliquez sur Continuer pour passer à l'étape suivante.