wget下载时,可以将文件重命名:
如果还希望保存输出日志,则可以使用:
注意:
第一个“O”为大写的o,
第二个“o”,为小写的o
另外,选项 -c : 支持断点续传。
curl命令示例:
curl -I -m 10 -o /dev/null -s -w %{http_code} http://test.com
curl爬取过程中,会返回一个http_code。
相关解释:
$http_code["0"]="Unable to access";
$http_code["100"]="Continue";
$http_code["101"]="Switching Protocols";
$http_code["200"]=”OK”;
$http_code["201"]=”Created”;
$http_code["202"]=”Accepted”;
$http_code["203"]=”Non-Authoritative Information”;
$http_code["204"]=”No Content”;
$http_code["205"]=”Reset Content”;
$http_code["206"]=”Partial Content”;
$http_code["300"]=”Multiple Choices”;
$http_code["301"]=”Moved Permanently”;
$http_code["302"]=”Found”;
$http_code["303"]=”See Other”;
$http_code["304"]=”Not Modified”;
$http_code["305"]=”Use Proxy”;
$http_code["306"]=”(Unused)”;
$http_code["307"]=”Temporary Redirect”;
$http_code["400"]=”Bad Request”;
$http_code["401"]=”Unauthorized”;
$http_code["402"]=”Payment Required”;
$http_code["403"]=”Forbidden”;
$http_code["404"]=”Not Found”;
$http_code["405"]=”Method Not Allowed”;
$http_code["406"]=”Not Acceptable”;
$http_code["407"]=”Proxy Authentication Required”;
$http_code["408"]=”Request Timeout”;
$http_code["409"]=”Conflict”;
$http_code["410"]=”Gone”;
$http_code["411"]=”Length Required”;
$http_code["412"]=”Precondition Failed”;
$http_code["413"]=”Request Entity Too Large”;
$http_code["414"]=”Request-URI Too Long”;
$http_code["415"]=”Unsupported Media Type”;
$http_code["416"]=”Requested Range Not Satisfiable”;
$http_code["417"]=”Expectation Failed”;
$http_code["500"]=”Internal Server Error”;
$http_code["501"]=”Not Implemented”;
$http_code["502"]=”Bad Gateway”;
$http_code["503"]=”Service Unavailable”;
$http_code["504"]=”Gateway Timeout”;
$http_code["505"]=”HTTP Version Not Supported”;
Iftop工具,主要用来显示本机网络流量情况及各相互通信的流量集合,如单独同那台机器间的流量大小,非常适合于代理服务器和iptables服务器使用,这样可以方便的查看各客户端流量情况。
以下是该软件的安装与配置步骤,供大家参考。
1. 安装相关软件 libpcap 及 ncurses-devel
[root@centos1 sbin]# rpm -qa | grep libpcap yum list|grep libpcap
libpcap-0.9.4-12.el5
libpcap-devel-0.9.4-12.el5
[root@centos1 sbin]# rpm -qa | grep ncurses yum list|grep ncurses
ncurses-devel-5.5-24.20060715
ncurses-5.5-24.20060715
2. 下载并安装iftop软件
文件下载路径 http://download.chinaunix.net/search/?q=iftop&frmid=0
cd iftop-0.16
./configure --prefix=/usr/local/iftop
make && make install
cp /usr/local/iftop/sbin/iftop /bin
3. 运行iftop(必须以root身份)
详细用法,大家多多研究哦。