{"id":48292,"date":"2022-08-03T18:48:16","date_gmt":"2022-08-03T18:48:16","guid":{"rendered":"https:\/\/linuxiac.com\/?p=48292"},"modified":"2023-10-22T11:00:45","modified_gmt":"2023-10-22T11:00:45","slug":"how-to-create-tar-gz-archive-using-tar-command-on-linux","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-create-tar-gz-archive-using-tar-command-on-linux\/","title":{"rendered":"How to Create tar.gz Archive Using the tar Command on Linux"},"content":{"rendered":"\n<p>Using the <code>tar<\/code> command to create <code>tar.gz<\/code> archives in Linux is a must-have skill for any Linux administrator. For this reason, in this article, we will show you how to create <code>tar.gz<\/code> archives in Linux using real-world examples following best practices.<\/p>\n\n\n\n<p>Additionally, if you want to learn how to extract <code>tar.gz<\/code> files in Linux, check out our excellent guide, &#8220;<a href=\"https:\/\/linuxiac.com\/how-to-untar-tar-gz-file\/\">How to Extract tar.gz File in Linux by Using the Command Line<\/a>.&#8221;<\/p>\n\n\n\n<p>You&#8217;ve probably already met files with the extensions <code>tar<\/code>, <code>tar.gz<\/code>, or <code>tar.bz2<\/code>, for example. Although they are all archives, there is a difference between them. So, before we get into the practicality, we&#8217;d want to shed some light on the difference is between them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-the-difference-between-tar-tar-gz-and-tar-bz2\">What Is the Difference Between TAR, TAR.GZ, and TAR.BZ2?<\/h2>\n\n\n\n<p>Tar stands for &#8220;Tape Archive&#8221; because it was used to place data on storage tapes when tar was invented. It&#8217;s a common file format in the Linux\/UNIX systems that packages files together for backup or distribution purposes.<\/p>\n\n\n\n<p>And now something vital to keep in mind. The tar archive is nothing more than an archive. In other words, there is no compression involved, just putting multiple files into a single (<code>tar<\/code>) file.<\/p>\n\n\n\n<p>Therefore, to obtain a compression of the final TAR archive, an extra tool such as <a href=\"https:\/\/www.gnu.org\/software\/gzip\/manual\/gzip.html\" target=\"_blank\" rel=\"noopener\">GZIP<\/a> or <a href=\"https:\/\/sourceware.org\/bzip2\/\" target=\"_blank\" rel=\"noreferrer noopener\">BZIP2<\/a> must be involved during its creation.<\/p>\n\n\n\n<p>As a result, when GZIP is applied, the resulting file has the <code>tar.gz<\/code> extension. If BZIP2 is used, the file gets the <code>tar.bz2<\/code> extension.<\/p>\n\n\n\n<p>So, having made these clarifications, let&#8217;s get to the meat of the subject, how to create a <code>tar.gz<\/code> archive in Linux using the <code>tar<\/code> command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Creating TAR Archive File<\/h2>\n\n\n\n<p>The general syntax for the&nbsp;<code>tar<\/code>&nbsp;command is as follows:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar &#91;OPTIONS] &#91;ARCHIVE_NAME] &#91;FILE_NAMES]<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In Linux, the <code>tar<\/code> command has numerous options, but the most important and commonly used ones when creating an archive are listed below:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-c<\/code> (<code>--create<\/code>) Create a new tar archive.<\/li>\n\n\n\n<li><code>-v<\/code> (<code>--verbose<\/code>) Show the files processed by the <code>tar<\/code> command.<\/li>\n\n\n\n<li><code>-f<\/code> (<code>--file=<\/code>) Resulting archive file name.<\/li>\n\n\n\n<li><code>-z<\/code> (<code>--gzip<\/code>) Filter the archive through GZIP.<\/li>\n\n\n\n<li><code>-j<\/code> (<code>--bzip2<\/code>) Filter the archive through BZIP2.<\/li>\n\n\n\n<li><code>--exclude<\/code> Exclude files matching pattern.<\/li>\n<\/ul>\n\n\n\n<p>For example, to create a tar archive named <code>myfiles.tar<\/code>, including the files <code>file1.txt<\/code>, <code>file2.jpg<\/code>, and <code>file3.pdf<\/code>, use the command below:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvf myfiles.tar file1.txt file2.jpg file3.pdf<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-create.jpg\"><img decoding=\"async\" width=\"837\" height=\"335\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-create.jpg\" alt=\"Creating tar archive file\" class=\"wp-image-48301\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-create.jpg 837w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-create-380x152.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-create-768x307.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/a><\/figure>\n\n\n\n<p>The essential thing to note here is that the <code>-f<\/code> argument must come last in the argument list because the <code>tar<\/code> command expects the file&#8217;s name to come after it.<\/p>\n\n\n\n<p>As you can see from the example, the arguments do not need to be separated, which makes it easier to type the command. Of course, the command will obtain a completely similar result if it is also executed in the following way:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar -c -v -f myfiles.tar file1.txt file2.jpg file3.pdf<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Or even more descriptive:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar --create --verbose --file=myfiles.tar file1.txt file2.jpg file3.pdf<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Now let&#8217;s look at how things work when archiving a whole directory. Assume you have a directory called <code>files<\/code> and want to save it to a file called <code>myfiles.tar<\/code>. You would type the following command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvf myfiles.tar files\/<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-directory.jpg\"><img decoding=\"async\" width=\"835\" height=\"489\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-directory.jpg\" alt=\"Creating tar archive file\" class=\"wp-image-48304\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-directory.jpg 835w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-directory-380x223.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-directory-768x450.jpg 768w\" sizes=\"(max-width: 835px) 100vw, 835px\" \/><\/a><\/figure>\n\n\n\n<p>As you can see, the only difference between this command and the last one is that you don&#8217;t pass a list of files to the <code>tar<\/code> command but rather the path to the directory you want to archive.<\/p>\n\n\n\n<p>Similarly, if you wish to archive multiple folders in a single file, list them one after the other with their full or relative path.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvf myfiles.tar files1\/ files2\/<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-multiple-dirs.jpg\"><img decoding=\"async\" width=\"835\" height=\"623\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-multiple-dirs.jpg\" alt=\"Archive multiple folders\" class=\"wp-image-48313\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-multiple-dirs.jpg 835w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-multiple-dirs-380x284.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-multiple-dirs-768x573.jpg 768w\" sizes=\"(max-width: 835px) 100vw, 835px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Exclude Files and Directories<\/h2>\n\n\n\n<p>Sometimes we need to create an archive while excluding specific files or folders. In such a situation, the <code>--exclude<\/code> option comes into play.<\/p>\n\n\n\n<p>For example, assume we have the directory named <code>files<\/code> containing four subdirectories: <code>files1<\/code>, <code>files2<\/code>, <code>files3<\/code>, and <code>files4<\/code>.<\/p>\n\n\n\n<p>We want to archive the entire <code>files<\/code> directory, but the final archive should not include the <code>files2<\/code> and <code>files3<\/code> directories. The command we need to run to accomplish this is as follows:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvf myfiles.tar --exclude=files2 --exclude=files3 files\/<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-exclude.jpg\"><img decoding=\"async\" width=\"888\" height=\"464\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-exclude.jpg\" alt=\"Exclude files and directories\" class=\"wp-image-48319\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-exclude.jpg 888w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-exclude-380x199.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-exclude-768x401.jpg 768w\" sizes=\"(max-width: 888px) 100vw, 888px\" \/><\/a><\/figure>\n\n\n\n<p>Take note of the use of <code>files2<\/code> and <code>files3<\/code>. Because these strings are actually regular expressions, we don&#8217;t include any pathways.<\/p>\n\n\n\n<p>In the same manner, if we wish to exclude just files with the <code>.txt<\/code> extension from the archive, we can run:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvf myfiles.tar --exclude=*.txt files\/<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\">Creating TAR.GZ Archive File<\/h2>\n\n\n\n<p>GZIP is the most widely used tar file compression algorithm. When using GZIP to compress tar archives, the archive name should end with <code>tar.gz<\/code>.<\/p>\n\n\n\n<p>To use it, add the <code>-z<\/code> option to the <code>tar<\/code> command, which instructs the <code>tar<\/code> to apply GZIP compression. For example, let&#8217;s archive <code>file1.txt<\/code>, <code>file2.jpg<\/code>, and <code>file3.pdf<\/code> to an archive named <code>myfiles.tar.gz<\/code>.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvzf myfiles.tar.gz file1.txt file2.jpg file3.pdf<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-gzip.jpg\"><img decoding=\"async\" width=\"838\" height=\"335\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-gzip.jpg\" alt=\"Creating tar.gz archive file\" class=\"wp-image-48307\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-gzip.jpg 838w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-gzip-380x152.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-gzip-768x307.jpg 768w\" sizes=\"(max-width: 838px) 100vw, 838px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Creating TAR.BZ2 Archive File<\/h2>\n\n\n\n<p>BZIP2 is another popular algorithm for compressing tar files. So, when using BZIP2, the archive name should end in <code>tar.bz2<\/code>.<\/p>\n\n\n\n<p>To use it, add the <code>-j<\/code> option to the <code>tar<\/code> command, which instructs the <code>tar<\/code> to apply BZIP2 compression. For example, let\u2019s archive the files <code>file1.txt<\/code>, <code>file2.jpg<\/code>, and <code>file3.pdf<\/code> to an archive named <code>myfiles.tar.bz2<\/code>.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">tar cvjf myfiles.tar.bz2 file1.txt file2.jpg file3.pdf<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-bzip.jpg\"><img decoding=\"async\" width=\"832\" height=\"332\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-bzip.jpg\" alt=\"Creating tar.bz2 archive file\" class=\"wp-image-48310\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-bzip.jpg 832w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-bzip-380x152.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-bzip-768x306.jpg 768w\" sizes=\"(max-width: 832px) 100vw, 832px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">TAR, TAR.GZ, or TAR.BZ &#8211; Which One to Use?<\/h2>\n\n\n\n<p>Now you&#8217;re probably wondering which of the three formats (TAR, TAR.GZ, and TAR.BZ2) to use for creating archives. Well, it all depends on your goals. In other words, it depends on what you are looking for &#8211; compression or simple archiving.<\/p>\n\n\n\n<p>If you wish to archive a file or set of files into one without compressing it, the TAR format is what you need.<\/p>\n\n\n\n<p>However, if compression is desired, the other two choices, TAR.GZ and TAR.BZ2 must be considered. So, which of the two is superior?<\/p>\n\n\n\n<p>This is how things are. Using GZIP (<code>tar.gz<\/code>) compression instead of BZIP2 (<code>tar.bz2<\/code>) is the faster option. Moreover, it is also memory-efficient.<\/p>\n\n\n\n<p>On the other hand, BZIP2 compression is slightly slower than GZIP, but it applies a higher level of compression. As a result, the file will be up to 15% smaller than the same file archived using GZIP compression.<\/p>\n\n\n\n<p>So, based on this information, each of you can decide where and what compression to use based on the situation&#8217;s demands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>This guide explained how to use Linux&#8217;s tar command to create <code>tar<\/code>, <code>tar.gz<\/code>, and <code>tar.bz2<\/code> archives. In addition, you also now have a clear understanding of the differences between them.<\/p>\n\n\n\n<p>Of course, other additional methods exist for creating compressed archives in Linux. However, the ZIP format is the most known to users coming from Windows. Therefore, the two guides below will be handy if you want to learn how to quickly and effortlessly create and unzip <code>zip<\/code> files in Linux.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/linuxiac.com\/zip-command-on-linux\/\">How to Zip Files and Directories on Linux (with Examples)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/linuxiac.com\/how-to-unzip-in-linux\/\">How to Unzip Files in Linux (with Examples)<\/a><\/li>\n<\/ul>\n\n\n\n<p>We hope we were of help to you. Any feedback is welcomed in the section below.<\/p>\n\n\n\n<p>You can refer to the <code>tar<\/code> command <a href=\"https:\/\/linux.die.net\/man\/1\/tar\" target=\"_blank\" rel=\"noreferrer noopener\">man page<\/a> for more information about it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article shows you the best practices for creating tar.gz archives from the command line in Linux using the tar command.<\/p>\n","protected":false},"author":10,"featured_media":48295,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4417,8],"tags":[5481,4870,1484,4867,4161,2042],"class_list":["post-48292","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-knowledge","category-tips","tag-archiver","tag-bzip2","tag-commands","tag-gzip","tag-tar","tag-zip"],"blocksy_meta":{"post_title_panel":"","has_hero_section":"default","2c572bdfcb8c5bdeb24c255468a8e8b3":"","hero_section":"type-2","hero_elements":[{"id":"custom_title","enabled":true,"heading_tag":"h1","title":"Home","__id":"rLeSu5-jZM_i-sXX_5LwE"},{"id":"custom_description","enabled":false,"description_visibility":{"desktop":true,"tablet":true,"mobile":false},"__id":"Am9GSug3cvISFi5fp9gpD"},{"id":"custom_meta","enabled":true,"meta_elements":[{"id":"author","enabled":true,"label":"By","has_author_avatar":"yes","avatar_size":50,"__id":"9mYfXxru7NEM2NqAEEqLE"},{"id":"post_date","enabled":true,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"J9PM-MXZf-IeTAUxkB41w"},{"id":"updated_date","enabled":false,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"am-srjHzu0ICmzWprFN_E"},{"id":"categories","enabled":false,"label":"In","style":"simple","__id":"rSW5TFQN5vqFoWE8Yd3f5"},{"id":"comments","enabled":true,"__id":"ErVxoZCMjRHzmC-GTfGh-"}],"page_meta_elements":{"joined":true,"articles_count":true,"comments":true},"__id":"OI0hh23xjlOibqKe4fcBL","meta_divider":"circle"},{"id":"breadcrumbs","enabled":false,"__id":"eRuod3VLPtFcH1xoOfwWq"}],"d39dbab8d2bda48b8476a53c03e88357":"","hero_alignment1":"CT_CSS_SKIP_RULE","hero_margin":40,"hero_alignment2":"center","hero_vertical_alignment":"center","fd4a0cf0964606e5a273ad4b33d762c2":"","hero_structure":"normal","df41c134bd4face1009500c771bc8433":"","page_title_bg_type":"custom_image","custom_hero_background":{"attachment_id":48298,"url":"https:\/\/linuxiac.com\/wp-content\/uploads\/2022\/08\/tar-header-1024x237.jpg"},"page_title_image_size":"full","parallax":{"desktop":false,"tablet":false,"mobile":false},"2bb7a6f9bdaebd61d2ba16ff4bb84be3":"","hero_height":"250px","pageTitleFont":{"family":"Default","variation":"Default","size":{"desktop":"2.8em","tablet":"2.8em","mobile":"2.8em","__changed":[]},"line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageTitleFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageMetaFont":{"family":"Default","variation":"n6","size":"12px","line-height":"1.3","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"uppercase","text-decoration":"CT_CSS_SKIP_RULE"},"pageMetaFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_font_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_background_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageExcerptFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageExcerptColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"breadcrumbsFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"breadcrumbsFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"initial":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageTitleOverlay":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"pageTitleBackground":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-6)"}}},"pageTitlePadding":{"top":"50px","bottom":"50px","left":"auto","right":"auto","linked":true},"a2c8dde248160c7a086dbbce4dec30b6":"","page_structure_type":"default","99c67ee79fbf681a568c1d892858673b":"","content_style_source":"inherit","content_style":"wide","34398614e37337262ab8fac0d26fa227":"","vertical_spacing_source":"inherit","content_area_spacing":"both","background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"content_background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-8)"}}},"content_boxed_shadow":{"inherit":false,"blur":18,"spread":-6,"v_offset":12,"h_offset":0,"inset":false,"enable":true,"color":{"color":"rgba(34, 56, 101, 0.04)"}},"content_boxed_border":{"width":1,"style":"none","color":{"color":"rgba(44,62,80,0.2)"}},"content_boxed_radius":{"top":"3px","bottom":"3px","left":"3px","right":"3px","linked":true},"boxed_content_spacing":{"desktop":{"top":"40px","bottom":"40px","left":"40px","right":"40px","linked":true},"tablet":{"top":"35px","bottom":"35px","left":"35px","right":"35px","linked":true},"mobile":{"top":"20px","bottom":"20px","left":"20px","right":"20px","linked":true}},"bac3ad2c5370b88fce3578cb6a338a98":"","disable_featured_image":"no","disable_post_tags":"no","disable_share_box":"no","disable_author_box":"no","disable_posts_navigation":"no","disable_subscribe_form":"no","3199da33917d8921888c8f8718478c87":"","disable_related_posts":"no","disable_header":"no","disable_footer":"no","3b32324b37bcbf1d14927b69cc31d1ef":"","header_footer_scripts_panel":"","header_scripts":"","14840994eb32193c5b27aa70aa7ca9df":"","header_after_body_scripts":"","31658a1ec199c59df512d41d2ddf375c":"","footer_scripts":"","styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/48292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=48292"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/48292\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/48295"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=48292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=48292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=48292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}