Return to site

How To Unzip Files With Windows 10

broken image


If necessary, click one of the folders on the right side of the window to select it as the location to which you want to extract your JAR file (WinRAR). If you are using 7-Zip, click the icon with three dots in the upper-right corner and navigate to the folder you want to extract the files to. While you'll need the paid version of WinRAR to create.rar files, there are a variety of free programs that can open and extract.rar files.tar.gz - This is a form of compression most commonly used in Linux.tar.gz is actually two formats in one:.tar is an archival format, and.gz is a compression format (gzip). In order to compress files/folders into a ZIP file or extract files from a ZIP archive in Windows 10, people tend to use software like WinZip or 7-Zip. Actually, Windows systems come with built-in Compressed Folder Tools so that users can compress and uncompress files/folders even without WinZip or any other outside zip tools installed.

How To Unzip Files With Windows 10

Zip (compress) files or folders in Windows 10

  • Open File Explorer. Select and right click file(s) or folder(s) that you want to zip. In context menu, select 'Send to -> Compressed (zipped folder)'. This will compress your selected file(s) or folder(s) to new .zip file in current folder.

Unzip files in Windows 10

  1. Right click on .zip file that you want to unzip (uncompress), and click on 'Extract All' in context menu.
  2. In 'Extract Compressed (Zipped) Folders' dialog, enter or browse folder path where you want files to be extracted. Check 'Show extracted files when complete' checkbox to open extracted folder after zip extraction is complete.
    Click on 'Extract' button to start the extraction.

A file using .tar.gz format is a file that has been created using the Unix-based archival application tar and then compressed using gzip compression. These files are often referred as 'tarballs,' and while you can find them with a double extension (.tar.gz), the extension can also be shortened to .tgz or .gz.

Usually, tar files are commonly used by Ubuntu and macOS users for data archival and backups, but sometimes Windows 10 users may also come across these types of files and may need to extract its contents.

While you can use a number of third-party applications like 7-Zip and PeaZip, sometimes these apps don't play well with files created on another platform, and they're slow to uncompressed a large number of files. However, Windows 10 includes native support for tar that you can use with Command Prompt to extract these files. Also, you can even use the Windows Subsystem for Linux (WSL) that brings native support for Ubuntu, Fedora, and SUSE, and therefore you can also access many Linux tools, including tar to quickly extract content from tarballs.

In this guide, you'll learn the steps to use native tar commands on Windows 10 using Command Prompt and Ubuntu to extract the content of a .tar.gz file.

Extract .tar.gz, .tgz, or .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:

  1. Open Start on Windows 10.

  2. Search for Command Prompt, right-click the first result and select the Run as administrator option.

  3. Type the following command to use tar to extract the files and press Enter:

    Quick tip: In the command, make sure to update the syntax to include the source and destination paths. Also, because you're using tar on Windows 10, you don't need to specify the path as if you were running Linux. You can simply use the path format used by Windows.

Once you complete the steps, after a few moments, you will have all the files and folders extracted to the destination path you specified.

It's assumed that you're extracting a tarball that was created on another system, therefore we're skipping some arguments usually necessary to preserve permissions, which on Windows 10 are not necessary to access the files.

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

To use tar on Linux, you need to install a distro (such as Ubuntu) by enabling the Windows Subsystem for Linux (WSL) using the Windows Features experience, and then installing Ubuntu from the Microsoft Store.

To extract a .tar.gz file using Linux on Windows 10, use these steps:

  1. Open Start.

  2. How much is final cut pro x. Search for Ubuntu and click the top result to open the app.

  3. Type the following command to extract the content of .tar.gz file and press Enter:

    Quick tip: In the command, make sure to update the syntax to include the source and destination paths. If it's only a .tar file, you can use the same command described above, but do not include the z argument.

In the above command, we type sudo to run the application as an administrator, tar to call the application, and then we fed it some arguments, including:

How To Unzip Files With Windows 10 Without

  • x — instructs tar that you want to extract content.
  • v — verbose. This is an optional argument to display the extraction process. Otherwise, you'll only see blinking cursor until the process is complete.
  • z — tells tar to uncompressed 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 specified the path of the tarball file you want to extract. You'll notice that the path starts with /mnt/c/, instead of c:, and this is because we're actually working in the Linux world.

-C — (hyphen and capital C) is used to tell tar to change folders. When you're 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.

How

It's very important that you pay attention to uppercase and lowercase while typing a command in Linux as Desktop is not the same as desktop.

In this guide, we're looking at the basic steps to perform a specific task, if you're not a Linux user, there is a lot more to learn about tar. If you want to learn more about this tool, in the Ubuntu console type tar --help.





broken image