Как распаковать tar bz2 windows

Как известно, архивы вида *.tar.bz2 и *.tar.gz2 — одни из самых часто встречающихся видов архивов в Linux (так называемые тарболы (tarball)). Однако, что делать в случае, когда их надо открыть в Windows?
В этом случае Вам поможет архиватор 7z. Скачать его версию для Windows можно по этой ссылке.
Он бесплатный и умеет распаковывать следующие архивы: ARJ, CAB, CHM, CPIO, DEB, DMG, HFS, ISO, LZH, LZMA, MSI, NSIS, RAR, RPM, UDF, WIM, XAR и Z. А сжимать и открывать: 7z, ZIP, GZIP, BZIP2 и TAR.
Если 7zip не запускается при клике по tar.gz или tar.bz2, убедитесь, что он настроен на их открытие:
1) Откройте 7zip
2) Пройдите по Tools → Options
3) Выберите вкладку «System».
4) Убедитесь, что стоят галочки напротив tar, gz, bz2.
5) Нажмите Ok.

После этого 7zip сможет распаковать тарболы в windows.

Introduction

You can use the tar command to generate and extract tar archives. Gzip, bzip2, lzip, lzma, lzop, xz, and compress are just a few of the compression applications it supports.

One of the most often used techniques for compressing tar files is Bzip2. The name of a tar archive compressed with bzip2 should end in either .tar.bz2 or .tbz2.

In this tutorial, you will use the tar command to extract (or unzip) tar.bz2 and tbz2 archives. We will also address a few FAQs on how to extract (Unzip) Tar Bz2 File.

The tar program comes pre-installed on most Linux variants and macOS.

Use the --extract (-x) option and supply the archive file name after the -f option to extract a tar.bz2 file:

tar -xf archive.tar.bz2

The tar program automatically determines the type of compression and extracts the archive. The same command may be used to extract tar archives compressed using different techniques, such as .tar.gz or .tar.xz.

If you’re a desktop user who prefers not to utilize the command line, you can use your file manager instead. To extract (unzip) a tar.bz2 file, simply right-click it and choose «Extract.» To extract tar.bz2 files, Windows users will need to use the 7zip program.

Use the -v option to get more detailed output. This option instructs tar to print the names of the files being extracted to the terminal.

tar -xvf archive.tar.bz2

Tar extracts the contents of an archive in the current working directory by default. To extract archives in a specific directory, use the --directory (-C) option:

To extract the contents of an archive to the /home/vega/files directory, for instance, type:

tar -xf archive.tar.bz2 -C /home/vega/files

Append a space-separated list of file names to be extracted after the archive name to extract a specific file(s) from a tar.bz2 file:

tar -xf archive.tar.bz2 file1 file2

When extracting files, you must use their exact names, including the path, as displayed by the --list (-t) option.

Extracting numerous files from an archive is the same as extracting one or more directories:

tar -xf archive.tar.bz2 dir1 dir2

If you try to extract a file that doesn’t exist in the archive, you’ll get an error notice that looks like this:

tar -xf archive.tar.bz2 README
Output

tar: README: Not found in archive
tar: Exiting with failure status due to previous errors

You can use the --wildcards option to extract files from a tar.bz2 file using a wildcard pattern. To prevent the shell from reading the pattern, it must be quoted.

To extract only the files with names ending in .md (Markdown files), for example, use:

tar -xf archive.tar.bz2 --wildcards '*.md'

You must specify the decompression option when extracting a compressed tar.bz2 file from standard input (often via piping). The -j option instructs tar to compress the file using the bzip2 algorithm.

We’ll use the wget command to get the Vim sources and pipe the output to the tar command in the example below:

wget -c ftp://ftp.vim.org/pub/vim/unix/vim-8.1.tar.bz2 -O - | sudo tar -xj

If you don’t specify a decompression option, tar will recommend the options to you:

Output

tar: Archive is compressed. Use -j option
tar: Error is not recoverable: exiting now

List tar.bz2 File

Use the --list (-t) option to list the contents of a tar.bz2 file:

tar -tf archive.tar.bz2

You will get an output like below:

Output

file1
file2
file3

Tar will print more information if you use the --verbose (-v) option, such as the owner, file size, timestamp, and so on:

tar -tvf archive.tar.bz2
Output

-rw-r--r-- linuxize/users       0 2019-02-15 01:19 file1
-rw-r--r-- linuxize/users       0 2019-02-15 01:19 file2
-rw-r--r-- linuxize/users       0 2019-02-15 01:19 file3

What is a tar.bz2 file?

A tar.bz2 file is a compressed archive file that combines multiple files into a single compressed file using the tar and bzip2 compression algorithms.

Can I extract a tar.bz2 file without installing additional software?

No, you need to have a utility like tar installed on your system because it is required to extract the contents of a tar.bz2 file.

What is the command for extracting a tar.bz2 file?

The command for extracting a tar.bz2 file is tar -xjf filename.tar.bz2.

Can I specify a destination directory while extracting the tar.bz2 file?

Yes, you can specify a destination directory by using the -C flag followed by the desired directory path.

Can I extract only specific files from a tar.bz2 file?

Yes, you can extract specific files by providing their names or patterns as arguments to the tar command.

How do I view the contents of a tar.bz2 file without extracting it?

To view the contents of a tar.bz2 file without extracting, you can use the tar -tf filename.tar.bz2 command.

Will extracting a tar.bz2 file overwrite existing files?

Yes, if a file with the same name already exists in the extraction directory, it will be overwritten during the extraction process.

Conclusion

The tar.bz2 file is a Bzip2 compressed Tar archive. Use the tar -xf command followed by the archive name to extract a tar.bz2 file.

If you have any queries, please leave a comment below and we’ll be happy to respond to them.

  • Что такое Tar

  • Как установить, создать архив Tar и распаковать его в Windows

  • Как запаковать архив tar.gz и tar.bz2 в Ubuntu, Debian, CentOS

  • Как распаковать архив tar.gz и tar.bz2 Ubuntu, Debian, CentOS

  • Просмотр архивов tar в Linux

  • Иные возможности tar

Tar — это популярный файловый архиватор в Unix/Linux системах. Tar зачастую используется вместе с архиваторами GZip или BZip2, так как они отлично взаимодополняют друг друга: Tar не может сжимать файлы, только собирать их в одни архив, а GZip и BZip2 не могут сжимать несколько файлов одновременно, поэтому если вам нужно запаковать несколько файлов и директорий, сначала они собираются в один несжатый архив с помощью Tar, который сохранит их некоторые атрибуты, например такие, как права доступа, а затем этот архив сжимается с помощью GZip или BZip2. Весь процесс запускается одной консольной командой, про которые далее.

Как установить, создать архив Tar и распаковать его в Windows

Чтобы использовать Tar в Windows, нужно воспользоваться одним из следующих вариантов:

  1. Установить Far Manager.
    Инструкция по созданию и распаковке архива .tar с помощью Far Manager:

    • Теперь просто выделяете ПКМ (правой кнопкой мыши) или кнопкой клавиатуры Insert нужные вам файлы и папки и жмёте Shift + F1, затем выбираете нужный формат (в нашем случае, TAR) и создаёте архив:

      Создание архива в Far Manager

      Создание архива в Far Manager

      При желании, в поле Добавить к архиву можно изменить название архива, а в поле Ключи можно ввести пароль от него.

    • Чтобы распаковать архив Tar, просто выделяете ПКМ или Insert нужный архив и жмёте Shift + F2

      Как распаковать Tar в Far Manager

      Как распаковать Tar в Far Manager

      В поле Распаковать в вводится путь, куда распаковать архив. Если нужно распаковать в текущую папку, нужно оставить поле Распаковать архив пустым. Если архив запаролен, пароль вводится в поле Пароль.

  2. Также, можно обойтись без Far Manager, установив 7-Zip

    Скачать 7-zip архиватор

    Скачать 7-zip архиватор

    Всё управление — создать архив и распаковать его — через ПКМ и Проводник Windows

Как запаковать архив tar.gz и tar.bz2 в Ubuntu, Debian, CentOS

tar cfvz archive.tar.gz *.php

где tar — команда, cfvz — ключи, archive.tar.gz — имя будущего архива, *.php — список файлов, которые нужно заархивировать.
Список можно заменить директорией, которую нужно запаковать целиком, для этого указываем путь до неё, абсолютный или относительный

tar cfvz archive.tar.gz /forpack

Теперь подробнее про ключи

  • — команда, которая означает «создать архив»
  • -f — команда на упаковку файлов и директорий в один файл архива
  • -v — включает визуальное отображение процесса архивации
  • -z — использовать для сжатия GZip

Также, можно использовать для сжатия BZip2. Для этого нужно использовать ключ -j вместо -z.
В этом случае, команда для запаковки tar.bz2 будет выглядеть так

tar cfvj archive.tar.bz2 /forpack

Вместо GZip и BZip2 можно пользоваться иными архиваторами, для этого просто нужно подобрать соответствующий ключ.

Чтобы исключить определённый каталог или файл из архива, можно воспользоваться ключом --exclude.
Сначала переходим в нужный каталог, затем используем следующую команду:

tar cfvz wp-content.tgz wp-content --exclude=wp-content/updraft --exclude=wp-content/uploads --exclude=wp-content/cache

Тут мы запаковываем каталог /wp-content/ на WordPress, исключая раздел Updraft wp-content/updraft, раздел Загрузки wp-content/uploads и Кеш wp-content/cache.

Важный момент — чтобы исключить ошибки, не указывайте слеш / в конце пути исключаемого каталога.

Как распаковать архив tar.gz и tar.bz2 Ubuntu, Debian, CentOS

Чтобы распаковать архив tar.gz или tar.bz2, в команде нужно заменить на ключ -x, а также указать путь до архива, абсолютный или относительный
Команда для распаковки архива в текущую директорию выглядит так

tar xfvz archive.tar.gz 

С помощью ключа можно указать путь, куда нужно распаковать архив

tar xfvj archive.tar.bz2 -C /var/www

Просмотр архивов tar в Linux

Для просмотра содержимого архивов можно использовать ключ -t

tar -tf archive.tar.bz2

Будет выведен список файлов и директорий в архиве. При добавлении ключа -v также будет выведена подробная служебная информация о правах доступа, размерах файлов и прочем.

Иные возможности tar

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

tar --help

Загрузка…

TAR File Opener

WinZip’s TAR-BZ2 Opener Functionality

Need to open a TAR-BZ2 file?

Download WinZip to open your file now.

What is a Tar BZ2 file extension?

A tar.bz2 file is a compressed archive file type which wraps multiple files into one for easy access, transfer and storage. It contains a source code and is usually used for moving software such as video games from one device to another. It’s essentially a TAR archive file which is highly optimized for compression with a BZ2 compression algorithm and Run-Length Encoding (RLE).

If you’re using Linux operating software, tar.bz2 files work natively and are used by default for saving all source code software program files. If, however, you are using Windows or Mac devices then you will need WinZip to compress, extract and archive tar.bz2 files. Download WinZip today and use it for seven days for free.

What are Tar BZ2 files used for?

Tar.bz2 files are used often in the Linux community for sharing and delivering software packages and source codes. You’ll find them often used with Unix-based operating systems too, particularly in communities which share software packages frequently.

Because Tar BZ2 is a lossless compression format, it is a powerful tool for significantly compressing the size of a multitude of files. When users extract the files they can then gain access to the original, unchanged files without experiencing a loss of data.

This makes it an excellent file type of sharing large amounts of individual files such as images and videos as well as software programs.

Tar BZ2 and Linux

As tar.bz2 files are most often used with Linux systems, that is where it is most comfortably integrated into the platform. To open tar.bz2 files on Linux, use the Linux Command Line which lets you execute a range of commands including opening and creating Tar files.

To do this, on your Linux system press Ctrl+Al+T to access the Linux Command Line. Within this you can then highlight basic capabilities such as opening, creating and splitting tar.bz2 files. You can choose where to extract TAR files to and view the files within the archived folder.

How to Create Tar BZ2 Files

While WinZip does not create Tar BZ2 files, it does create Zip files. Zip files are similar to Tar BZ2 files and have many of the same benefits and more accessibility.

In order to create a Zip file, please follow these simple steps:

  1. Open WinZip
  2. Find and select the files you wish to ZIP from your PC, network, or cloud services in the files panel.
  3. Click “Add to Zip”.
  4. In the actions panel, click “Save as”.
  5. Choose any local, network or cloud location where you wish to save your new ZIP file.
  6. You may also choose to email it, share it in an instant message or via supported social media platforms.

Converting Tar BZ2 Files

While Tar BZ2 files are excellent for lossless compression and sharing large software programs, their focus on Linux may not make them suitable for other platforms such as Mac. In this case it’s best to convert Tar BZ2 files to other archive formats such as Zip or RAR, and you can do this by using third party conversion software such as WinZip.

WinZip is the go-to destination for any file conversions and archive extractions, as it can handle pretty much any file type for many platforms. Simply open up WinZip, select the Tar BZ2 file you wish to convert and follow the steps to convert it into a new ZIP file.

  1. Unzip your TAR BZ2 file using WinZip and save them to your computer
  2. Now select the files you wish to ZIP from your PC, network, or cloud services in the files panel in WinZip.
  3. Click “Add to Zip”.
  4. In the actions panel, click “Save as”.
  5. Choose any local, network or cloud location where you wish to save your new ZIP file.
  6. You may also choose to email it, share it in an instant message or via supported social media platforms.

Если вы хотите использовать большие файлы, чтобы сэкономить место или преобразовать их в более удобную версию, вам поможет программа для открытия и создания файлов TAR.

Что такое файлы TAR?

Аббревиатура tar предназначена для иллюстрации того, что отдельные файлы GZIP были сжаты настолько широко и максимально плотно, насколько это возможно. Упакованный файл может заканчиваться на .tar.gz и .tar.bz2. Иногда используется двойное окончание — .tar.gz. ZIP, который был разработан для слияния и сжатия, но оказался более мощным и поэтому в значительной степени подавляет файл .tar.

Как можно догадаться по двойному расширению формата, состоящему из двух файлов, это фактически два в одном. TAR объединяет несколько объектов данных в один пакет под систему Windows. Это полезно, если, например, необходимо отправить несколько документов, изображений или предложить их для загрузки.

Расширения в формате .tar в основном предназначены для операционной системы Linux. В мире Windows они довольно необычны и редко встречаются. По этой причине система не может открыть эти файлы без дополнительного программного обеспечения.

Программа для открытия файлов TAR в системе Windows

Особенно популярным и удобным программным обеспечением для распаковки и открытия файлов .tar.gz и .tar.bz2 в Windows является WinRAR.

Winrar признана классикой среди упаковочного ПО и может быть загружена в тестовой версии с сайта производителя WindowsRAR.ru. С ней файлы в системах Windows могут сжиматься намного эффективнее, чем с форматами ZIP. Лучшая и самая важная функция WinRAR понятна и отлично выполняется упаковщиком: экономит место на диске, время передачи. В дополнение к основной задаче, программное обеспечение предлагает множество других инструментов при архивировании файлов.

Главное преимущество WinRaR заключается в том, что она распознает двойные файлы и распаковывает их непосредственно за один шаг. Даже если вы дважды откроете .tar.gz и .tar.bz2, вы сможете напрямую просмотреть отдельные папки, упакованные в него с помощью архиватора. Это особенно удобно и стоит запомнить, поскольку на самом деле в формате .bz есть только один файл .TAR. Только в нем находятся отдельные оригинальные файлы.

Программа для открытия TAR файлов используется в пробной версии бесплатно в течение 40 дней. Далее производитель предложит вам купить лицензию.

Как распаковать TAR файл?

Уже во время установки ПО можно задать параметры, чтобы файлы .tar распаковывались с помощью WinRAR.

Если на жестком диске есть папка в формате .tar.gz, вы можете просто распаковать ее, дважды щелкнув, как и любой другой архив, поддерживаемый WinRAR.

Если вы не отметили TAR во время установки, файлы этого формата все еще можно извлечь, используя WinRAR.

Если архиватор уже открыт, перейдите в «Файл», чтобы найти путь, по которому находится папка .tar, и два раза кликните по маркеру.

Теперь содержимое архива должно отображаться в программе для открытия TAR файлов.

Как открыть и разархивировать файл TAR?

Если вы часто работаете с архивами .TAR, WindowsRAR следует установить в качестве стандартной для распаковки форматов .tar.gz и .tar.bz2. Если формат папки еще не связан с другим ПО сжатия, два раза нажмите папку TAR. Во втором случае кликните правой клавишей по маркеру упакованного файла TAR, выберите параметр «Открыть с помощью». В новом окне теперь представлены программы, открывающие файлы в формате TAR.

Если WinRAR отсутствует в списке, выберите «Поиск» в нижней области. Теперь проследите путь, по которому расположен архиватор, и установите его как стандартную программу для открытия расширения TAR. Прежде чем подтвердить настройку нажатием «ОК», убедитесь, что в левой части флажок «Всегда открывать тип файла с выбранной программой».

  • Как распаковать iso файл на windows 10
  • Как распечатать с экрана с компьютера windows
  • Как раскрыть все ядра процессора windows 10
  • Как распечатать экран монитора в windows 10
  • Как распаковать dmg файл на windows