If you are a Windows user, you probably know about Teleport to download or create a copy of a website on your hard-disk
What about on Linux? Well, you have another alternative powerful option: using wget
- To mirror your website:
wget--convert-links-r http://www.yoursite.com
- To download specific file types:
wget –accept=.html,.doc,.docx,.pdf,.xls,.xlsx,.ppt,.pptx –recursive –no-clobber –page-requisites –convert-links –restrict-file-names=windows –domains yoursite.com –no-parent http://yoursite.com/path
Is there any better alternatives? Please share with me.

