Usually, tar files are more common with Ubuntu (other Linux distros) and macOS users for data archival and backups. However, Windows 10 users may also come across these files, which is a reason to have a way to extract their contents. Although you can use third-party apps (such as 7-Zip and PeaZip), these apps do not always work as expected with tarballs created on another platform, and they are slow to uncompress many files. However, Windows 10 includes native support for tar files, and you can use Command Prompt to extract these files. Or you can even use the Windows Subsystem for Linux (WSL) that includes native support for Ubuntu, Fedora, SUSE, and many other distros. Therefore, you can also access many Linux tools, including tar, to quickly extract content from tarballs. This guide will teach you the steps to use native tar commands on Windows 10 from Command Prompt and Ubuntu to extract the content of a .tar.gz file.

Extract .tar.gz, .tgz, .gz tarballs using tar on Windows 10 Extract .tar.gz, .tgz, .gz tarballs using tar on Linux on Windows 10

Extract .tar.gz, .tgz, .gz tarballs using tar on Windows 10

To extract .tar.gz, .tgz, .gz, as well as .zip files using tar on Windows 10, use these steps: Once you complete the steps, you will have all the files and folders extracted to the destination path you specified after a few moments.

It is assumed that you are extracting a tarball created on another system. We are skipping some arguments usually necessary to preserve permissions, which on Windows 10 are not required to access the files. 

Extract .tar.gz, .tgz, .gz tarballs using tar on Linux on Windows 10

On Windows 10, to use tar on Linux, you need to install the Windows Subsystem for Linux (WSL) and a distro like Ubuntu from the Microsoft Store. To extract a .tar.gz file using Linux on Windows 10, use these steps: In the above command, sudo runs the app as an administrator, tar calls the app, and then we feed it some arguments, including:

x — instructs tar that you want to extract content. v — verbose. This is an optional argument to display the extraction process. Otherwise, you will only see a blinking cursor until the process is complete. z — tells tar to uncompress the content of a .tar.gz file with gzip. f — instructs tar the name of the file you’re about to extract.

Then you need to specify the path of the tarball file to extract. You’ll notice that the path starts with /mnt/c/, instead of c:\ because you are now in the Linux world. -C — (hyphen and capital C) is used to tell tar to change folders. When executing a command, you start in the source folder, and then you need to specify the destination folder, which is the path we specified to complete the command. You can extract the files to any folder you want, but remember to start the path with /mnt/ followed by the Windows path. You must pay attention to uppercase and lowercase while typing a Linux command, as “Desktop” is not the same as “desktop.” This guide outlines the basic steps to perform a specific task. If you are not a Linux user, you can learn more about this tool in the Ubuntu console by typing the tar –help command. All content on this site is provided with no warranties, express or implied. Use any information at your own risk. Always backup of your device and files before making any changes. Privacy policy info.