I'm setting up an offline Ubuntu Repo and I need to download the Ubuntu repo using a windows machine. I have access to WGET.exe . What is the command to do this?
Thanks in Advance.
|
I'm setting up an offline Ubuntu Repo and I need to download the Ubuntu repo using a windows machine. I have access to WGET.exe . What is the command to do this? Thanks in Advance. |
||||
| show 2 more comments |
|
First you should find a fast mirror geographically near you, example se.archive.ubuntu.com (Sweden) or no.archive.ubuntu.com (Norway), just put your country code instead of se or no so you can download fast. Then When you use the --recursive option wget fetches all files and everything in all the subdirectories. However, the Ubuntu package repository is HUGE, so sure you have enough disk space. |
|||||||||
|
wget andtheURLofthefile, i suppose if Wget for windows allows you to put the URL of the files you want to download, well do that. – Uri Herrera Dec 6 '11 at 17:30wget --helporman wgetfor information about wget. The Ubuntu repository is huge, it contains over 55000 packages. You can use the --recursive to download all files in all directories. – Anonymous Dec 6 '11 at 17:42