Расширение файла TAR. Чем открыть файл.TAR

Nokia 26.05.2019
Nokia

Apple Archive Utility

Apple Archive Utility

Apple Archive Utility is the standard archive manager software created by Apple for Mac OS X computers and until Mac OS X 10.5, it’s called as BOMArchiveHelper. This is a tool that enables a Mac computer user to create compressed archives (ZIP) by clicking the button “Create archive of file” or “Compress” on Leonard in the contextual menu or Finder’s File. This program can be invoked manually or automatically. For manual invoking, a minimal GUI is shown which allows a user to change preferences and choose which files to uncompress or compress. Furthermore, it is a utility tool for archiving files that supports a variety of file formats, including ZIP or .zip , except password protected ZIP files, for both writing and reading, as well as bzip2 (.bz, .bz2), cbz (comic book zip), cpgz (cpio gziped), cpio (.cpio), gz (.gzip, .gz), tar (.tar), .gz .tar gziped), tbz, tbz2 .tar bziped), jar (Java Archive), compress (.Z), and uuencode.

PeaZip for Windows

PeaZip for Windows

The PeaZip for Windows tool is an application that is categorized as a freeware file compression tool. This program allows users to manage, compress and archive data contained in one or more files or folders. This software is integrated with compatibility support for the Microsoft Windows environment. This program is implemented with graphical images that users can interact with in order to access its integrated features. The file compression specifications that are used by this application include data encoding and compression algorithms similar to those used by Lazarus IDE of Free Pascal compiler. This software can be used in x86-32 and x86-64 Microsoft Windows platforms. It is capable of creating, converting and extracting a total of 150 different file formats. Aside from its easy to use graphical interface, it allows user to drag and drop regular or compressed files into the interface without requiring a temp folder. It is also integrated with the context menu of Windows Explorer so it allows user to access the program just by right clicking on the file. The installer package also offers a bundled Anti-Virus Guard (AVG) Security Toolbar adware or the plain software package. In case the bundled with adware is downloaded the user can still optionally decline the adware.

Zipeg

Zipeg is software that was developed by Leo Kuznetsov, and this application is known as a file decompression tool that can open ZIP and RAR files. This tool runs on both Windows and MAC operating systems, and with this program, users are able to preview their files before extracting them. Zipeg features a user interface that is open source and Java-powered. This tool also has the ability to detect filenames, even if they are in different languages, and can translate many foreign languages into Unicode. Zipeg is also able to read EXIF thumbnails by using these thumbnails as item icons and "tool tip" style preview. Aside from the preview feature, Zipeg also comes with an "Options" button, and this allows users to select the files they want to open. Zipeg makes it easy for users to extract compressed files, and since they can view the files first before extracting them, they can freely choose the file they want to open and extract only the files that they need.

7-Zip

Equipped with a high compression ratio (as high as 7z format via LMZA and LMZA2), 7-Zip is an open-source ZIP archiver software that is usable on any computer regardless of operating system installed from the latest to the earlier versions and without any charge at all. Majority of the source codes used by this program are on the list of GNU LGPL License. These include unRar, RAR,ZIP, ARJ, XZ, Z, TAR, WIM, BZIP2, GZIP, CAB, HFS, LZMA, NSIS, CPIO, RPM, VHD, DEB, CHM, LZH, MBR, FAT, NTFS, XAR, DMG, CramFS, ISO, MSI, SquashFS, and UDF. Technically, formats ZIP and GZIP have a ratio of 2 to 10%, 7z has high ratio from 30 to 70% plus this same format has self extracting capability while both ZIP and 7z has AES 256 encryption. Other features include windows shell, file manager, command line version, FAR manager plug-in and localizations for languages up to 79.

Архивы с расширением tar.gz создаются в приложении gzip (сокращение от GNU Zip), в котором применяется алгоритм сжатия DEFLATE. В большинстве случаев применяется в Unix системах, в них же этот формат является стандартным расширением для архивов. Чаще всего в этих архивах находится исходные коды приложений, реже – документы и изображения. Это объясняется тем, что сжатые этим алгоритмом файлы занимают мало места на диске. Открывается tar.gz любым архиватором.

Чем открыть файл с расширением tar.gz?

  1. – бесплатное приложения для создания, просмотра и распаковки архивов. Имеет простой и понятный интерфейс. Прежде всего оно ориентированно на работу с расширениями 7zip. Поддерживается работа из командной строки, а также интеграцию в оболочку в системы.

  2. Zipeg – бесплатное приложение для работы с архивами. Поддерживается только просмотр и распаковка. Вместе с этой программой можно просмотреть более 20 форматов архивов, среди них и tar.gz. обладает простым приятным интерфейсом, в котором легко разобраться. Поддерживается предварительный просмотр картинок. Также есть возможность указать постоянный путь до места распаковки, приложение не будет спрашивать его.

В качестве инструмента для архивации данных в Linux используются разные программы. Например , приобретший большую популярность из-за совместимости с ОС Windows. Но это не стандартная для системы программа. Поэтому хотелось бы осветить команду tar Linux - встроенный архиватор.

Изначально tar использовалась для архивации данных на ленточных устройствах. Но также она позволяет записывать вывод в файл, и этот способ стал широко применяться в Linux по своему назначению. Здесь будут рассмотрены самые распространенные варианты работы с этой утилитой.

Синтаксис команд для создания и распаковки архива практически не отличается (в том числе с утилитами сжатия bzip2 или gzip ). Так, чтобы создать новый архив, в терминале используется следующая конструкция:

tar опции архив.tar файлы_для_архивации

Для его распаковки:

tar опции архив.tar

Функции, которые может выполнять команда:

При определении каждой функции используются параметры, которые регламентируют выполнение конкретных операций с tar-архивом:

Как пользоваться tar

С помощью следующей команды создается архив archive.tar с подробным выводом информации, включающий файлы file1 , file2 и file3 :

tar --totals --create --verbose --file archive.tar file1 file2 file3

Но длинные опции и параметры можно заменить (при возможности) однобуквенными значениями:

tar --totals -cvf archive.tar file1 file2 file3

2. Просмотр содержимого архива

Следующая команда выводит содержимое архива, не распаковывая его:

tar -tf archive.tar

3. Распаковка архива tar Linux

Распаковывает архив test.tar с выводом файлов на экран:

tar -xvf archive.tar

Чтобы сделать это в другой каталог, можно воспользоваться параметром -C :

tar -C "Test" -xvf archive.tar

3. Работа со сжатыми архивами

Следует помнить, что tar только создаёт архив, но не сжимает. Для этого используются упомянутые компрессорные утилиты bzip2 и gzip . Файлы, сжатые с их помощью, имеют соответствующие расширения .tar.bz2 и .tar.gz . Чтобы создать сжатый архив с помощью bzip2, введите:

tar -cjvf archive.tar.bz2 file1 file2 file3

Синтаксис для gzip отличается одной буквой в параметрах, и меняется окончание расширения архива:

tar -czvf archive.tar.gz file1 file2 file3

При распаковке tar-архивов с таким расширением следует указывать соответствующую опцию:

tar -C "Test" -xjvf arhive.tar.bz2

tar -xzvf archive.tar.gz

На заметку: архиватор tar - одна из немногих утилит в GNU/Linux, в которой перед использованием однобуквенных параметров, стоящих вместе, можно не ставить знак дефиса.

Выводы

В этой статье была рассмотрена команда tar Linux, которая используется для архивации файлов и поставляется по умолчанию во всех дистрибутивах. В её возможности входит создание и распаковка архива файлов без их сжатия. Для сжатия утилита применяется в связке с популярными компрессорами bzip2 и gzip .

Apple Archive Utility

Apple Archive Utility

Apple Archive Utility is the standard archive manager software created by Apple for Mac OS X computers and until Mac OS X 10.5, it’s called as BOMArchiveHelper. This is a tool that enables a Mac computer user to create compressed archives (ZIP) by clicking the button “Create archive of file” or “Compress” on Leonard in the contextual menu or Finder’s File. This program can be invoked manually or automatically. For manual invoking, a minimal GUI is shown which allows a user to change preferences and choose which files to uncompress or compress. Furthermore, it is a utility tool for archiving files that supports a variety of file formats, including ZIP or .zip , except password protected ZIP files, for both writing and reading, as well as bzip2 (.bz, .bz2), cbz (comic book zip), cpgz (cpio gziped), cpio (.cpio), gz (.gzip, .gz), tar (.tar), .gz .tar gziped), tbz, tbz2 .tar bziped), jar (Java Archive), compress (.Z), and uuencode.

PeaZip for Windows

PeaZip for Windows

The PeaZip for Windows tool is an application that is categorized as a freeware file compression tool. This program allows users to manage, compress and archive data contained in one or more files or folders. This software is integrated with compatibility support for the Microsoft Windows environment. This program is implemented with graphical images that users can interact with in order to access its integrated features. The file compression specifications that are used by this application include data encoding and compression algorithms similar to those used by Lazarus IDE of Free Pascal compiler. This software can be used in x86-32 and x86-64 Microsoft Windows platforms. It is capable of creating, converting and extracting a total of 150 different file formats. Aside from its easy to use graphical interface, it allows user to drag and drop regular or compressed files into the interface without requiring a temp folder. It is also integrated with the context menu of Windows Explorer so it allows user to access the program just by right clicking on the file. The installer package also offers a bundled Anti-Virus Guard (AVG) Security Toolbar adware or the plain software package. In case the bundled with adware is downloaded the user can still optionally decline the adware.

Zipeg

Zipeg is software that was developed by Leo Kuznetsov, and this application is known as a file decompression tool that can open ZIP and RAR files. This tool runs on both Windows and MAC operating systems, and with this program, users are able to preview their files before extracting them. Zipeg features a user interface that is open source and Java-powered. This tool also has the ability to detect filenames, even if they are in different languages, and can translate many foreign languages into Unicode. Zipeg is also able to read EXIF thumbnails by using these thumbnails as item icons and "tool tip" style preview. Aside from the preview feature, Zipeg also comes with an "Options" button, and this allows users to select the files they want to open. Zipeg makes it easy for users to extract compressed files, and since they can view the files first before extracting them, they can freely choose the file they want to open and extract only the files that they need.

7-Zip

Equipped with a high compression ratio (as high as 7z format via LMZA and LMZA2), 7-Zip is an open-source ZIP archiver software that is usable on any computer regardless of operating system installed from the latest to the earlier versions and without any charge at all. Majority of the source codes used by this program are on the list of GNU LGPL License. These include unRar, RAR,ZIP, ARJ, XZ, Z, TAR, WIM, BZIP2, GZIP, CAB, HFS, LZMA, NSIS, CPIO, RPM, VHD, DEB, CHM, LZH, MBR, FAT, NTFS, XAR, DMG, CramFS, ISO, MSI, SquashFS, and UDF. Technically, formats ZIP and GZIP have a ratio of 2 to 10%, 7z has high ratio from 30 to 70% plus this same format has self extracting capability while both ZIP and 7z has AES 256 encryption. Other features include windows shell, file manager, command line version, FAR manager plug-in and localizations for languages up to 79.

Рекомендуем почитать

Наверх