How to Use the wget Linux Command to Download Web Pages and Files

리눅스 wget으로 사이트 다운로드 (저장)

The wget utility allows you to download web pages, files and images from the web using the Linux command line.

You can use a single wget command on its own to download from a site or set up an input file to download multiple files across multiple sites.

 

According to the manual page wget can be used even when the user has logged out of the system. To do this you would use the nohup command.

 

The wget utility will retry a download even when the connection drops, resuming from where it left off if possible when the connection returns.

You can download entire web sites using wget and convert the links to point to local sources so that you can view a website offline.

 

The features of wget are as follows:

 
  • Download files using HTTP, HTTPS and FTP
  • Resume downloads
  • Convert absolute links in downloaded web pages to relative URLs so that websites can be viewed offline
  • Supports HTTP proxies and cookies
  • Supports persistent HTTP connections
  • Can run in the background even when you aren't logged on
  • Works on Linux and Windows
 

How To Download A Website Using wget

For this guide, you will learn how to download this linux blog.

wget www.everydaylinuxuser.com

 

It is worth creating your own folder on your machine using the mkdir command and then moving into the folder using the cd command.

 

For example:

 

mkdir everydaylinuxuser
cd everydaylinuxuser
wget www.everydaylinuxuser.com

 

The result is a single index.html file. On its own, this file is fairly useless as the content is still pulled from Google and the images and stylesheets are still all held on Google.

 

To download the full site and all the pages you can use the following command:

 

wget -r www.everydaylinuxuser.com

 

This downloads the pages recursively up to a maximum of 5 levels deep.

 

5 levels deep might not be enough to get everything from the site. You can use the -l switch to set the number of levels you wish to go to as follows:

wget -r -l10 www.everydaylinuxuser.com

 

If you want infinite recursion you can use the following:

 

wget -r -l inf www.everydaylinuxuser.com

 

You can also replace the inf with 0 which means the same thing.

 

There is still one more problem. You might get all the pages locally but all the links in the pages still point to their original place. It is therefore not possible to click locally between the links on the pages.

 

You can get around this problem by using the -k switch which converts all the links on the pages to point to their locally downloaded equivalent as follows:

 

wget -r -k www.everydaylinuxuser.com

 

If you want to get a complete mirror of a website you can simply use the following switch which takes away the necessity for using the -r -k and -l switches.

wget -m www.everydaylinuxuser.com

 

Therefore if you have your own website you can make a complete backup using this one simple command.

 

Run wget As A Background Command

You can get wget to run as a background command leaving you able to get on with your work in the terminal window whilst the files download.

 

Simply use the following command:

 

wget -b www.everydaylinuxuser.com

 

You can of course combine switches. To run the wget command in the background whilst mirroring the site you would use the following command:

 

wget -b -m www.everydaylinuxuser.com

 

You can simplify this further as follows:

wget -bm www.everydaylinuxuser.com

 

Logging

If you are running the wget command in the background you won't see any of the normal messages that it sends to the screen.

 

You can get all of those messages sent to a log file so that you can check on progress at any time using the tail command.

 

To output information from the wget command to a log file use the following command:

 

wget -o /path/to/mylogfile www.everydaylinuxuser.com

 

The reverse, of course, is to require no logging at all and no output to the screen. To omit all output use the following command:

 

wget -q www.everydaylinuxuser.com

Download From Multiple Sites

You can set up an input file to download from many different sites.

 

Open up a file using your favorite editor or even the cat command and simply start listing the sites or links to download from on each line of the file.

 

Save the file and then run the following wget command:

 

wget -i /path/to/inputfile

 

Apart from backing up your own website or maybe finding something to download to read on the train, it is unlikely that you will want to download an entire website.

 

You are more likely to download a single URL with images or perhaps download files such as zip files, ISO files or image files.

 

With that in mind you don't want to have to type the following into the input file as it is time consuming:

 
  • http://www.myfileserver.com/file1.zip
  • http://www.myfileserver.com/file2.zip
  • http://www.myfileserver.com/file3.zip
 

If you know the base URL is always going to be the same you can just specify the following in the input file:

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

 
  • file1.zip
  • file2.zip
  • file3.zip
 

You can then provide the base URL as part of the wget command as follows:

 

wget -B http://www.myfileserver.com -i /path/to/inputfile

 

Retry Options

If you have set up a queue of files to download within an input file and you leave your computer running all night to download the files you will be fairly annoyed when you come down in the morning to find that it got stuck on the first file and has been retrying all night.

 

You can specify the number of retries using the following switch:

 

wget -t 10 -i /path/to/inputfile

 

You might wish to use the above command in conjunction with the -T switch which allows you to specify a timeout in seconds as follows:

 

wget -t 10 -T 10 -i /path/to/inputfile

 

The above command will retry 10 times and will try to connect for 10 seconds for each link in the file.

 

It is also fairly annoying when you have partially downloaded 75% of a 4 gigabyte file on a slow broadband connection only for your connection to drop out.

 

You can use wget to retry from where it stopped downloading by using the following command:

 

wget -c www.myfileserver.com/file1.zip

 

If you are hammering a server the host might not like it too much and might either block or just kill your requests.

 

You can specify a wait period which specifies how long to wait between each retrieval as follows:

 

wget -w 60 -i /path/to/inputfile

 

The above command will wait 60 seconds between each download. This is useful if you are downloading lots of files from a single source.

 

Some web hosts might spot the frequency however and will block you anyway. You can make the wait period random to make it look like you aren't using a program as follows:

 

wget --random-wait -i /path/to/inputfile

 

Protecting Download Limits

Many internet service providers still apply download limits for your broadband usage, especially if you live outside of a city.

 

You may want to add a quota so that you don't blow that download limit. You can do that in the following way:

 

wget -q 100m -i /path/to/inputfile

 

Note that the -q command won't work with a single file. So if you download a file that is 2 gigabytes in size, using -q 1000m will not stop the file downloading.

 

The quota is only applied when recursively downloading from a site or when using an input file.

 

Getting Through Security

Some sites require you to log in to be able to access the content you wish to download.

 

You can use the following switches to specify the username and password.

 

wget --user=yourusername --password=yourpassword

 

Note on a multi user system if somebody runs the ps command they will be able to see your username and password.

 

Other Download Options

By default the -r switch will recursively download the content and will create directories as it goes.

 

You can get all the files to download to a single folder using the following switch:

 

wget -nd -r

 

The opposite of this is to force the creation of directories which can be achieved using the following command:

 

wget -x -r

 

How To Download Certain File Types

If you want to download recursively from a site but you only want to download a specific file type such as an mp3 or an image such as a png you can use the following syntax:

 

wget -A "*.mp3" -r

 

The reverse of this is to ignore certain files. Perhaps you don't want to download executables. In this case, you would use the following syntax:

 

wget -R "*.exe" -r

 

Cliget

There is a Firefox add-on called cliget. You can add this to Firefox in the following way.

 

Visit https://addons.mozilla.org/en-US/firefox/addon/cliget/ and click the "add to Firefox" button. 

 

Click the install button when it appears. You will required to restart Firefox.

 

To use cliget visit a page or file you wish to download and right click. A context menu will appear called cliget and there will be options to "copy to wget" and "copy to curl".

 

Click the "copy to wget" option and open a terminal window and then right click and paste. The appropriate wget command will be pasted into the window.

 

Basically, this saves you having to type the command yourself.

 

Summary

The wget command as a huge number of options and switches.

 

It is worth therefore reading the manual page for wget by typing the following into a terminal window:

 

man wget

 

[출처] https://www.lifewire.com/uses-of-command-wget-2201085

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
20 [visual c++] 오류 D8016 '/ZI'과(와) '/Gy-' 명령줄 옵션이 호환되지 않습니다. file 졸리운_곰 2023.11.19 322
19 [visual studio] Bring Your MFC Application to the Web mfc 어플리케인 web 구동 file 졸리운_곰 2023.03.20 279
18 [visual studio] [borland c] Using the WinBGIm Graphics Library with Visual Studio 2005/2008 2010 file 졸리운_곰 2023.02.05 315
17 [Visual Studio][boost c++] [C++] boost 설치 및 visual studio 설정 file 졸리운_곰 2021.11.18 464
16 winbgi Borland Turbo C routines in MS Visual C++ file 졸리운_곰 2017.03.04 290
15 VS 프로젝트 이름 변경 졸리운_곰 2017.02.12 355
14 Retrieving CPU Load Percent total in Windows with C++ 졸리운_곰 2016.12.31 487
13 Cpu 사용율 알아내는 소스 졸리운_곰 2016.12.31 471
12 [MFC] Find local network hosts ip, 로컬네트워크의 IP 주소 알아내기 졸리운_곰 2014.08.27 766
11 (Unicode) CString <==> const char* 졸리운_곰 2014.08.27 640
10 Creating a Child Process with Redirected Input and Output 졸리운_곰 2014.08.17 573
9 C++로 짠 간단한 윈도우 서비스 file 졸리운_곰 2014.05.27 1003
8 VC++ 파일에서 한 라인씩 읽기 졸리운_곰 2014.03.02 1199
7 Search Title Of Opened Windows file 졸리운_곰 2014.02.27 978
6 MFC VC++ 파일의 존재유무 체크 졸리운_곰 2014.02.18 1587
5 MFC VC++ : windows tcpip socket Send() function example 졸리운_곰 2014.02.18 1593
4 Check whether one specific process is running on windows with C++ 졸리운_곰 2014.02.18 1099
3 VC++ : Win32 console App run as to be hide (background) 졸리운_곰 2014.02.18 1245
2 VC++ : Win32 console App run as to be hide (background) 졸리운_곰 2014.02.18 1256
1 VC++ : windows : TCPIP SOCKET SERVER and CLIENT 졸리운_곰 2014.02.18 1097
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED