{"id":24637,"date":"2024-01-05T18:18:03","date_gmt":"2024-01-05T12:48:03","guid":{"rendered":"https:\/\/www.wpoven.com\/blog\/?p=24637"},"modified":"2024-01-05T18:18:05","modified_gmt":"2024-01-05T12:48:05","slug":"unzip-tar-gz","status":"publish","type":"post","link":"https:\/\/www.wpoven.com\/blog\/unzip-tar-gz\/","title":{"rendered":"How to Extract\/Unzip .tar.gz Files? [Linux &amp; Windows]"},"content":{"rendered":"<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<div class=\"wp-block-group box is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading myh2\">What are tar.gz files?<\/h2>\n\n\n\n<p>A .tar.gz file, also known as a tarball, is a special file format comprising a collection of files compressed into a single archive. This particular file format is commonly used in Unix and Linux operating systems.<\/p>\n\n\n\n<p>It is simply created by combining multiple files or directories into a single file and then compressing it using gzip compression.<\/p>\n\n\n\n<p>You might be wondering, where the word tar came from, well the word &#8220;tar&#8221; was used from Tape Archiver, which was originally used for magnetic tape storage.<\/p>\n\n\n\n<p>Just like the .zip files you may have heard about and even used, .tar files are also used to compress large files into a single package, making it convenient to store and send them through various channels such as emails, servers, etc.<\/p>\n\n\n\n<p>At this moment, a question must have come to your mind, why don&#8217;t we simply use the .zip file format then? Why there is a need for a separate file format i.e. &#8220;.tar&#8221; to compress files?<\/p>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Difference between .Zip file and .Tar file<\/h3>\n\n\n\n<p>To better understand the main difference between these two, the best way is to know by their simple definition.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is a .tar file?<\/h3>\n\n\n\n<p>In the <strong>.tar file<\/strong>, you will find there is a collection of directories or files uncompressed. Compressing the files in the collection requires a separate compression utility i.e either gzip or bz2 to compress files that&#8217;s main purpose is to compress a .tar into a .tar.gz or .tar.bz2.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is a .tar.gz file?<\/h3>\n\n\n\n<p>From the format name itself, you can easily understand that it combines two files, the TAR file and the GZ file. This combination happens when a TAR archive file has been undergoing compression with the Gzip compression utility and becomes a TAR.GZ file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is a GZ File?<\/h3>\n\n\n\n<p>When talking about a GZ file, it is created by the Gzip compression utility. When a single file is compressed using the Gzip compression utility, it will be turned into a single GZ file. However, when you compress multiple files with the same utility, it will create multiple individual GZ files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is a .zip file?<\/h3>\n\n\n\n<p>In a .zip file, you will find a collection of compressed files instead. Unlike the .tar file, the .zip doesn&#8217;t require any compression initially and compresses each file within the collection. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">.ZIP vs .TAR<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Feature<\/th><th>.zip Files<\/th><th>.tar Files<\/th><\/tr><\/thead><tbody><tr><td><strong>Compression Algorithm<\/strong><\/td><td>ZIP compression<\/td><td>Primarily used for archiving (not compression by itself)<\/td><\/tr><tr><td><strong>Cross-Platform Compatibility<\/strong><\/td><td>Widely supported on Windows, macOS, Linux<\/td><td>Native support on Unix-like systems (Linux, macOS); requires additional tools on some platforms<\/td><\/tr><tr><td><strong>Compression Level<\/strong><\/td><td>Good balance between compression ratio and speed<\/td><td>Typically a single-step process for both compression and archiving<\/td><\/tr><tr><td><strong>File and Directory Structure<\/strong><\/td><td>Preserves both file and directory structures<\/td><td>Primarily focuses on preserving the directory structure; compression is a separate step when using <code>.tar<\/code> alone<\/td><\/tr><tr><td><strong>Naming Convention<\/strong><\/td><td>Uses the <code>.zip<\/code> file extension<\/td><td>Uses the <code>.tar<\/code> file extension when uncompressed; additional extensions like <code>.tar.gz<\/code> or <code>.tar.bz2<\/code> when compressed<\/td><\/tr><tr><td><strong>Single\/Double Step Process<\/strong><\/td><td>Typically a single step process for both compression and archiving<\/td><td>Archiving and compression are separate steps when using <code>.tar<\/code> alone<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\"><em><sup>.Zip Vs .Tar<\/sup><\/em><\/figcaption><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Both file formats have their applications and depend upon your specific needs, compatibility requirements, and your target platforms.<\/p>\n\n\n\n<p>If you are looking for a format that is widely supported and used, .zip can be the best option. However, if you are specifically working on Unix-like platforms, .tar is commonly used.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading myh2\">How Do I Unzip a .tar.gz File in Linux?<\/h2>\n\n\n\n<p>For your information, many Linux distributions such as Ubuntu and MacOS come up with inbuilt tools for Compressing and Extracting .tar and .tar.gz files.<\/p>\n\n\n\n<p>Although for most of the tasks, the tar utility is sufficient you will be also required to have a gzip utility for creating .tar.gz files.<\/p>\n\n\n\n<div class=\"wp-block-group box is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h3 class=\"wp-block-heading\">Unzip .tar.gz in Linux using the tar utility<\/h3>\n\n\n\n<p>In the Linux operating system, the first thing you need to do is to open the Terminal by pressing the CTRL+ALT+T keywords simultaneously and enter the given command below:<\/p>\n\n\n\n<p><strong>1.<\/strong> <strong>Extracting .tar.gz to the current working directory<\/strong> <strong>and printing out the output<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><strong><code>tar -xf Yourfile.tar.gz<\/code><\/strong><\/p>\n\n\n\n<p>In the above command, <\/p>\n\n\n\n<ul>\n<li>The &#8220;Tar&#8221; command will manipulate tar archives<\/li>\n\n\n\n<li>the &#8220;-x&#8221; option will tell &#8220;tar&#8221; to extract the files.<\/li>\n\n\n\n<li>&#8220;-f&#8221; specifies the file to be extracted. In the above command, it is followed by yourfile.tar.gz which shows the name of the compressed tarball file.<\/li>\n<\/ul>\n\n\n\n<p>When you run this command, it will extract the contents of this particular tarball file, i.e &#8220;Yourfile.tar.gz&#8221; into the current working directory.<\/p>\n\n\n\n<p class=\"justify round has-background\" style=\"background-color:#fff6dd\"><strong>Note:<\/strong> The extracted files will be stored in the same directory where the command is executed. And also, do not forget to replace the &#8220;<code>Yourfile.tar.gz<\/code>&#8221; with the actual name of your compressed tarball file.<\/p>\n\n\n\n<p>To Printing out the Output, enter the below command:<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xvf Yourfile.tar.gz<\/strong><\/code><\/p>\n\n\n\n<p><strong>2.<\/strong> <strong>Extracting .tar.gz files to different working directory<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xf Yourfile.tar.gz -C \/home\/user\/files<\/strong><\/code><\/p>\n\n\n\n<p><strong>3.<\/strong> <strong>Extracting the files from the tar archive that has been compressed using gzip<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar \u2013xvzf Yourfile.tar.gz<\/strong><\/code><\/p>\n\n\n\n<ul>\n<li><code>tar<\/code>: This is the basic command for working with tar archives.<\/li>\n\n\n\n<li><code>-x<\/code>: Stands for extract, which means you want to extract files from the archive.<\/li>\n\n\n\n<li><code>-v<\/code>: Stands for verbose, which provides more details about the extraction process, displaying the names of the files as they are extracted.<\/li>\n\n\n\n<li><code>-z<\/code>: Indicates that the archive is compressed using gzip.<\/li>\n\n\n\n<li><code>-f<\/code>: Specifies the filename of the archive.<\/li>\n<\/ul>\n\n\n\n<p>The command will extract the contents of the archive while providing a verbose output of the process.<\/p>\n\n\n\n<p><strong>4.<\/strong> <strong>In case you want to see the list of contents in a .tar file before extracting it, enter the command given below:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar \u2013tzf Yourfile.tar.gz<\/strong><\/code><\/p>\n\n\n\n<p><strong>5<\/strong>. <strong>If you want to put the extracted unzipped files into a specific directory, enter the following commands:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar \u2013xvzf Yourfile.tar.gz \u2013C \/home\/user\/destination<\/strong><\/code><\/p>\n\n\n\n<p><strong>6. If you want to extract only a specific file or Directory from .tar.gz file<\/strong><\/p>\n\n\n\n<p>Suppose, you want to extract a particular file say &#8220;Yourfile&#8221; and a directory say &#8220;Directory1&#8221; from the .tar.gz file to the current working directory. In this case, the command should be like,<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xf Yourfile.tar.gz file1 directory1<\/strong><\/code><\/p>\n\n\n\n<p>All you have to just add a space between the files you want to extract. <\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#fff6dd\"><strong>Note:<\/strong> Please, mention the exact filename in the command, or else it will show an error. Therefore, verify the file name that is listed in the.tar file. To view the contents of the .<strong>tar<\/strong> file you can use the &#8220;tar \u2013tzf Yourfile.tar.gz&#8221; command.<\/p>\n\n\n\n<p><strong>7. If you want to extract a certain type of extension file or name, use the following commands:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xf Yourfile.tar.gz --wildcards '*.txt'<\/strong><\/code><\/p>\n\n\n\n<p>This command will extract all the .txt extension files from the .tar.gz file.<\/p>\n\n\n\n<p><strong>8. If you want to create a .tar.gz file instead, enter the below command:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar \u2013cvzf NewFile.tar.gz ~\/Documents<\/strong><\/code><\/p>\n\n\n\n<p>This command will create a compressed tar archive of the contents of the <code>~\/Documents<\/code> directory, i.e. located at <strong>\/home\/user\/Documents<\/strong>&nbsp;directory into a single file, <strong>NewFile.tar.gz<\/strong>.<\/p>\n\n\n\n<p><strong>9. Add multiple files to a tar file<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -cvf Yourfile.tar ~\/Documents<\/strong><\/code><\/p>\n\n\n\n<p>This command will add files by copying the contents of your documents folder into Yourfile.tar.<\/p>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-group box is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h3 class=\"wp-block-heading\">Extracting .tar.gz files using the gzip utility<\/h3>\n\n\n\n<p>The Gzip command is particularly used for compressing and decompressing files. However, in case you want to extract a <strong>.tar.gz<\/strong> file, you need to use the <strong>tar<\/strong> command as well as the <strong>gzip<\/strong> command in the combination.<\/p>\n\n\n\n<p><strong>Gzip&nbsp;<\/strong>by default, extracts the file in the current directory. <\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code>gzip -d yourfile.tar.gz<\/code><\/p>\n\n\n\n<p>Here you need to replace yourfile.tar.gz with the actual name of your <strong>.tar.gz<\/strong> file and the -d option will tell gzip to decompress the file. After decompressing the gzip file, you will have a tar archive and you can proceed further by extracting the tar archive using the <strong>tar<\/strong> command.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Extracting .tar.gz files using stdin<\/h3>\n\n\n\n<p>If you have a tar.gz file that you want to extract from standard input (stdin), you can use the <code>tar<\/code> command with the <code><strong>-z<\/strong><\/code> option for decompression.<\/p>\n\n\n\n<p>Let&#8217;s understand this with an example. Suppose we need to download a file from the URL &#8216;<a href=\"http:\/\/www.wpoven.com\/yourfile\">www.wpoven.com\/yourfile<\/a>&#8216;. In this case, we can use the <code><strong>wget<\/strong><\/code> command and pipe its output to the <code>tar<\/code> command.<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>wget -c https:\/\/Wpoven.com\/Yourfile.tar.gz -O - | sudo tar -xz<\/strong><\/code><\/p>\n<\/div><\/div>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group tip is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading myh2\">Unzip a tar gz file Windows 10<\/h2>\n\n\n\n<p>For Windows 10 Users, you might be surprised to know just like macOS and Linux operating systems Windows also provides you the utility.<\/p>\n\n\n\n<p>No doubt, Windows provides a more convenient and easier-to-use Graphic user Interface for unzipping and extracting .zip files but for tar files, you need to have a command line and for that command prompt is available.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Unzip .tar.gz file using the command prompt in Windows<\/h3>\n\n\n\n<p>Command prompt is available in every version of Windows devices regardless of what version you are using. All you have to open the command prompt by following the below steps<\/p>\n\n\n\n<ul>\n<li>Press the Windows + R buttons on your keyboard<\/li>\n\n\n\n<li>This will launch a small box for Run Commands.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image imgsha round\"><a href=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2019\/03\/flush-DNS-2.png\"><img decoding=\"async\" src=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2019\/03\/flush-DNS-2.png\" alt=\"Open Cmd\" class=\"wp-image-3707\" title=\"How to Easily Flush DNS Command Cache (Windows, Mac, Linux) 3\"\/><\/a><figcaption class=\"wp-element-caption\"><em><sup>Open cmd<\/sup><\/em><\/figcaption><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ul>\n<li>Enter CMD in the box and press enter<\/li>\n\n\n\n<li>It will open the Command Prompt Screen and Run as Administrator.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full imgsha round\"><img decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2022\/05\/Command-prompt-application.png\" alt=\"Command Prompt\" class=\"wp-image-19296\" srcset=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2022\/05\/Command-prompt-application.png 1024w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2022\/05\/Command-prompt-application-300x150.png 300w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2022\/05\/Command-prompt-application-768x384.png 768w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" title=\"\"><\/figure>\n\n\n\n<p><em><sup>And enter the following commands.<\/sup><\/em><\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>To extract a .tar.gz file to its current working directory enter the below commands and hit the &#8220;Enter&#8221; button.<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xvzf Yourfile.tar.gz<\/strong><\/code><\/p>\n\n\n\n<p><strong>If you want to extract.tar.gz file from the source path to the<\/strong> <strong>destination path, enter the following commands:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar -xvzf C:\\PATH\\TO\\SOURCE\\YourFile.tar.gz -C C:\\PATH\\TO\\DESTINATION<\/strong><\/code><\/p>\n\n\n\n<p>You also might have noticed that the commands in both the operating system i.e Windows and Linux are nearly the same. <\/p>\n\n\n\n<p>Alternatively, if you are not familiar with the command line and want to use a way simpler and easy method go for third-party tools.<\/p>\n\n\n\n<p>There are various tools available some of them are Free and some of them offer free trials such as WinZip. But they are lightweight and worth trying.<\/p>\n<\/div><\/div>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Troubleshoot Errors While Extracting .tar.gz file<\/h2>\n\n\n\n<p>It is also possible that at some point in time or while entering commands you might encounter some errors. To help you out in this regard, here are some of the troubleshooting steps you can follow to these some common errors:<\/p>\n\n\n\n<p><strong>1. If the output shows an error message:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar: Archive is compressed. Use -z option<br>tar: Error is not recoverable: exiting now<\/strong><\/code><\/p>\n\n\n\n<p><strong>Solution:<\/strong> If you receive such an error message, it simply implies that you have missed &#8220;-z&#8221; in the entered command.<\/p>\n\n\n\n<p>for example, if you have entered:<\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>wget -c https:\/\/WPOven.com\/Yourfile.tar.gz -O - | sudo tar -x<\/strong><\/code><\/p>\n\n\n\n<p>You have to mention a particular decompression option such as gzip (-z) in the above tar command, i.e. &#8220;<strong>Sudo tar -xz<\/strong>&#8221; on the far right.<\/p>\n\n\n\n<p><strong>2. If the out shows an error message:<\/strong><\/p>\n\n\n\n<p class=\"round has-background\" style=\"background-color:#f0f0f0\"><code><strong>tar: FILE: Not found in filename<br>tar: Exiting with failure status due to previous errors<\/strong><\/code><\/p>\n\n\n\n<p>It means either you have entered the wrong filename or the file doesn&#8217;t exist in the .tar.gz file.<\/p>\n\n\n\n<p><strong>Solution<\/strong>: You need to cross-check the file name, and its spelling and make sure it is available in the .tar.gz file.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>This ultimate guy helps you How to unzip or extract .tar.gz file using the tar as well as gzip utility tool and also troubleshoot errors while using them. After reading this post thoroughly you are now ready to unzip any tar.gz file on any platform whether it is Linux, macOS, or Windows using the command line easily.<\/p>\n\n\n\n<p>If using the command line is not your cup of tea, alternate options such as extraction tools are also available that you can go for.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1704278082375\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">How do I unzip a tar GZ file in Linux command line?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You can easily unzip a tar GZ file in Linux by simply entering the code &#8220;<strong>tar -xf Yourfile.tar.gz<\/strong>&#8221; in the Terminal and pressing enter.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1704278222341\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">Can you unzip a tar GZ file in Windows?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Windows comes with built-in tar-utility and for that, you have to use the command prompt. To unzip a tar gz file in Windows use the following command:<br \/>tar -xvzf Yourfile.tar.gz<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1704278435071\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What type of file is tar?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A tar file is created by the <code>tar<\/code> command and is used to bundle multiple files and directories into a single file. It does not compress the data; it simply archives it.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>","protected":false},"excerpt":{"rendered":"<p>What are tar.gz files?<\/p>\n<p>A .tar.gz file, also known as a tarball, is a special file format comprising a collection of files compressed into a single archive. This particular file format is commonly used in Unix and Linux operating systems.<\/p>\n<p>It is simply created by combining multiple files or directories into a single file and then compressing it using gzip compression.<\/p>\n<p>You might be wondering, where the word tar came from, well the word &#8220;tar&#8221; was used from Tape Archiver, &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.wpoven.com\/blog\/unzip-tar-gz\/\" class=\"more-link\">Read More <i class=\"fa fa-angle-double-right\" aria-hidden=\"true\"><\/i><span class=\"screen-reader-text\"> &#8220;How to Extract\/Unzip .tar.gz Files? [Linux &amp; Windows]&#8221;<\/span><\/a><\/p>\n","protected":false},"author":28,"featured_media":24671,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[1],"acf":[],"featured_image_src":"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/01\/Unzip-.tar.gz.png","author_info":{"display_name":"Rahul","author_link":"https:\/\/www.wpoven.com\/blog\/author\/rahul\/"},"_links":{"self":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/24637"}],"collection":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/comments?post=24637"}],"version-history":[{"count":2,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/24637\/revisions"}],"predecessor-version":[{"id":24695,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/24637\/revisions\/24695"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media\/24671"}],"wp:attachment":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media?parent=24637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/categories?post=24637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}