shell版按任意键继续

Posted by 4Aiur on 04/14/2010 in Shell with Comments closed |

按任意键继续的shell写法

read -sn1 -p "Press any key to continue..."; echo

Tags:

清除本机dns缓存的方法

Posted by 4Aiur on 04/06/2010 in MacOSX, SysAdmin with Comments closed |

清除本机dns缓存的方法

Windows下使用ipconfig/release, ipconfig/renew命令

Mac OS X使用dscacheutil -flushcache命令

Tags:

制作jdk1.6rpm包

Posted by 4Aiur on 04/06/2010 in Linux with Comments closed |

制作jdk1.6rpm包

制作rpm包的几个步骤:

  • 制作Makefile
  • 生成jdk压缩包
  • 生成build rpm使用的spec文件
  • 生成rpm包

1) 制作Makefile

[root@localhost foo]# cat Makefile
# Makefile
all:
    @echo Make jdk-1.6.0_08-fcs
    @echo Java(TM) Platform Standard Edition Development Kitinstall:
    mkdir -p /usr/java/ tar -zxf jdk1.6.0_18.tar.gz -C /usr/java
    cp -pf /etc/profile /etc/profile.save if ! grep JAVA_HOME /etc/profile >/dev/null 2>&1 ; then\
        echo 'export JAVA_HOME=/usr/java/jdk1.6.0_18/' >> /etc/profile; \ echo 'export PATH=$$PATH:/usr/java/jdk1.6.0_18/bin' >> /etc/profile; \
        echo 'export CLASSPATH=.:$$JAVA_HOME/lib:$$JRE_HOME/lib:$$CLASSPATH' >> /etc/profile; \ fi

uninstall:
    rm -rf /usr/java/jdk1.6.0_18/

clean:
    # Nope.

注意事项Makefile中的命令需要以tab开头,不要使用空格。

2) 生成jdk压缩包下载jdk安装包后,从bin中提取jdk文件

export MORE=10000
sh jdk-6u18-linux-i586.bin /dev/null
yes
EOF

把源文件压缩为jdk1.6.0_18.tar.gzMakefile存放到jdk6u18目录中
压缩jdk6u18目录为jdk6u18.tar.gz存放jdk6u18.tar.gz到/usr/src/redhat/SOURCES

3) 生成build rpm使用的spec文件

[root@localhost SPECS]# cat jdk1.6.0_18.spec
# Build RPMSummary: Java(TM) Platform Standard Edition Development Kit

Name: jdk-1.6.0_08-fcs

Version: 1.6.0_08

Release: fcs

Vendor: Sun Microsystems, Inc.

Packager: 4Aiur

License: Sun Microsystems Binary Code License (BCL)

URL: http://java.sun.com/

Group: Development/Tools

Source0: jdk6u18.tar.gz

#Autoreq: 0

%description

The Java Platform Standard Edition Development Kit (JDK) includes boththe runtime environment (Java virtual machine, the Java platform classes
and supporting files) and development tools (compilers, debuggers,tool libraries and other tools).

The JDK is a development environment for building applications, appletsand components that can be deployed with the Java Platform Standard
Edition Runtime Environment.

%prep

tar xzvf $RPM_SOURCE_DIR/jdk6u18.tar.gz -C $RPM_BUILD_DIR/

# Avoid RPM 4.2+'s internal dep generator, it may produce bogus# Provides/Requires here.
%define _use_internal_dependency_generator 0

# this will be our replacement for find_requires%define toplevel_dir jdk6u18
%define our_find_requires %{_builddir}/%{toplevel_dir}/find_requires#%define our_find_requires %{_builddir}/jdk6u18/find_requires

# This prevents aggressive stripping.%define debug_package %{nil}

# Kludge to remove bogus odbc dependenciescat %{our_find_requires}
#!/bin/shecho unixODBC
exec %{__find_requires} | /bin/egrep -v '^(libodbc(inst)?\.so)$'exit 0
EOFchmod +x %{our_find_requires}
%define __find_requires %{our_find_requires}

%build

cd $RPM_BUILD_DIR/jdk6u18

make

%install

cd $RPM_BUILD_DIR/jdk6u18

make install

%clean

rm -fr $RPM_BUILD_DIR/jdk6u18

%files

%defattr(-,root,root)/usr/java/jdk1.6.0_18/

%changelog* Fri Mar 24 2010 -- 4aiur
-- Create paceage

[root@localhost SPECS]#

注意事项

取消odbc依赖关系的两种方法

  • spec中加入,禁止rpmbuild自动查找依赖关系 #Autoreq: 0
  • 过滤__find_requires中的odbc输出

4) 生成rpm包

[root@localhost SPECS]# rpmbuild -bb jdk1.6.0_18.spec

5) 其它相关信息:

获取rpm中的文件

[root@localhost foo]# rpm2cpio logrotate-1.0-1.i386.rpm > logrotate.cpio
[root@localhost foo]# cpio -idmv logrotate.cpio

安装官方jdk的方法

安装jdk时,设置more读取文件的行数位10000,并使用yes命令自动回答安装程序。

export MORE=10000
sh jdk-6u18-linux-i586.bin /dev/null
yes
EOF

rpmbuild相关内容

  • rpmbuild使用的库文件所在目录: /usr/lib/rpm
  • 查看rpmbuild的变量
    [root@localhost foo]# rpm --eval "%__find_requires"
    /usr/lib/rpm/redhat/find-requires
  • rpmbuild中使用的宏文件应位于上一文件的相同目录的macros
    [root@localhost foo]# ll /usr/lib/rpm/redhat/macros
    -rw-r--r-- 1 root root 8845 Sep 29 07:51 /usr/lib/rpm/redhat/macros
  • 只生成二进制格式的rpm包
    [root@localhost foo]# rpmbuild -bb xxx.spec
  • 完全打包
    [root@localhost foo]# rpmbuild -ba xxx.spec

rpm相关

  • 测试rpm包
    [root@localhost foo]# rpm --test -ivh /usr/src/redhat/RPMS/i386/jdk-1.6.0_08-fcs-1.6.0_08-fcs.i386.rpm
  • 查看rpm包信息
    [root@localhost foo]# rpm -qip /usr/src/redhat/RPMS/i386/jdk-1.6.0_08-fcs-1.6.0_08-fcs.i386.rpm
  • 查看rpm包文件列表
    [root@localhost foo]# rpm -qlp /usr/src/redhat/RPMS/i386/jdk-1.6.0_08-fcs-1.6.0_08-fcs.i386.rpm

build rpm的资源

查找rpm资源的地址: http://dries.ulyssis.org/rpm/
可以在这里找到很多编译rpm包的spec源文件。
可以借鉴其它的spec文件来编写自己的spec文件

Tags: ,

创建本地yum源服务器

Posted by 4Aiur on 04/06/2010 in Linux with Comments closed |

创建本地yum源服务器

# 安装createrepo包
[root@localhost centos]# yum -y install createrepo
[root@localhost centos]# cat update.sh 
#!/bin/bash
# set -x

rsync --progress -rvu -lptD --exclude="isos/" --exclude="SRPMS/" --exclude="x86_64" rsync://rsync.kddilabs.jp/centos/5.4/ mirror/
createrepo -v --update mirror/myapp/i386/

# 同步本地yum库
[root@localhost centos]# ./update.sh

生成yum配置文件提供客户端使用

[root@localhost foo]# cat myyumsource.repo
# log.repo
[myapp]
name=CentOS-$releasever - myapp
baseurl=http://192.168.3.63:9999/mirror/myapp/i386/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

[base]
name=CentOS-$releasever - Base
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
baseurl=http://192.168.3.63:9999/mirror/os/i386/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#released updates 
[updates]
name=CentOS-$releasever - Updates
baseurl=http://192.168.3.63:9999/mirror/updates/i386
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
baseurl=http://192.168.3.63:9999/mirror/addons/i386
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=http://192.168.3.63:9999/mirror/extras/i386
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=http://192.168.3.63:9999/mirror/centosplus/i386
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
baseurl=http://192.168.3.63:9999/mirror/contrib/i386
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

yum客户端常用命令

yum update # 升级本地程序
yum install # 使用rpm安装软件
yum clean all # 清除yum缓存在本地的文件,当yum发生问题时可以尝试使用clean来清理掉本地缓存中的文件

查找rpm资源的地址:http://dries.ulyssis.org/rpm/
可以在这里找到很多编译rpm包的spec源文件。
可以借鉴其它的spec文件来编写自己的spec文件

Tags: ,

防止Mac Os X使用dhcp时修改hostname的方法

Posted by 4Aiur on 04/06/2010 in MacOSX with Comments closed |

防止Mac Os X使用dhcp时修改hostname的方法

在/etc/hostconfig中增加HOSTNAME项,这样可以阻止使用dhcp时,hostname经常被更改的问题。

使用命令行的方式修改

scutil --set HostName new_hostname
sudo hostname new_hostname

或者直接编辑配置文件

udo vi /etc/hostconfig
HOSTNAME=4Aiur

在桌面上修改hostname的方法:

  1. Launch ‘System Preferences’
  2. Click the ‘Sharing’ icon
  3. Type in what you want your Mac’s new computer name to be

Tags: ,

关于apache日志中的sc-bytes

Posted by 4Aiur on 04/06/2010 in SysAdmin with Comments closed |

关于apache日志中的sc-bytes

apache官方manual中描述的%b字段应该是服务器端发送到客户端的字节数,今天做了一个测试发现写入到日志中的bytes并不是真正的sc-bytes,而是response中的Content-Length。

手册中的描述如下:
%b Size of response in bytes, excluding HTTP headers. In CLF format, i.e. a ‘-‘ rather than a 0 when no bytes are sent.

测试方法如下:服务器端生成一个大文件

# dd if=/dev/zero of=foo bs=1M count=300300+0 records in
300+0 records out# ll -h foo
-rw-r--r-- 1 root root 300M Mar 22 17:36 foo

客户段使用wget抓取这个文件,使用参数-d来查看详细情况。在wget开始抓取文件后,停止wget运行,查看文件大小是2.5M,而apache的日志中的sc-bytes记录的值确是314572800。
结论:使用apache的日志计算流量,结果将不准确。

[root@host ~]# wget -d http://*.*.*.*/fooDEBUG output created by Wget 1.10.2 (Red Hat modified) on linux-gnu.

--18:01:20-- http://*.*.*.*/foo => 'foo'
Connecting to *.*.*.*:80… connected.Created socket 3.
Releasing 0x09c85bc8 (new refcount 0).Deleting unused 0x09c85bc8.

—request begin—GET /foo HTTP/1.0
User-Agent: Wget/1.10.2 (Red Hat modified)Accept: */*
Host: *.*.*.*Connection: Keep-Alive

—request end—HTTP request sent, awaiting response…
—response begin—HTTP/1.1 200 OK
Date: Mon, 22 Mar 2010 09:48:30 GMTServer: Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.7a
Last-Modified: Mon, 22 Mar 2010 09:36:47 GMTETag: "3e88e1-12c00000-482606f8fa9c0"
Accept-Ranges: bytesContent-Length: 314572800
Keep-Alive: timeout=5, max=100Connection: Keep-Alive
Content-Type: text/plain

—response end—200 OK
Registered socket 3 for persistent reuse.Length: 314,572,800 (300M) [text/plain]

0% [ ] 2,303,436 832.01K/s
[root@host ~]# ll -h foo
-rw-r--r-- 1 root root 2.5M Mar 22 18:01 foo
[root@host ~]# \rm foo

# tail -f access_log | grep foo
*.*.*.* - - [22/Mar/2010:17:48:30 +0800] "GET /foo HTTP/1.0" 200 314572800 "-" "Wget/1.10.2 (Red Hat modified)"

Tags: ,

python2.5.4 httplib timeout patch

Posted by 4Aiur on 04/06/2010 in Python with Comments closed |

python2.5.4 httplib timeout patch

632c632
     def __init__(self, host, port=None, strict=None):
643,644d642

Tags: ,

使用python发送带附件的邮件

Posted by 4Aiur on 04/06/2010 in Python with Comments closed |

使用python发送带附件的邮件

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import utils, encoders
import mimetypes, sys
import smtplib
import re
import datetime

def attachment(filename):
    fd = open(filename, "rb")
    mimetype, mimeencoding = mimetypes.guess_type(filename)
    if mimeencoding or (mimetype is None):
        mimetype = "application/octet-stream"
    maintype, subtype = mimetype.split("/")
    if maintype == "text":
        retval = MIMEText(fd.read(), _subtype=subtype)
    else:
        retval = MIMEBase(maintype, subtype)
        retval.set_payload(fd.read())
        encoders.encode_base64(retval)
    retval.add_header("Content-Disposition", "attachment", filename = filename)
    fd.close()
    return retval

today = datetime.date.today()
yesterday = today - datetime.timedelta(days=1)

message = """Hello,

today: %s

yesterday: %s

""" %(today, yesterday)

msg = MIMEMultipart()
msg["To"] = "foo@example.com, bar@example.com"
msg["From"] = "foo_bar@example.com"
msg["Subject"] = "MySubject"
msg["Date"] = utils.formatdate(localtime = 1)
msg["Message-ID"] = utils.make_msgid()

body = MIMEText(message, _subtype="plain")
msg.attach(body)
for filename in sys.argv[1:]:
    msg.attach(attachment(filename))
#print msg.as_string()

# Send mail
smtp = smtplib.SMTP()
#smtp.set_debuglevel(1)
smtp.connect("mail.example.com")
smtp.ehlo()
#smtp.login("user", "password")
To = re.split(r", *", msg["To"])
smtp.sendmail(msg["From"], To, msg.as_string())
smtp.quit()

Tags: ,

wget中文帮助

Posted by 4Aiur on 04/06/2010 in Shell with Comments closed |

wget help

[mlf4aiur@4aiur ~]$ wget --help
GNU Wget 1.13.4,非交互式的网络文件下载工具。
用法: wget [选项]... [URL]...

长选项所必须的参数在使用短选项时也是必须的。

启动:
  -V,  --version           显示 Wget 的版本信息并退出。
  -h,  --help              打印此帮助。
  -b,  --background        启动后转入后台。
  -e,  --execute=COMMAND   运行一个“.wgetrc”风格的命令。

日志和输入文件:
  -o,  --output-file=FILE    将日志信息写入 FILE。
  -a,  --append-output=FILE  将信息添加至 FILE。
  -d,  --debug               打印大量调试信息。
  -q,  --quiet               安静模式 (无信息输出)。
  -v,  --verbose             详尽的输出 (此为默认值)。
  -nv, --no-verbose          关闭详尽输出,但不进入安静模式。
  -i,  --input-file=FILE     下载本地或外部 FILE 中的 URLs。
  -F,  --force-html          把输入文件当成 HTML 文件。
  -B,  --base=URL            解析与 URL 相关的
                             HTML 输入文件 (由 -i -F 选项指定)。
       --config=FILE         Specify config file to use.

下载:
  -t,  --tries=NUMBER            设置重试次数为 NUMBER (0 代表无限制)。
       --retry-connrefused       即使拒绝连接也是重试。
  -O,  --output-document=FILE    将文档写入 FILE。
  -nc, --no-clobber              skip downloads that would download to
                                 existing files (overwriting them).
  -c,  --continue                断点续传下载文件。
       --progress=TYPE           选择进度条类型。
  -N,  --timestamping            只获取比本地文件新的文件。
  --no-use-server-timestamps     不用服务器上的时间戳来设置本地文件。
  -S,  --server-response         打印服务器响应。
       --spider                  不下载任何文件。
  -T,  --timeout=SECONDS         将所有超时设为 SECONDS 秒。
       --dns-timeout=SECS        设置 DNS 查寻超时为 SECS 秒。
       --connect-timeout=SECS    设置连接超时为 SECS 秒。
       --read-timeout=SECS       设置读取超时为 SECS 秒。
  -w,  --wait=SECONDS            等待间隔为 SECONDS 秒。
       --waitretry=SECONDS       在获取文件的重试期间等待 1..SECONDS 秒。
       --random-wait             获取多个文件时,每次随机等待间隔
                                 0.5*WAIT...1.5*WAIT 秒。
       --no-proxy                禁止使用代理。
  -Q,  --quota=NUMBER            设置获取配额为 NUMBER 字节。
       --bind-address=ADDRESS    绑定至本地主机上的 ADDRESS (主机名或是 IP)。
       --limit-rate=RATE         限制下载速率为 RATE。
       --no-dns-cache            关闭 DNS 查寻缓存。
       --restrict-file-names=OS  限定文件名中的字符为 OS 允许的字符。
       --ignore-case             匹配文件/目录时忽略大小写。
  -4,  --inet4-only              仅连接至 IPv4 地址。
  -6,  --inet6-only              仅连接至 IPv6 地址。
       --prefer-family=FAMILY    首先连接至指定协议的地址
                                 FAMILY 为 IPv6,IPv4 或是 none。
       --user=USER               将 ftp 和 http 的用户名均设置为 USER。
       --password=PASS           将 ftp 和 http 的密码均设置为 PASS。
       --ask-password            提示输入密码。
       --no-iri                  关闭 IRI 支持。
       --local-encoding=ENC      IRI (国际化资源标识符) 使用 ENC 作为本地编码。
       --remote-encoding=ENC     使用 ENC 作为默认远程编码。
       --unlink                  remove file before clobber.

目录:
  -nd, --no-directories           不创建目录。
  -x,  --force-directories        强制创建目录。
  -nH, --no-host-directories      不要创建主目录。
       --protocol-directories     在目录中使用协议名称。
  -P,  --directory-prefix=PREFIX  以 PREFIX/... 保存文件
       --cut-dirs=NUMBER          忽略远程目录中 NUMBER 个目录层。

HTTP 选项:
       --http-user=USER        设置 http 用户名为 USER。
       --http-password=PASS    设置 http 密码为 PASS。
       --no-cache              不在服务器上缓存数据。
       --default-page=NAME     改变默认页
                               (默认页通常是“index.html”)。
  -E,  --adjust-extension      以合适的扩展名保存 HTML/CSS 文档。
       --ignore-length         忽略头部的‘Content-Length’区域。
       --header=STRING         在头部插入 STRING。
       --max-redirect          每页所允许的最大重定向。
       --proxy-user=USER       使用 USER 作为代理用户名。
       --proxy-password=PASS   使用 PASS 作为代理密码。
       --referer=URL           在 HTTP 请求头包含‘Referer: URL’。
       --save-headers          将 HTTP 头保存至文件。
  -U,  --user-agent=AGENT      标识为 AGENT 而不是 Wget/VERSION。
       --no-http-keep-alive    禁用 HTTP keep-alive (永久连接)。
       --no-cookies            不使用 cookies。
       --load-cookies=FILE     会话开始前从 FILE 中载入 cookies。
       --save-cookies=FILE     会话结束后保存 cookies 至 FILE。
       --keep-session-cookies  载入并保存会话 (非永久) cookies。
       --post-data=STRING      使用 POST 方式;把 STRING 作为数据发送。
       --post-file=FILE        使用 POST 方式;发送 FILE 内容。
       --content-disposition   当选中本地文件名时
                               允许 Content-Disposition 头部 (尚在实验)。
       --auth-no-challenge     发送不含服务器询问的首次等待
                               的基本 HTTP 验证信息。

HTTPS (SSL/TLS) 选项:
       --secure-protocol=PR     选择安全协议,可以是 auto、SSLv2、
                                SSLv3 或是 TLSv1 中的一个。
       --no-check-certificate   不要验证服务器的证书。
       --certificate=FILE       客户端证书文件。
       --certificate-type=TYPE  客户端证书类型,PEM 或 DER。
       --private-key=FILE       私钥文件。
       --private-key-type=TYPE  私钥文件类型,PEM 或 DER。
       --ca-certificate=FILE    带有一组 CA 认证的文件。
       --ca-directory=DIR       保存 CA 认证的哈希列表的目录。
       --random-file=FILE       带有生成 SSL PRNG 的随机数据的文件。
       --egd-file=FILE          用于命名带有随机数据的 EGD 套接字的文件。

FTP 选项:
       --ftp-user=USER         设置 ftp 用户名为 USER。
       --ftp-password=PASS     设置 ftp 密码为 PASS。
       --no-remove-listing     不要删除‘.listing’文件。
       --no-glob               不在 FTP 文件名中使用通配符展开。
       --no-passive-ftp        禁用“passive”传输模式。
       --retr-symlinks         递归目录时,获取链接的文件 (而非目录)。

递归下载:
  -r,  --recursive          指定递归下载。
  -l,  --level=NUMBER       最大递归深度 (inf 或 0 代表无限制,即全部下载)。
       --delete-after       下载完成后删除本地文件。
  -k,  --convert-links      让下载得到的 HTML 或 CSS 中的链接指向本地文件。
  -K,  --backup-converted   在转换文件 X 前先将它备份为 X.orig。
  -m,  --mirror             -N -r -l inf --no-remove-listing 的缩写形式。
  -p,  --page-requisites    下载所有用于显示 HTML 页面的图片之类的元素。
       --strict-comments    用严格方式 (SGML) 处理 HTML 注释。

递归接受/拒绝:
  -A,  --accept=LIST               逗号分隔的可接受的扩展名列表。
  -R,  --reject=LIST               逗号分隔的要拒绝的扩展名列表。
  -D,  --domains=LIST              逗号分隔的可接受的域列表。
       --exclude-domains=LIST      逗号分隔的要拒绝的域列表。
       --follow-ftp                跟踪 HTML 文档中的 FTP 链接。
       --follow-tags=LIST          逗号分隔的跟踪的 HTML 标识列表。
       --ignore-tags=LIST          逗号分隔的忽略的 HTML 标识列表。
  -H,  --span-hosts                递归时转向外部主机。
  -L,  --relative                  只跟踪有关系的链接。
  -I,  --include-directories=LIST  允许目录的列表。
  --trust-server-names             use the name specified by the redirection
                                   url last component.
  -X,  --exclude-directories=LIST  排除目录的列表。
  -np, --no-parent                 不追溯至父目录。

请将错误报告或建议寄给 。
[mlf4aiur@4aiur ~]$ 

Tags:

转换txt文件的字符编码

Posted by 4Aiur on 04/06/2010 in Shell with Comments closed |

转换txt文件的字符编码

find . -type f -name "*.txt" |\
while read line
do
   if iconv -f GB2312 -t UTF-8 "$line" > /tmp/foo; then
       mv /tmp/foo "$line"
   else
       :
   fi
done

Tags:

Copyright © 2010-2024 4Aiur All rights reserved.
This site is using the Desk Mess Mirrored theme, v2.5, from BuyNowShop.com.