当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > Downloading ISO's from internet

Unix/Linux
Linux [系统管理命令中文详解][转]
C++
11次编译的结果
LVM2+ReiserFS使用小记(转载)
下面说一下如何扩充,删除,管理LVM
VFS虚拟文件系统
freeswan 文档摘录
重新安装Gcc
发布名一个目录并添加认证
检测程序运行的命令
linux进程调度方法
新手日记(待续)
让拥有AMD处理器的本本在linux下支持 PowerNow!技术
FC3,RHEL4中挂载有中文的U盘,移动硬盘
互斥型信号量和二进制信号量
fcitx输入法快速安装
xmms1.2.10版 + MP3播放 + WMA播放 + 不完善中文显示
qmail+maildrop对单个用户的来信进行过滤
干吗还用 7.2 ?
心情小笔

Unix/Linux 中的 Downloading ISO's from internet


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 88 ::
收藏到网摘: n/a


命令行的,先记下来。
在网上看到,小改了一下。:)
It is recommended that you use curl to download the ISO images from internet.To use curl, at a shell prompt, cut and paste the URL for the ISO into the curl command as follows:code: [GS@localhost os]$ curl -C - -O 'url_for_ISO'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 server.You may also use wget to obtain the ISO files. To use wget, at a shell prompt, cut and paste the URL for the ISO into the wget command as follows:code: [GS@localhost os]$ wget -c 'url_for_ISO'Make sure to check the md5 hash of each file you download download via LQ ISO against the one listed on the site. If the md5's do not match, you should try to download the file again, possibly from a different mirror. To get the md5 hash of a file after you have downloaded it, use the following command:code: [GS@localhost os]$ md5sum filename.isoIf you are using Windows you can use MD5summer to get the md5sum of a file