当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪wget下载文件时重命名的方法      wget下载时,可以将文件重命名: 代码如下: wget -c "www." -O xxx.index.html 如果还希望保存输出日志,则可以使用: 代码如下: wget -c "www." -O xxx.index.html -o wget.log 注意: 第一个“O”为大写的o, .........
    ▪Curl http_code 状态码      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 Proto.........
    ▪linux下的网络流量工具Iftop          Iftop工具,主要用来显示本机网络流量情况及各相互通信的流量集合,如单独同那台机器间的流量大小,非常适合于代理服务器和iptables服务器使用,这样可以方便的查看各客户端流量情.........

[1]wget下载文件时重命名的方法
    来源: 互联网  发布时间: 2013-12-24

wget下载时,可以将文件重命名:

代码如下:
wget -c "www." -O xxx.index.html

如果还希望保存输出日志,则可以使用:

代码如下:
wget -c "www." -O xxx.index.html -o wget.log

注意:
第一个“O”为大写的o,
第二个“o”,为小写的o

另外,选项 -c : 支持断点续传。


    
[2]Curl http_code 状态码
    来源: 互联网  发布时间: 2013-12-24

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”;


    
[3]linux下的网络流量工具Iftop
    来源: 互联网  发布时间: 2013-12-24

    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

代码如下:
tar zvfx iftop-0.16.tar.gz
cd iftop-0.16
./configure --prefix=/usr/local/iftop
make && make install
cp /usr/local/iftop/sbin/iftop /bin

3. 运行iftop(必须以root身份)

代码如下:
iftop -i eth0 -n

详细用法,大家多多研究哦。


    
最新技术文章:
▪linux系统中的列出敏感用户的脚本代码
▪a10 config backup for aXAPI
▪一键备份gitolite服务器的Shell脚本
▪nagios 分发文件实现代码
▪阿里云云服务器Linux系统更新yum源Shell脚本
▪一个监控LINUX目录和文件变化的Shell脚本分享
▪Linux下实现SSH免密码登录和实现秘钥的管理、...
▪Shell正则表达式之grep、sed、awk实操笔记
▪3个备份系统文件并邮件发送的Shell脚本分享
▪CentOS 6.3下给PHP添加mssql扩展模块教程
▪监控网站是否可以正常打开的Shell脚本分享
▪shell脚本编程之if语句学习笔记
▪shell脚本编程之循环语句学习笔记
▪shell脚本编程之case语句学习笔记
▪Shell脚本实现的阳历转农历代码分享
▪Shell脚本实现复制文件到多台服务器的代码分...
▪Shell脚本实现批量下载网络图片代码分享
▪Shell脚本实现检测文件是否被修改过代码分享
▪Shell脚本数组用法小结
▪Shell脚本批量重命名文件后缀的3种实现
▪C语言实现的ls命令源码分享
▪Linux下查找后门程序 CentOS 查后门程序的shell脚...
▪Shell 函数参数
▪linux shell 自定义函数方法(定义、返回值、变...
▪Shell实现判断进程是否存在并重新启动脚本分...
▪Shell脚本break和continue命令简明教程
▪Shell脚本函数定义和函数参数
▪让代码整洁、过程清晰的BASH Shell编程技巧
▪shell常用重定向实例讲解
▪awk中RS、ORS、FS、OFS的区别和联系小结
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3