{"id":2164,"date":"2024-03-20T11:34:27","date_gmt":"2024-03-20T10:34:27","guid":{"rendered":"https:\/\/hoganhost.com.ng\/blog\/?p=2164"},"modified":"2024-08-12T13:12:55","modified_gmt":"2024-08-12T12:12:55","slug":"how-to-install-and-use-wget-on-linux","status":"publish","type":"post","link":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/","title":{"rendered":"How to Install and Use Wget on Linux"},"content":{"rendered":"<p><img fetchpriority=\"high\" decoding=\"async\" class=\"size-medium wp-image-2165 aligncenter\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux-300x300.jpg 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux-1024x1024.jpg 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux-150x150.jpg 150w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux-768x768.jpg 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files from web servers or FTP servers. Wget can be installed on most modern operating systems, including Windows, Linux, and macOS.<\/p>\n<div class=\"wp-block-image is-style-default\"><\/div>\n<p>The Wget command comes with several options that allow you to download multiple files, download in the background, mirror a website, resume downloads, limit the bandwidth, download recursively, and lots more. It supports HTTP, HTTPS, and the FTP protocols and also retrieval through HTTP proxies.<\/p>\n<p>In this tutorial, we will show you how to install and use Wget command with some examples on how to use Wget.<\/p>\n<h2 id=\"h-requirements\" class=\"wp-block-heading\">Requirements<\/h2>\n<ul>\n<li>A Linux VPS with root access enabled or a user with sudo privileges. Our VPSes all come with root access included.<\/li>\n<\/ul>\n<h2 id=\"h-connect-to-your-server\" class=\"wp-block-heading\"><span id=\"Connect-to-Your-Server\" class=\"ez-toc-section\"><\/span>Connect to Your Server<\/h2>\n<p>Before starting, you need to connect to your server via SSH as the root user or as any other user with sudo privileges.<\/p>\n<p>To connect to your server as the root user, use the following command:<\/p>\n<pre class=\"wp-block-preformatted\">ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n<p>Make sure to replace\u00a0<code>IP_ADDRESS<\/code>\u00a0and\u00a0<code>PORT_NUMBER<\/code>\u00a0with your actual server IP address and SSH port number. The default port number is 22, so try that one first if you\u2019re not sure.<\/p>\n<p>Once logged in, make sure that your server is up-to-date by running the following commands:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get update -y<\/pre>\n<p>Or<\/p>\n<pre class=\"wp-block-preformatted\">yum update -y<\/pre>\n<p>Now that everything is up to date, we can install Wget and see how to use it.<\/p>\n<h2 id=\"h-install-wget\" class=\"wp-block-heading\"><span id=\"Install-Wget\" class=\"ez-toc-section\"><\/span>Install Wget<\/h2>\n<p>By default, the Wget package comes pre-installed in most Linux operating systems. If not installed, you can install it using either the APT or YUM command-line utility (depending on your Linux distribution).<\/p>\n<p>For RHEL\/CentOS\/Fedora, install Wget by running the following command:<\/p>\n<pre class=\"wp-block-preformatted\">yum install wget -y<\/pre>\n<p>For Debian\/Ubuntu, install Wget by running the following command:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install wget -y<\/pre>\n<p>Once installed, you can verify the installed version of Wget command using the following command:<\/p>\n<pre class=\"wp-block-preformatted\">wget --version<\/pre>\n<p>Output:<\/p>\n<pre class=\"wp-block-preformatted\">GNU Wget 1.15 built on linux-gnu.\r\n<\/pre>\n<h2 id=\"h-download-a-single-file\" class=\"wp-block-heading\"><span id=\"Download-a-Single-File\" class=\"ez-toc-section\"><\/span>Download a Single File<\/h2>\n<p>You can use the Wget command without any options specified to download a file from the specified URL to your current working directory.<\/p>\n<p>For example, download this Drupal install file using the Wget command, as shown below:<\/p>\n<pre class=\"wp-block-preformatted\">wget https:\/\/ftp.drupal.org\/files\/projects\/drupal-8.7.3.tar.gz<\/pre>\n<h2 id=\"h-download-multiple-files\" class=\"wp-block-heading\">Download Multiple Files<\/h2>\n<p>The Wget command also allows you to download multiple files by specifying multiple URLs.<\/p>\n<p>For example, the following command will download Drupal and WordPress files:<\/p>\n<pre class=\"wp-block-preformatted\">wget https:\/\/ftp.drupal.org\/files\/projects\/drupal-8.7.3.tar.gz https:\/\/wordpress.org\/latest.zip<\/pre>\n<p>In some cases, you might want to download a large number of files. In this case, you can store all URL\u2019s in a text file and download them using the\u00a0<code>-i<\/code>\u00a0option.<\/p>\n<p>First, create a text file using the following command:<\/p>\n<pre class=\"wp-block-preformatted\">nano download.txt<\/pre>\n<p>Add all the URL\u2019s that you want to download:<\/p>\n<pre class=\"wp-block-preformatted\">https:\/\/ftp.drupal.org\/files\/projects\/drupal-8.7.3.tar.gz \r\nhttps:\/\/wordpress.org\/latest.zip\r\n<\/pre>\n<p>Save and close the file.<\/p>\n<p>Next, use the Wget command with the\u00a0<code>-i<\/code>\u00a0option to download all files:<\/p>\n<pre class=\"wp-block-preformatted\">wget -i download.txt<\/pre>\n<h2 id=\"h-download-files-and-save-them-with-a-different-name\" class=\"wp-block-heading\">Download Files and Save them with a Different Name<\/h2>\n<p>You can download a file and save it with a different name by using the\u00a0<code>-O<\/code>\u00a0option:<\/p>\n<pre class=\"wp-block-preformatted\">wget -O wordpress.zip https:\/\/wordpress.org\/latest.zip<\/pre>\n<h2 id=\"h-resume-an-incomplete-download\" class=\"wp-block-heading\">Resume an Incomplete Download<\/h2>\n<p>If you are downloading a large file and stop the downloading process due to some network error, you can resume downloading the same file where it was left off with the\u00a0<code>-c<\/code>\u00a0option.<\/p>\n<p>For example, let\u2019s download the WordPress file using the\u00a0<code>-c<\/code>\u00a0option:<\/p>\n<pre class=\"wp-block-preformatted\">wget -c https:\/\/wordpress.org\/latest.zip<\/pre>\n<p>Press\u00a0<code>CTRL + C<\/code>\u00a0to stop the downloading process:<\/p>\n<p>Now, run the above command again:<\/p>\n<pre class=\"wp-block-preformatted\">wget -c https:\/\/wordpress.org\/latest.zip<\/pre>\n<p>This will download the file where it was left off, as shown below:<\/p>\n<h2 id=\"h-download-a-file-in-the-background\" class=\"wp-block-heading\">Download a File in the Background<\/h2>\n<p>You can also use the Wget command with the\u00a0<code>-b<\/code>\u00a0option to run the downloading process in background.<\/p>\n<pre class=\"wp-block-preformatted\">wget -b https:\/\/ftp.drupal.org\/files\/projects\/drupal-8.7.3.tar.gz<\/pre>\n<p>This command will save the downloading progress log in the\u00a0<code>wget-log<\/code>\u00a0file in the current directory.<\/p>\n<p>You can check it with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">tail -f wget-log<\/pre>\n<h2 id=\"h-limit-the-download-speed\" class=\"wp-block-heading\"><span id=\"Limit-the-Download-Speed\" class=\"ez-toc-section\"><\/span>Limit the Download Speed<\/h2>\n<p>The Wget command also allows you to limit the download speed by using the\u00a0<code>--limit-rate<\/code>\u00a0option.<\/p>\n<p>For example, download the WordPress file and limit the download speed to 256KBps, as shown below:<\/p>\n<pre class=\"wp-block-preformatted\">wget --limit-rate=256k https:\/\/wordpress.org\/latest.zip<\/pre>\n<p>This option is very useful if you don\u2019t want Wget to use all of your available bandwidth.<\/p>\n<pre class=\"wp-block-preformatted\">wget Command Advance Usage<\/pre>\n<p>If you want to download a file using the HTTPS protocol from a server that has an invalid SSL certificate, you can use the\u00a0<code>--no-check-certificate<\/code>\u00a0option:<\/p>\n<pre class=\"wp-block-preformatted\">wget --no-check-certificate https:\/\/wordpress.org\/latest.zip<\/pre>\n<p>To create a mirror of any website, you can use the\u00a0<code>-m<\/code>\u00a0option. This will download a complete local copy of the specified website:<\/p>\n<pre class=\"wp-block-preformatted\">wget -m http:\/\/example.com<\/pre>\n<p>If you want to download a file from a password-protected FTP server, use the following command:<\/p>\n<pre class=\"wp-block-preformatted\">wget --ftp-user=ftpuser --ftp-password=ftppassword ftp:\/\/your-ftp-server\/file.zip<\/pre>\n<p>Hopefully you now have a clearer view of what Wget can do for you. It\u2019s a useful application whose features are rarely ever used outside of the most basic function.<\/p>\n<p>Check out our Cheap and Reliable Web hosting <a href=\"https:\/\/hoganhost.com.ng\">hoganhost.com.ng<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2165,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[11],"tags":[],"class_list":["post-2164","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install and Use Wget on Linux - HoganHost blog<\/title>\n<meta name=\"description\" content=\"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Use Wget on Linux - HoganHost blog\" \/>\n<meta property=\"og:description\" content=\"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"HoganHost blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/HoganHost\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-20T10:34:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-12T12:12:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Abigal okon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:site\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abigal okon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\"},\"author\":{\"name\":\"Abigal okon\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\"},\"headline\":\"How to Install and Use Wget on Linux\",\"datePublished\":\"2024-03-20T10:34:27+00:00\",\"dateModified\":\"2024-08-12T12:12:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\"},\"wordCount\":752,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg\",\"articleSection\":[\"Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\",\"name\":\"How to Install and Use Wget on Linux - HoganHost blog\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg\",\"datePublished\":\"2024-03-20T10:34:27+00:00\",\"dateModified\":\"2024-08-12T12:12:55+00:00\",\"description\":\"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files\",\"breadcrumb\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg\",\"width\":1080,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hoganhost.com.ng\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Use Wget on Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"name\":\"HoganHost blog\",\"description\":\"Keeping you connected to everything from HoganHost\",\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\",\"name\":\"HoganHost\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"width\":466,\"height\":387,\"caption\":\"HoganHost\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/HoganHost\",\"https:\/\/x.com\/hoganhostng\",\"https:\/\/instagram.com\/officialhoganhost\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\",\"name\":\"Abigal okon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"caption\":\"Abigal okon\"},\"sameAs\":[\"https:\/\/hoganhost.com.ng\/blog\"],\"url\":\"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install and Use Wget on Linux - HoganHost blog","description":"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files","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:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Use Wget on Linux - HoganHost blog","og_description":"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files","og_url":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/","og_site_name":"HoganHost blog","article_publisher":"https:\/\/facebook.com\/HoganHost","article_published_time":"2024-03-20T10:34:27+00:00","article_modified_time":"2024-08-12T12:12:55+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg","type":"image\/jpeg"}],"author":"Abigal okon","twitter_card":"summary_large_image","twitter_creator":"@hoganhostng","twitter_site":"@hoganhostng","twitter_misc":{"Written by":"Abigal okon","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#article","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/"},"author":{"name":"Abigal okon","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a"},"headline":"How to Install and Use Wget on Linux","datePublished":"2024-03-20T10:34:27+00:00","dateModified":"2024-08-12T12:12:55+00:00","mainEntityOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/"},"wordCount":752,"commentCount":0,"publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg","articleSection":["Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/","url":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/","name":"How to Install and Use Wget on Linux - HoganHost blog","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg","datePublished":"2024-03-20T10:34:27+00:00","dateModified":"2024-08-12T12:12:55+00:00","description":"Wget is a non-interactive network download utility for the Linux command line interface. It\u2019s is used for downloading or retrieving files","breadcrumb":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#primaryimage","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2024\/03\/How-to-Install-and-Use-Wget-on-Linux.jpg","width":1080,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/how-to-install-and-use-wget-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hoganhost.com.ng\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install and Use Wget on Linux"}]},{"@type":"WebSite","@id":"https:\/\/hoganhost.com.ng\/blog\/#website","url":"https:\/\/hoganhost.com.ng\/blog\/","name":"HoganHost blog","description":"Keeping you connected to everything from HoganHost","publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hoganhost.com.ng\/blog\/#organization","name":"HoganHost","url":"https:\/\/hoganhost.com.ng\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","width":466,"height":387,"caption":"HoganHost"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/HoganHost","https:\/\/x.com\/hoganhostng","https:\/\/instagram.com\/officialhoganhost"]},{"@type":"Person","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a","name":"Abigal okon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","caption":"Abigal okon"},"sameAs":["https:\/\/hoganhost.com.ng\/blog"],"url":"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/2164","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/comments?post=2164"}],"version-history":[{"count":1,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/2164\/revisions"}],"predecessor-version":[{"id":2166,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/2164\/revisions\/2166"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media\/2165"}],"wp:attachment":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media?parent=2164"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/categories?post=2164"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/tags?post=2164"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}