{"id":1838,"date":"2023-07-15T12:30:00","date_gmt":"2023-07-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1838"},"modified":"2023-08-29T03:37:54","modified_gmt":"2023-08-29T08:37:54","slug":"how-to-install-tar-gz-on-almalinux-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/","title":{"rendered":"How to Install Tar.gz on AlmaLinux 9"},"content":{"rendered":"\n<div id=\"linux-682014747\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>If you are asking what is <strong>Tar.gz<\/strong>, then the <strong>tar<\/strong> file is an archive that contains files and folders into it, while the <strong>gz<\/strong> stands for the compressed file format. If you combine these two, you will get a compressed archive. <\/p>\n\n\n\n<p>The compressed archives are used on a daily basis by the system administrators, developers, and regular Linux users. Compressing multiple files in one archive can simplify the process of sending that compressed file quickly.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>In this blog post, we will install and show you some real-life examples of using the tar.gz format with commands. Let&#8217;s get started!<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with AlmaLinux 9 as OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>We assume that you have a fresh installation of AlmaLinux 9 so let&#8217;s first update the system packages to their latest versions available:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Tar.Gz Installation<\/h2>\n\n\n\n<p>Tar.Gz can be installed and is compatible with multiple operating systems such as MacOS, Windows and Linux. We will focus of course <a href=\"https:\/\/linuxhostsupport.com\/\" title=\"\">Linux operating system<\/a> because AlmaLinux is a Linux distribution. To install tar.gz on AlmaLinux 9, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install tar gzip<\/pre>\n\n\n\n<p>Once installed, you can check the installed versions of <strong>tar<\/strong> and <strong>gzip<\/strong> using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar --version\n\ngzip --version\n<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# tar --version\n<strong>tar (GNU tar) 1.34<\/strong>\nCopyright (C) 2021 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later .\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nWritten by John Gilmore and Jay Fenlason.\n[root@host ~]# gzip --version\n<strong>gzip 1.12<\/strong>\nCopyright (C) 2018 Free Software Foundation, Inc.\nCopyright (C) 1993 Jean-loup Gailly.\nThis is free software.  You may redistribute copies of it under the terms of\nthe GNU General Public License .\nThere is NO WARRANTY, to the extent permitted by law.\n\nWritten by Jean-loup Gailly.\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to create Tar.gz files<\/h2>\n\n\n\n<p>Now, when the tar.gz is installed, we are going to show you how to create a <a href=\"https:\/\/www.howtogeek.com\/362203\/what-is-a-tar.gz-file-and-how-do-i-open-it\/\" title=\"\">tar.gz file<\/a>. Let&#8217;s say that we have WordPress files and folders:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host wordpress]# ll\ntotal 228\n-rw-r--r--  1 root root   405 Feb  6  2020 index.php\n-rw-r--r--  1 root root 19915 Dec 31 18:06 license.txt\n-rw-r--r--  1 root root  7402 Mar  4 18:52 readme.html\n-rw-r--r--  1 root root  7205 Sep 16  2022 wp-activate.php\ndrwxr-xr-x  9 root root  4096 May 16 11:45 wp-admin\n-rw-r--r--  1 root root   351 Feb  6  2020 wp-blog-header.php\n-rw-r--r--  1 root root  2338 Nov  9  2021 wp-comments-post.php\n-rw-r--r--  1 root root  3013 Feb 23 04:38 wp-config-sample.php\ndrwxr-xr-x  4 root root  4096 May 16 11:45 wp-content\n-rw-r--r--  1 root root  5536 Nov 23 09:43 wp-cron.php\ndrwxr-xr-x 28 root root 12288 May 16 11:45 wp-includes\n-rw-r--r--  1 root root  2502 Nov 26 15:01 wp-links-opml.php\n-rw-r--r--  1 root root  3792 Feb 23 04:38 wp-load.php\n-rw-r--r--  1 root root 49330 Feb 23 04:38 wp-login.php\n-rw-r--r--  1 root root  8541 Feb  3 07:35 wp-mail.php\n-rw-r--r--  1 root root 24993 Mar  1 09:05 wp-settings.php\n-rw-r--r--  1 root root 34350 Sep 16  2022 wp-signup.php\n-rw-r--r--  1 root root  4889 Nov 23 09:43 wp-trackback.php\n-rw-r--r--  1 root root  3238 Nov 29 09:51 xmlrpc.php\n<\/pre>\n\n\n\n<p>We want to compress them in an archive so we can easily upload somewhere or store them locally on our system. To do that, execute the following command inside the WordPress directory:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -zcvf wordpress.tar.gz .<\/pre>\n\n\n\n<p>This will compress all files and folders of the current directory (That is why we are using dot in the command), and the compressed file will be inside it:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host wordpress]# ll\ntotal 22700\n-rw-r--r--  1 root root      405 Feb  6  2020 index.php\n-rw-r--r--  1 root root    19915 Dec 31 18:06 license.txt\n-rw-r--r--  1 root root     7402 Mar  4 18:52 readme.html\n<strong>-rw-r--r--  1 root root 23007861 May 19 15:06 wordpress.tar.gz<\/strong>\n-rw-r--r--  1 root root     7205 Sep 16  2022 wp-activate.php\ndrwxr-xr-x  9 root root     4096 May 16 11:45 wp-admin\n-rw-r--r--  1 root root      351 Feb  6  2020 wp-blog-header.php\n-rw-r--r--  1 root root     2338 Nov  9  2021 wp-comments-post.php\n-rw-r--r--  1 root root     3013 Feb 23 04:38 wp-config-sample.php\ndrwxr-xr-x  4 root root     4096 May 16 11:45 wp-content\n-rw-r--r--  1 root root     5536 Nov 23 09:43 wp-cron.php\ndrwxr-xr-x 28 root root    12288 May 16 11:45 wp-includes\n-rw-r--r--  1 root root     2502 Nov 26 15:01 wp-links-opml.php\n-rw-r--r--  1 root root     3792 Feb 23 04:38 wp-load.php\n-rw-r--r--  1 root root    49330 Feb 23 04:38 wp-login.php\n-rw-r--r--  1 root root     8541 Feb  3 07:35 wp-mail.php\n-rw-r--r--  1 root root    24993 Mar  1 09:05 wp-settings.php\n-rw-r--r--  1 root root    34350 Sep 16  2022 wp-signup.php\n-rw-r--r--  1 root root     4889 Nov 23 09:43 wp-trackback.php\n-rw-r--r--  1 root root     3238 Nov 29 09:51 xmlrpc.php\n<\/pre>\n\n\n\n<p>The original WordPress directory was 72 megabytes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host html]# du -csxh wordpress\/\n72M     wordpress\/\n72M     total\n<\/pre>\n\n\n\n<p>Now, the compressed file is 22 megabytes which is three times smaller than the WordPress directory:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host wordpress]# du -csxh wordpress.tar.gz\n22M     wordpress.tar.gz\n22M     total\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to Extract Tar.gz Files<\/h2>\n\n\n\n<p>To extract the compressed tar.gz archive, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -xzvf wordpress.tar.gz<\/pre>\n\n\n\n<p>You can notice now that instead of the <strong>c<\/strong> flag, the <strong>x<\/strong> flag is used, which means <strong>extract<\/strong>.<\/p>\n\n\n\n<p>If you want to know more about the usage of <strong>tar,<\/strong> you can execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">man tar<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# man tar\nTAR(1)                                                                     GNU TAR Manual                                                                    TAR(1)\n\nNAME\n       tar - an archiving utility\n\nSYNOPSIS\n   Traditional usage\n       tar {A|c|d|r|t|u|x}[GnSkUWOmpsMBiajJzZhPlRvwo] [ARG...]\n\n   UNIX-style usage\n       tar -A [OPTIONS] ARCHIVE ARCHIVE\n\n       tar -c [-f ARCHIVE] [OPTIONS] [FILE...]\n\n       tar -d [-f ARCHIVE] [OPTIONS] [FILE...]\n\n       tar -t [-f ARCHIVE] [OPTIONS] [MEMBER...]\n\n       tar -r [-f ARCHIVE] [OPTIONS] [FILE...]\n\n       tar -u [-f ARCHIVE] [OPTIONS] [FILE...]\n\n       tar -x [-f ARCHIVE] [OPTIONS] [MEMBER...]\n          .\n          .\n          .\n          .\n          .\n\n<\/pre>\n\n\n\n<p>That&#8217;s it. In this blog post, we explained how to install Tar.gz on AlmaLinux 9 and its usage. If you find it difficult to install and use the <strong>tar<\/strong> command, you can always sign up for one of our <a href=\"https:\/\/www.rosehosting.com\/linux-vps-hosting\/\" title=\"\">NVMe VPS<\/a> plans and submit a support ticket. We are available 24\/7<\/p>\n\n\n\n<p>If you liked this post about installing Tar.gz on AlmaLinux 9, please share it with your friends on social networks or simply leave a reply below.<\/p><div id=\"linux-2434258649\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you are asking what is Tar.gz, then the tar file is an archive that contains files and folders into it, while the gz stands for the compressed file format. If you combine these two, you will get a compressed archive. The compressed archives are used on a daily basis by the system administrators, developers, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1898,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,228,2],"tags":[220,249],"class_list":["post-1838","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux","category-tutorials","tag-almalinux","tag-tar-gz"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let&#039;s get things done!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let&#039;s get things done!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-15T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T08:37:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Tar.gz on AlmaLinux 9\",\"datePublished\":\"2023-07-15T17:30:00+00:00\",\"dateModified\":\"2023-08-29T08:37:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/\"},\"wordCount\":469,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-tar-gz-on-almalinux-9.webp\",\"keywords\":[\"almalinux\",\"tar.gz\"],\"articleSection\":[\"Guides\",\"Linux\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/\",\"name\":\"How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-tar-gz-on-almalinux-9.webp\",\"datePublished\":\"2023-07-15T17:30:00+00:00\",\"dateModified\":\"2023-08-29T08:37:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let's get things done!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-tar-gz-on-almalinux-9.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-tar-gz-on-almalinux-9.webp\",\"width\":742,\"height\":372,\"caption\":\"install tar.gz on almalinux 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-tar-gz-on-almalinux-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Tar.gz on AlmaLinux 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport","description":"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let's get things done!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport","og_description":"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let's get things done!","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2023-07-15T17:30:00+00:00","article_modified_time":"2023-08-29T08:37:54+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Tar.gz on AlmaLinux 9","datePublished":"2023-07-15T17:30:00+00:00","dateModified":"2023-08-29T08:37:54+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/"},"wordCount":469,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp","keywords":["almalinux","tar.gz"],"articleSection":["Guides","Linux","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/","name":"How to Install Tar.gz on AlmaLinux 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp","datePublished":"2023-07-15T17:30:00+00:00","dateModified":"2023-08-29T08:37:54+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Wondering how to install tar.gz on AlmaLinux 9 together? Follow our step-by-step tutorial and find out more. Let's get things done!","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/07\/install-tar-gz-on-almalinux-9.webp","width":742,"height":372,"caption":"install tar.gz on almalinux 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-tar-gz-on-almalinux-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Tar.gz on AlmaLinux 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1838","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1838"}],"version-history":[{"count":6,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1838\/revisions"}],"predecessor-version":[{"id":1852,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1838\/revisions\/1852"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1898"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1838"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1838"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1838"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}