Downloading the entire website is very simple using wget. Just follow these few steps.
1) Make a directory – It can be any name you want.(i will name this as my_blog)
1 |
mkdir my_blog |
2) Navigate to that directory
1 |
cd my_blog/ |
3) Run the below code
1 |
wget --limit-rate=200k --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla http://www.sathyabaman.com |
Thats it……..
If you want to run this in a background
1 |
nohup wget --limit-rate=200k --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla http://www.sathyabaman.com & |
then run
1 |
tail -f nohup.out |
Note: This feature will not work on high secured websites.