{"id":2530,"date":"2026-02-15T12:30:00","date_gmt":"2026-02-15T18:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=2530"},"modified":"2025-12-26T05:58:36","modified_gmt":"2025-12-26T11:58:36","slug":"how-to-install-wget-on-debian-13","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/","title":{"rendered":"How to Install Wget on Debian 13"},"content":{"rendered":"\n<p>In this blog post, we will show you go to install Wget on Debian 13. Wget or World Wide Web Get is a free command-line utility for non-interactive file downloading from the Internet. Wget supports HTTP, HTTPS, and FTP protocols, schedules downloads, supports recursive downloads, mirrors websites, can resume on interrupted connections, and works offline. The Wget tool is used daily by system administrators and developers on multiple operating systems such as Linux, Windows, and macOS. In this tutorial, we will install Wget from the default Debian 13 repository and build it from source.<\/p>\n\n\n\n<p>Installing Wget is a straightforward process that may take different depending on which way we are using for installation. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">server with Debian 13<\/a> 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>Before we start with the Wget installation, it is recommended first to update the system packages to their latest available versions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Install Wget from Debian repository<\/h2>\n\n\n\n<p>Installing Wget from the default Debian 13 repository is the easiest and fastest way. To install it, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install wget -y<\/pre>\n\n\n\n<p>Once installed, check the Wget version with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget -V<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">GNU Wget 1.25.0 built on linux-gnu.\n\n-cares +digest -gpgme +https +ipv6 +iri +large-file -metalink +nls \n+ntlm +opie +psl +ssl\/gnutls \n\nWgetrc: \n    \/etc\/wgetrc (system)\nLocale: \n    \/usr\/share\/locale \nCompile: \n    gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC=\"\/etc\/wgetrc\" \n    -DLOCALEDIR=\"\/usr\/share\/locale\" -I. -I..\/..\/src -I..\/lib \n    -I..\/..\/lib -Wdate-time -D_FORTIFY_SOURCE=2 \n    -I\/usr\/include\/p11-kit-1 -DHAVE_LIBGNUTLS -DNDEBUG -g -O2 \n    -Werror=implicit-function-declaration \n    -ffile-prefix-map=\/build\/reproducible-path\/wget-1.25.0=. \n    -fstack-protector-strong -fstack-clash-protection -Wformat \n    -Werror=format-security -fcf-protection -DNO_SSLv2 \nLink: \n    gcc -I\/usr\/include\/p11-kit-1 -DHAVE_LIBGNUTLS -DNDEBUG -g -O2 \n    -Werror=implicit-function-declaration \n    -ffile-prefix-map=\/build\/reproducible-path\/wget-1.25.0=. \n    -fstack-protector-strong -fstack-clash-protection -Wformat \n    -Werror=format-security -fcf-protection -DNO_SSLv2 -Wl,-z,relro \n    -Wl,-z,now -lpcre2-8 -luuid -lidn2 -lnettle -lgnutls -lz -lpsl \n    ..\/lib\/libgnu.a \n\nCopyright (C) 2015 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later\n.\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nOriginally written by Hrvoje Niksic .\nPlease send bug reports and questions to .\n<\/pre>\n\n\n\n<p>That is how we install Wget from the default repository. Now, in the next paragraph, we will see how to build it from source.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and Build Wget from source<\/h2>\n\n\n\n<p>Building software from source code in Linux, rather than installing pre-compiled packages via a package manager, is typically done to access newer versions, greater customization, or to ensure compatibility with specific system configurations.<\/p>\n\n\n\n<p>Before we can start with the building and compiling process, we need to install some dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install build-essential libssl-dev gettext curl tar -y<\/pre>\n\n\n\n<p>Once done, first we need to download the Wget source code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -O https:\/\/ftp.gnu.org\/gnu\/wget\/wget2-2.2.0.tar.gz<\/pre>\n\n\n\n<p>Once downloaded, extract the file and enter it into the Wget directory:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar xvf wget2-2.2.0.tar.gz\n\ncd wget2-2.2.0\/\n<\/pre>\n\n\n\n<p>Configure the source code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">.\/configure\n<\/pre>\n\n\n\n<p>Compile the source code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make\n<\/pre>\n\n\n\n<p>Install the compiled Wget executable:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo make install\n<\/pre>\n\n\n\n<p>Once the process is completed, we need to make a symbolic link:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ln -s \/usr\/local\/bin\/wget2 \/usr\/bin\/wget<\/pre>\n\n\n\n<p>To check the installed Wget version:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget -V<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~\/wget2-2.2.0# wget -V\nGNU <strong>Wget2 2.2.0<\/strong> - multithreaded metalink\/file\/website downloader\n\n+digest +https +ssl\/openssl +ipv6 +iri +large-file +nls -ntlm -opie -psl -hsts\n+iconv -idn -zlib -lzma -brotlidec -zstd -bzip2 -lzip -http2 -gpgme\n\nCopyright (C) 2012-2015 Tim Ruehsen\nCopyright (C) 2015-2024 Free Software Foundation, Inc.\n\nLicense GPLv3+: GNU GPL version 3 or later\n.\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nPlease send bug reports and questions to .\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Most used Wget Commands with Examples<\/h2>\n\n\n\n<p>Here\u2019s a clean list of commonly used Wget commands in Linux with examples and what they do:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Download a single file:<\/strong>\n\nwget https:\/\/example.com\/file.zip\n\n<strong>Download and save with a custom filename:<\/strong>\n\nwget -O custom-name.zip https:\/\/example.com\/file.zip\n\n<strong>Resume a partially downloaded file:<\/strong>\n\nwget -c https:\/\/example.com\/largefile.iso\n\n<strong>Run the download in the background:<\/strong>\n\nwget -b https:\/\/example.com\/largefile.tar.gz\n\n<strong>Download multiple files from a list:<\/strong>\n\nwget -i urls.txt\n\n<strong>Save downloads to a specific directory:<\/strong>\n\nwget -P ~\/Downloads https:\/\/example.com\/file.zip\n\n<strong>Limit download speed:<\/strong>\n\nwget --limit-rate=500k https:\/\/example.com\/file.zip\n\n<strong>Quiet mode (no output):<\/strong>\n\nwget -q https:\/\/example.com\/file.zip\n\n<strong>Retry a set number of times:<\/strong>\n\nwget --tries=10 https:\/\/example.com\/file.zip\n\n<strong>Recursive download (whole directory or site):<\/strong>\n\nwget -r https:\/\/example.com\/path\/\n\n<strong>Wait between requests (spacing downloads):<\/strong>\n\nwget -w 5 https:\/\/example.com\/file1.zip\n\n<strong>Enable recursive download and create local offline website:<\/strong>\n\nwget --mirror --convert-links --page-requisites --no-parent https:\/\/example.com\/\n<\/pre>\n\n\n\n<p>Congratulations! You successfully installed Wget on Debian 13 OS in different ways and learned the most commonly used Wget commands with real examples.<\/p>\n\n\n\n<p>If you liked this post on installing Wget on Debian 13, please share it with your friends or leave a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will show you go to install Wget on Debian 13. Wget or World Wide Web Get is a free command-line utility for non-interactive file downloading from the Internet. Wget supports HTTP, HTTPS, and FTP protocols, schedules downloads, supports recursive downloads, mirrors websites, can resume on interrupted connections, and works offline. &#8230; <a title=\"How to Install Wget on Debian 13\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\" aria-label=\"More on How to Install Wget on Debian 13\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":2539,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[271],"tags":[348,168,262],"class_list":["post-2530","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install","tag-wget"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Wget on Debian 13 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Wget on Debian 13 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Wget on Debian 13\",\"datePublished\":\"2026-02-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp\",\"keywords\":[\"Debian 13\",\"how to install\",\"wget\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\",\"name\":\"How to Install Wget on Debian 13 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp\",\"datePublished\":\"2026-02-15T18:30:00+00:00\",\"description\":\"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install wget on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Wget on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Wget on Debian 13 | LinuxCloudVPS Blog","description":"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.","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:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Wget on Debian 13 | LinuxCloudVPS Blog","og_description":"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2026-02-15T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Wget on Debian 13","datePublished":"2026-02-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp","keywords":["Debian 13","how to install","wget"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/","name":"How to Install Wget on Debian 13 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp","datePublished":"2026-02-15T18:30:00+00:00","description":"Learn how to install Wget on Debian 13 using our latest guide and download files from the internet directly to your active directory.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-wget-on-debian-13.webp","width":742,"height":410,"caption":"How to Install wget on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wget-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Wget on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2530","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=2530"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2530\/revisions"}],"predecessor-version":[{"id":2534,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2530\/revisions\/2534"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/2539"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=2530"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=2530"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=2530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}