<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>wget Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/wget/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 09 Nov 2020 15:32:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Terminal Tools for Downloading Files</title>
		<link>https://www.osradar.com/terminal-tools-downloading-files/</link>
					<comments>https://www.osradar.com/terminal-tools-downloading-files/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 07 Nov 2020 02:34:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[wget]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=25194</guid>

					<description><![CDATA[<p>Throughout our posts, we have downloaded many files via the terminal but have never made an envelope post. So in this post, we&#8217;ll tell you all the details about Terminal Tools for Downloading Files. When referring to downloading files, the first thing we can think of is the web browser. This is true up to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/terminal-tools-downloading-files/">Terminal Tools for Downloading Files</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Throughout our posts, we have downloaded many files via the terminal but have never made an envelope post. So in this post, we&#8217;ll tell you all the details about Terminal Tools for Downloading Files.</p>



<p>When referring to downloading files, the first thing we can think of is the web browser. This is true up to a point. Because in the terminal we also have many options for downloading.</p>



<p>The Linux Terminal is a powerful tool so much so that it is the main working support for many servers. Therefore, the terminal is fast, secure, and efficient.</p>



<p>So, let&#8217;s talk about those tools.</p>



<h2>Terminal Tools for Downloading Files</h2>



<p>Several tools allow a download without major problems, but we will name the most familiar and easy to use.</p>



<h3>1.- The great wget</h3>



<p><a href="https://www.gnu.org" target="_blank" rel="noreferrer noopener">GNU</a> wget is a CLI (command-line interface) utility that allows you to download files from the internet if you know its link. It is very efficient in the management of computer resources because it is practically unnoticeable its use. In addition, this allows you to rename the downloaded files quickly.</p>



<p>On the other hand, although it is a program that is used in the terminal, it is quite complete. Here is a list of the main features of the application:</p>



<ul><li>Wget supports downloads through proxies</li><li>IPv6 is fully supported by wget.</li><li>It allows limiting the bandwidth used for downloads.</li><li>Wget works with SSL/TSL to secure downloads.</li></ul>



<p>But Wget has many configurations and work options. So many that we made a post about it:</p>



<p><a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">The Wget Command</a></p>



<p>There you can learn even more about Wget and above all how to use it.</p>



<h3>2.- cURL</h3>



<p>Another veteran of our site is cURL.</p>



<p><a href="https://curl.haxx.se/">CURL</a> is a command line tool and library for transferring data with URLs. Many download scripts or file transfers use CURL as a means to achieve this. In addition, CURL supports FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP and many other protocols quite popular on networks.</p>



<p>On the other hand, the use of CURL is not limited exclusively to computers but to other devices that use UNIX such as cell phones, cars and is the transfer backend of many of the most popular applications in the world.</p>



<p>Say that cURL is even more advanced than Wget but you also have other additional features.</p>



<p>So, if you want to learn more about it, check our post:</p>



<p><a href="https://www.osradar.com/how-to-use-curl-command-linux/" target="_blank" rel="noreferrer noopener">How to use CURL command on Linux?</a></p>



<h3>3.- Terminal Tools for Downloading Files used on Scripts</h3>



<p>It is also possible to find other tools that are in the main repositories of most Linux distributions. We are talking about tools like rsync or scp.</p>



<p>Rsync, remote synchronize is known as a remote synchronization function of the software, it synchronizes files at the same time, can maintain the original file permissions, time, hard and soft links and other additional information. it is a “sync algorithm” that provides a quick way to synchronize files between clients and remote file servers, and can also be transferred via SSH, which is also very confidential, supports breakpoint continuation, data can be pushed or pulled, and is free of chargeS.</p>



<p>Rsync advantages：</p>



<ul><li>Ability to update entire directories and trees and file systems;</li><li>Selectively maintain symbolic links, hard links, file ownership, permissions, devices, and time for folders and files;</li><li>For installation, there are no special permission requirements;</li><li>For multiple files, the internal pipeline reduces the file wait delay;</li><li>Can use RSH, SSH or direct port as the transfer port;</li><li>Support anonymous Rsync synchronization files are the ideal mirror tool;</li></ul>



<p>You can read:</p>



<p><a href="https://www.osradar.com/synchronous-data-using-rsync-command-in-linux/" target="_blank" rel="noreferrer noopener">Synchronous data Using rsync Command in Linux</a></p>



<p>Although it is true that with Rsync we do not make a download itself, it can help us to copy and synchronize files from a server. What in practice can be considered a download.</p>



<p>On the other hand, <strong>scp is a variation of the cp command that allows you to copy files over a network</strong>. As with Rsync it is not a download but in practice it allows us to do it. Especially when we have access to certain files from a given server.</p>



<h2>Conclusion</h2>



<p>The terminal is a marvel in Linux and so much so that you can download files from the internet or a network using commands. This is useful on servers or computers with ssh connections.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/terminal-tools-downloading-files/">Terminal Tools for Downloading Files</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/terminal-tools-downloading-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The wget command</title>
		<link>https://www.osradar.com/the-wget-command/</link>
					<comments>https://www.osradar.com/the-wget-command/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 17 Oct 2019 23:34:35 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[linux command]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wget]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14538</guid>

					<description><![CDATA[<p>Downloading files from the Internet is something quite common and normal in the daily use of a computer. People who use their computer in a basic way, download these files using a graphical interface. Usually, this graphical interface is within the same browser. And other users a little more experienced, use download managers but always [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/the-wget-command/">The wget command</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Downloading files from the Internet is something quite common and normal in the daily use of a computer. People who use their computer in a basic way, download these files using a graphical interface. Usually, this graphical interface is within the same browser. And other users a little more experienced, use download managers but always with a graphical interface. But if we use a server, how can we do it? Or if we like to use the terminal, we could download a file through the terminal? the answer is yes. That is why we will explain <strong>the wget command</strong> to you.</p>
<p><a href="https://www.gnu.org" target="_blank" rel="noopener noreferrer">GNU</a> wget is a CLI (command-line interface) utility that allows you to download files from the internet if you know its link. It is very efficient in the management of computer resources because it is practically unnoticeable its use. In addition, this allows you to rename the downloaded files quickly.</p>
<p>On the other hand, although it is a program that is used in the terminal, it is quite complete. Here is a list of the main features of the application:</p>
<ul>
<li>Wget supports downloads through proxies</li>
<li>IPv6 is fully supported by wget.</li>
<li>It allows limiting the bandwidth used for downloads.</li>
<li>Wget works with SSL/TSL to secure downloads.</li>
</ul>
<p>Finally, wget is available for many UNIX systems but also for <a href="https://www.osradar.com/tag/windows/" target="_blank" rel="noopener noreferrer">Windows</a>. And obviously being developed by GNU, we are talking about an open-source application.</p>
<h2>Using the Wget Command</h2>
<p>Now we will explain its basic use. Certainly, <strong>wget is very simple to use</strong>. The first thing we need to know is that almost all Linux distributions have it installed by default. But if not, just invoke the package manager of your distribution and install it. I assure you that it will be in the official repositories.</p>
<p>The most basic way to use the command is as follows:</p>
<pre>:~$ wget [file_link]</pre>
<p>This will download the file in the directory where we are.</p>
<p>A huge advantage of wget is that we will be able to download multiple files whose links are in a text file. For example:</p>
<pre>:~$ nano files.txt</pre>
<pre>https://osradar.com/file1.zip

https://osradar.com/file2.tar

https://osradar.com/file3.mp3</pre>
<p>And to make wget able to <strong>download them all simultaneously</strong> just add the option -i and indicate the path of the text file with the links. If the file is in the same directory just put the name.</p>
<pre>:~$ wget -i [text_file_path]</pre>
<h2>More options to use the Wget command</h2>
<p>The option -c it is quite useful. If for any reason the download is interrupted we will be able <strong>to restart it in the size where it has remained</strong>. For example, if we download a 100Mb file and when we had 80Mb downloaded the download is interrupted, we don&#8217;t have to download everything again just run the command again.</p>
<pre>:~$ wget -c [Link]</pre>
<p>As I said before, wget can limit bandwidth usage. We define this with the &#8211;limit-rate option and assign it a value. For example:</p>
<pre>:~$ wget --limit-rate=700K [link]</pre>
<p>With this, the download will not exceed 700K.</p>
<p>If the download requires a password and a user name, we can also specify it:</p>
<pre>:~$ wget --http-user=[user] --http-password=[password] http://osradar.com/hello.mp4</pre>
<p>Obviously hello.mp4 is an example. There you have to put the link of the file.</p>
<p>By default wget makes 20 attempts to establish the connection and start downloading. If your internet connection is bad, you can increase that number with the -t option.</p>
<pre>:~$ wget -t 60 [link]</pre>
<p>Wget also allows download via FTP with the same syntax as above. If you need a password and user, you can specify it as follows:</p>
<pre>:~$ wget --ftp-user=[user] --ftp-password=[password] ftp://osradar.com/example.tar</pre>
<p>Finally it is possible that wget works in the background. For this there is the option -b.</p>
<pre>:~$ wget -b [link]</pre>
<p>It is useful to download big files. It should be noted that all the options mentioned in the post can be used together.</p>
<p>And that is it.</p>
<h2>Conclusion</h2>
<p>Using servers requires knowledge of many different commands. Today you have learned how to use in a basic way the wget command that will allow you to download files to a computer using the terminal. It is also useful if you like to use the terminal or in low resources equipment.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/the-wget-command/">The wget command</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/the-wget-command/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://osradar.com/file3.mp3" length="0" type="audio/mpeg" />
<enclosure url="http://osradar.com/hello.mp4" length="0" type="video/mp4" />

			</item>
		<item>
		<title>How to install Wget in Windows 10</title>
		<link>https://www.osradar.com/how-to-install-wget-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-wget-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Wed, 16 Oct 2019 00:44:06 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[wget]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[wls]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14661</guid>

					<description><![CDATA[<p>Hello, how are you? This time we&#8217;re going to talk about Wget. It is a tool created by the GNU Project. Its main purpose is to get content and files from different web servers. Besides, it supports downloads via FTP, SFTP, HTTP, and HTTPS. Its features include recursive download, conversion of links for offline viewing [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wget-in-windows-10/">How to install Wget in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, how are you? This time we&#8217;re going to talk about <a rel="noreferrer noopener" aria-label="Wget (opens in a new tab)" href="https://www.gnu.org/software/wget/faq.html#What_is_Wget.3F" target="_blank">Wget</a>. It is a tool created by the GNU Project. Its main purpose is to get content and files from different web servers.  Besides, it supports downloads via FTP, SFTP, HTTP, and HTTPS. Its features include recursive download, conversion of links for offline viewing of local HTML, and support for proxies. It is a widely known program in Linux environments, since its appearance in 1996. However, it can also be ported to Windows, where its use is not well known. For that reason, we will see how to install and use Wget in Windows 10.</p>



<h2>Installing Wget in Windows 10</h2>



<p>Wget is a free tool and relatively simple to install in a Linux environment. Just type the appropriate commands to each distribution, and you&#8217;re done. However, when it comes to Windows, the situation changes. There are many installers and options that end up with installation errors.  However, we&#8217;ve got this version that works properly. Go to this link and download version <a href="https://sourceforge.net/projects/gnuwin32/files/wget/" target="_blank" rel="noreferrer noopener" aria-label="1.11.4-1 (opens in a new tab)">1.11.4-1</a></p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="728" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget-1-1024x728.jpg" alt="Download 1.11.4-1 version" class="wp-image-14681" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/10/wget-1-300x213.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget-1-768x546.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/10/wget-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/10/wget-1-696x495.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/10/wget-1-591x420.jpg 591w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption> <em>Download 1.11.4-1 version</em> </figcaption></figure>



<p>Next, we proceed to run the installer. Just double click and the wizard will start, press next to continue:</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget2-1.jpg" alt="Wget setup wizard" class="wp-image-14683" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget2-1.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget2-1-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Wget setup wizard</figcaption></figure>



<p>Then accept the license terms, and click Next to continue the installation.</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget3.jpg" alt="Accept the agreement of license" class="wp-image-14685" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget3.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget3-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Accept the agreement of license</figcaption></figure>



<p>Select the folder where the program will be installed. Click next to continue the installation.</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget4-2.jpg" alt="Select destination location" class="wp-image-14691" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget4-2.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget4-2-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Select destination location</figcaption></figure>



<p>Next, select the components to install. To ensure proper operation, check both boxes and press Next to continue the installation.</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget5-1.jpg" alt="Select the components to install" class="wp-image-14693" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget5-1.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget5-1-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Select the components to install</figcaption></figure>



<p>Next, you can create direct access to the application and its respective location</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget6.jpg" alt="Adding a shortcut folder" class="wp-image-14695" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget6.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget6-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Adding a shortcut folder</figcaption></figure>



<p>You can install additional icons. Click Next to continue</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget7.jpg" alt="Select additional tasks" class="wp-image-14696" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget7.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget7-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Select additional tasks</figcaption></figure>



<p>Verify the installation options and press Install to finish the process.</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget8.jpg" alt="Ready to install" class="wp-image-14697" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget8.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget8-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>Ready to install</figcaption></figure>



<p>Once the installation is finished, we will see the following screen.</p>



<figure class="wp-block-image"><img loading="lazy" width="502" height="388" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget8-1.jpg" alt="successful installation" class="wp-image-14699" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget8-1.jpg 502w, https://www.osradar.com/wp-content/uploads/2019/10/wget8-1-300x232.jpg 300w" sizes="(max-width: 502px) 100vw, 502px" /><figcaption>successful installation</figcaption></figure>



<h2>Using Wget in Windows 10</h2>



<p>Please note that Wget does not have a graphical interface, so you will have to use it through command in the CMD. To check that the program is actually installed, please go to the installation directory. Depending on the installation options selected, it should be as follows:</p>



<pre class="wp-block-preformatted">C:\Program Files (x86)\GnuWin32\bin</pre>



<p>What we need to do is open a command prompt. With this intention, press the Win+R combination and type CMD</p>



<figure class="wp-block-image"><img loading="lazy" width="402" height="208" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget9.jpg" alt="" class="wp-image-14701" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget9.jpg 402w, https://www.osradar.com/wp-content/uploads/2019/10/wget9-300x155.jpg 300w" sizes="(max-width: 402px) 100vw, 402px" /><figcaption>Run a CMD</figcaption></figure>



<p>Once there, use the CD command to navigate to the file location mentioned above. Then type Wget to use the program.</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="728" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget10-1024x728.jpg" alt="Wget in action" class="wp-image-14702" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget10.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/10/wget10-300x213.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget10-768x546.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/10/wget10-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/10/wget10-696x495.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/10/wget10-591x420.jpg 591w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Wget in action</figcaption></figure>



<h2>Add environment variable</h2>



<p>We have correctly installed Wget. However, to be able to use it we always have to navigate to the installation folder of the program. This is cumbersome, so if we want to use Wget from any directory, we need to add an environment variable. With this in mind, please follow this path: Control Panel>System and Security>System>Advanced system settings</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="728" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget11-1024x728.jpg" alt="Enter in Advanced system settings" class="wp-image-14703" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget11.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/10/wget11-300x213.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget11-768x546.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/10/wget11-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/10/wget11-696x495.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/10/wget11-591x420.jpg 591w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Enter in Advanced system settings</figcaption></figure>



<p>On the next screen, choose <strong>Environment Variables</strong></p>



<figure class="wp-block-image"><img loading="lazy" width="412" height="468" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget12.jpg" alt="Select Environment Variables" class="wp-image-14706" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget12.jpg 412w, https://www.osradar.com/wp-content/uploads/2019/10/wget12-264x300.jpg 264w, https://www.osradar.com/wp-content/uploads/2019/10/wget12-370x420.jpg 370w" sizes="(max-width: 412px) 100vw, 412px" /><figcaption>Select Environment Variables</figcaption></figure>



<p>Next, we are going to create a new environment variable. With that intention, please select Path and press Edit.</p>



<figure class="wp-block-image"><img loading="lazy" width="618" height="585" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget13-1.jpg" alt="Creating a new Environment Variable" class="wp-image-14709" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget13-1.jpg 618w, https://www.osradar.com/wp-content/uploads/2019/10/wget13-1-300x284.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget13-1-444x420.jpg 444w" sizes="(max-width: 618px) 100vw, 618px" /><figcaption>Creating a new Environment Variable</figcaption></figure>



<p>On the next screen first select New, then Browse. You must select the address where the program is installed.</p>



<figure class="wp-block-image"><img loading="lazy" width="527" height="501" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget14.jpg" alt="Setting the new path" class="wp-image-14711" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget14.jpg 527w, https://www.osradar.com/wp-content/uploads/2019/10/wget14-300x285.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget14-442x420.jpg 442w" sizes="(max-width: 527px) 100vw, 527px" /><figcaption>Setting the new path</figcaption></figure>



<p>Press ok in each of the open windows, and we can run Wget every time we open a Command Prompt. It doesn&#8217;t matter which directory we&#8217;re in. Let&#8217;s test the Wget command, downloading its executable for windows 10. With this intention, we enter this command in the CMD</p>



<pre class="wp-block-preformatted">wget https://sourceforge.net/projects/gnuwin32/files/wget/1.11.4-1/wget-1.11.4-1-setup.exe/download</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="728" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget15-1024x728.jpg" alt="Wget downloading a file" class="wp-image-14712" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget15.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/10/wget15-300x213.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget15-768x546.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/10/wget15-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/10/wget15-696x495.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/10/wget15-591x420.jpg 591w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Wget downloading a file</figcaption></figure>



<h2>Using Wget in Windows Subsystem for Linux</h2>



<p>We have already seen how to use <a href="https://www.osradar.com/how-to-install-and-use-bash-in-windows-10/" target="_blank" rel="noreferrer noopener" aria-label="bash in windows 10 (opens in a new tab)">bash in windows 10</a>. Through WSL we can also use Wget natively. To do this, we&#8217;ll open ubuntu and run the following command:</p>



<pre class="wp-block-preformatted"> sudo apt-get install wget </pre>



<p>Enter your password, and wait while the program is installed. Now we are ready to use wget in Windows 10.</p>



<figure class="wp-block-image"><img loading="lazy" width="979" height="512" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/wget16.jpg" alt="Wget en WSL" class="wp-image-14713" srcset="https://www.osradar.com/wp-content/uploads/2019/10/wget16.jpg 979w, https://www.osradar.com/wp-content/uploads/2019/10/wget16-300x157.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/10/wget16-768x402.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/10/wget16-696x364.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/10/wget16-803x420.jpg 803w" sizes="(max-width: 979px) 100vw, 979px" /><figcaption>Wget en WSL</figcaption></figure>



<p>Finally, we have seen how to install Wget in Windows 10. We can do it natively or using the Windows Subsystem for Linux. Both methods are valid for using this powerful download tool. Not only will we have access to files, but also to complete pages so that they can run offline. All right, that&#8217;s it for now, if you have any questions, don&#8217;t hesitate to ask. We are here to serve! until next time!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wget-in-windows-10/">How to install Wget in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-wget-in-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
