Files
freeCodeCamp/guide/russian/linux/how-to-extract-or-decompress-a-compressed-file-in-linux/index.md
2018-10-16 21:32:40 +05:30

704 B

title, localeTitle
title localeTitle
How to extract or decompress a compressed file in Linux Как извлечь или распаковать сжатый файл в Linux

Перед извлечением данных из сжатого файла необходимо сначала определить тип сжатого файла.

Как извлечь или распаковать сжатый файл в Linux

Шаг 1. Знать тип файла file File-Name

Шаг 2: Чтобы декомпрессировать tar-файл tar xvf File-Name -C /Directory-Location

We Use (-C) for specific directory if we do not use (-C) then it automatically extract to current directory.