Verificar bzip2 con bzip2 --version
En el paso anterior, verificamos la versión de gzip
. Ahora, hagamos lo mismo para bzip2
, otra utilidad de compresión común.
Al igual que gzip
, bzip2
también admite la opción --version
para mostrar su información de versión.
En tu terminal, escribe el siguiente comando y presiona Enter:
bzip2 --version
Deberías ver una salida similar a esta:
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]
Una vez más, el número de versión específico puede ser diferente, pero esta salida confirma que bzip2
está instalado y listo para usar.
Verificar la versión de un comando es una habilidad fundamental en Linux. Te ayuda a confirmar que un programa está instalado y a entender qué versión estás utilizando, lo cual puede ser importante para la compatibilidad o la resolución de problemas.
Haz clic en Continuar para continuar.