Create and extract a .tar.gz archive using command line
Para crear un archivo tar.gz desde una carpeta determinada, puede usar el siguiente comando
tar -zcvf tar-archive-nombre.tar.gz fuente-carpeta-nombre
Esto comprimirá el contenido de source-folder-name en un archivo tar.gz llamado tar-archive-nombre.tar.gz
Para extraer un archivo comprimido tar.gz puede usar el siguiente comando
tar -zxvf tar-archive-nombre.tar.gz
Esto extraerá el archivo a la carpeta tar-archive-nombre.
Para conservar los permisos
tar -pcvzf tar-archive-nombre.tar.gz origen-carpeta-nombre
Cambie el indicador "c" a una "x" para extraer (descomprimir).
tar -pxvzf tar-archive-nombre.tar.gz
English version.
To create a tar.gz archive from a given folder you can use the following command
This will compress the contents of source-folder-name to a tar.gz archive named tar-archive-name.tar.gz
To extract a tar.gz compressed archive you can use the following command
This will extract the archive to the folder tar-archive-name.
To Preserve permissions
Switch the ‘c’ flag to an ‘x’ to extract (uncompress).
tar -zcvf tar-archive-nombre.tar.gz fuente-carpeta-nombre
Esto comprimirá el contenido de source-folder-name en un archivo tar.gz llamado tar-archive-nombre.tar.gz
Para extraer un archivo comprimido tar.gz puede usar el siguiente comando
tar -zxvf tar-archive-nombre.tar.gz
Esto extraerá el archivo a la carpeta tar-archive-nombre.
Para conservar los permisos
tar -pcvzf tar-archive-nombre.tar.gz origen-carpeta-nombre
Cambie el indicador "c" a una "x" para extraer (descomprimir).
tar -pxvzf tar-archive-nombre.tar.gz
English version.
To create a tar.gz archive from a given folder you can use the following command
This will compress the contents of source-folder-name to a tar.gz archive named tar-archive-name.tar.gz
To extract a tar.gz compressed archive you can use the following command
This will extract the archive to the folder tar-archive-name.
To Preserve permissions
Switch the ‘c’ flag to an ‘x’ to extract (uncompress).
Comentarios
Publicar un comentario