- 论坛徽章:
- 0
|
官方建议用wget/curl下
我这里也只有50k的速度,我尝试了官方的建议工具下载中,好象挺稳定的:
如下:
It is recommended that you use curl to download the ISO images. If you use RHN and don't currently have curl, you may install it by running the command "up2date curl" from a shell prompt.
Once curl is installed, at a shell prompt, cut and paste the URL for the ISO into the curl command as follows:
[user@localhost home]$ curl -C - -O 'very_long_url'
Use the following curl command to save the ISO as 'myfilename.iso':
[user@localhost home]$ curl -C - -o 'myfilename.iso' 'very_long_url'
The URL is very long because it contains session authentication information. Be sure to include the single quotation marks. The '-C -' option allows you to continue the download if it is interrupted (for example, in case you lose the connection). The '-O' (the letter 'O', not a zero) option will save the file with same name as on the RHN servers.
You may also use wget to obtain the ISO files. If you use RHN and don't currently have wget, you may install it by running "up2date wget" from your command line.
Once wget is installed, at a shell prompt, cut and paste the URL for the ISO into the wget command as follows:
[user@localhost home]$ wget -c 'very_long_url'
For more information on how to use Red Hat ISOs, check the How To Download page. |
|