Saturday, September 30, 2006

读书计划: Applying UML and Pattern

VOCABULARY
=====================
OCL : Object Contraint Language, one specification of UML
R&D : Research and Development
SSD : System Sequence Diagram
LRG : low representational gap
GRASP: General Responsibility Assignment Software Principle
DCD : Design Class Diagram

Read Log
=====================
[ 2006/10/08 ]
- Coupling Level
  • TypeX has an attribute (data member or instance variable) that refers to a TypeY instance, or TypeY itself.

  • A TypeX object calls on services of a TypeY object.

  • TypeX has a method that references an instance of TypeY, or TypeY itself, by any means. These typically include a parameter or local variable of type TypeY, or the object returned from a message being an instance of TypeY.

  • TypeX is a direct or indirect subclass of TypeY.

  • TypeY is an interface, and TypeX implements that interface

[ 2006/10/09 ]
- Cohesion Level
  1. Very low cohesion A class is solely responsible for many things in very different functional areas.

    • Assume the existence of a class called RDB-RPC-Interface which is completely responsible for interacting with relational databases and for handling remote procedure calls. These are two vastly different functional areas, and each requires lots of supporting code. The responsibilities should be split into a family of classes related to RDB access and a family related to RPC support.

  2. Low cohesion A class has sole responsibility for a complex task in one functional area.

    • Assume the existence of a class called RDBInterface which is completely responsible for interacting with relational databases. The methods of the class are all related, but there are lots of them, and a tremendous amount of supporting code; there may be hundreds or thousands of methods. The class should split into a family of lightweight classes sharing the work to provide RDB access.

  3. High cohesion A class has moderate responsibilities in one functional area and collaborates with other classes to fulfill tasks.

    • Assume the existence of a class called RDBInterface that is only partially responsible for interacting with relational databases. It interacts with a dozen other classes related to RDB access in order to retrieve and save objects.

  4. Moderate cohesion A class has lightweight and sole responsibilities in a few different areas that are logically related to the class concept but not to each other.

    • Assume the existence of a class called Company that is completely responsible for (a) knowing its employees and (b) knowing its financial information. These two areas are not strongly related to each other, although both are logically related to the concept of a company. In addition, the total number of public methods is small, as is the amount of supporting code.

UBUNTU的多媒体设置

作者:Karron Qiu
主页:http://karronqiu.googlepages.com
BLOG:http://spaces.msn.com/karronqiu
keyword:ubuntu dapper multimedia w32codes gstreamer libxine-extracodecs realplay


目录

安装软件解码器

很多人在 ubuntu-cn 论坛抱怨dapper中没有w32codecs,导致totem,mplayer,rhythmbox等不能播放rmvb,wmv等视频,不能播放mp3等音频。觉得ubuntu真难用。

其实windows如果不安装解码器很多东西也不能播放,比如rmvb,avi等。

好废话不用多说,我们来讲讲怎么在ubuntu dapper中安装各种解码器。

首先安装gstreamer的解码器,gstreamer是gnome主推的多媒体平台。在dapper中进行了重大升级,目前是0.10。但是默认没有安装完全,导致mp3等不能播放。所以,我们要安装 gstreamer0.10 .

sudo apt-get install gstreamer0.10-*

这条语句会把所有的gstreamer0.10的包安装上。

然后我们安装xine的解码器 libxine-extracodecs ,xine是另外一个多媒体平台,功能非常强大。我们还把系统自带的totem卸载,改为使用xine后端的totem,这样才可以播放rmvb等视频。 顺便安装上mplayer这个强大的播放器,我一般用它来播放dvd。注意如果是 amd的CPU,需要安装mplayer-k7,当然,大家也可以直接安装mplayer,这个比较通用。

sudo apt-get install libxine-extracodecs totem-xine mplayer-686 ffmpeg lame faad sox mjpegtools libxine-main1

接下来我们安装著名的视频解码器 w32codecs .这个在dapper的源里面没有包含,需要我们自己 下载

wget -c ftp://ftp.nerim.net/debian-marillat/pool/main/w/w32codecs/w32codecs_20050412-0.0_i386.deb

下载完成之后,开始安装。

sudo dpkg -i w32codecs_20050412-0.0_i386.deb

好了,现在大家的电脑应该都能够播放绝大部分多媒体文件了。

有的人可能比较喜欢realplayer,这里可以 下载安装 (我本人不是很建议使用realplay,当然使用它也没什么问题)。

wget -c ftp://ftp.nerim.net/debian-marillat/pool/main/r/realplay/realplayer_10.0.6-0.0_i386.deb

sudo apt-get install libstdc++5

sudo dpkg -i realplayer_10.0.6-0.0_i386.deb

配置字幕和软件

配置totem-xine加载字幕

ubuntu-cn一个方法 比较完美地解决了这个问题。原文是从源代码编译一个字体转换软件,如果不想编译,可以在 这里 下载别人编译好的程序,下载在拷贝到 /usr/local/bin 里面。在播放avi视频的时候,把字幕文件改成和视频文件一样的文件名就好了,totem-xine会自动加载。

如果你使用的是simsun的字体使用下面的命令(注意:请将路径改成自己的字体文件所在目录):

sudo xine-fontconv /usr/share/fonts/zh_CN/TrueType/SIMSUN.TTF simsun gb18030

如果是用的园体用下面的命令:

sudo xine-fontconv /usr/share/fonts/truetype/ttf-vera-yuan/VeraSansYuanTi-Bold.ttf simsun gb18030

大概要运行几分钟,会生成6个文件:simsun-* .现在把字体文件拷贝到

sudo cp simsun-* /usr/share/xine/libxine1/fonts

然后修改totem的配置文件:

gedit ~/.gnome2/totem_config

找到中间的项目修改为:

subtitles.separate.font:simsun
subtitles.separate.src_encoding:gb18030

配置mplayer字幕

安装mplayer之后运行的时候可能会报错,原因是找不到 ~/.mplayer/subfont.ttf .可以做一个链接(可以选择自己电脑上的中文字体)。

ln -s /usr/share/fonts/TrueType/simsun.ttc ~/.mplayer/subfont.ttf

如果是园体下面的语句

ln -sf /usr/share/fonts/VeraSansYuanTi/VeraSansYuanTi-Regular.ttf ~/.mplayer/subfont.ttf

然后在设置中把Subtitle&OSD的encoding选择为 cp936 ,把font的encoding设置 unicode ,默认字体(Text Scale)为5好像有点大,可以设置为3。

视频默认输出为x11,经过研究发现 xv 占用cpu最低,可以使用这个。如果不能全屏,修改.mplayer/config,设置

fs=no
zoom=yes

如果没有这个文件,可以自己建立。

另外,在.mplayer/下面建立一个Skin目录,里面可以放着skin文件,注意网上下载的skin都是压缩包,需要先解压。可以到这个下载 skin

另外如果是5.10里面的mplayer,界面是gtk1,看电影或者界面上会乱码。下面的命令就可以解决这个问题。

sudo cp /etc/gtk/gtkrc.zh_CN /etc/gtk/gtkrc.zh_CN.utf-8

如果文件不存在可以自己建立。

sudo gedit /etc/gtk/gtkrc.zh_CN.utf-8

拷贝下面的内容进去。

# $(gtkconfigdir)/gtkrc.zh_CN
#
# This file defines the fontsets for Chinese language (zh) using
# the simplified chinese standard GuoBiao as in mainland China (CN)
#
# 1999, Pablo Saratxaga
#

style "gtk-default-zh-cn" {
fontset = "-adobe-helvetica-medium-r-normal--12-*-*-*-*-*-iso8859-1,-*-*-medium-r-normal--16-*-*-*-*-*-gb2312.1980-0,*-r-*"
}
class "GtkWidget" style "gtk-default-zh-cn"
#

热烈欢迎我的回来。

本来都已经把我的blog搬到opera的网站上去了, 现在发现还是livejournal好,至少这个编辑器相当好,而且我也喜欢那种简单朴素,带点技术味道的风格。
不过主要的是, blog在哪里不重要, 关键是你是不是记得常写blog。 我就挺失败, 有时候临睡觉了,肚子里面却琢磨文章,觉得那些东西一定要写到blog上的,结果一觉醒来就忘了这回事, 有首歌说,有钱的时候没时间,有时间的时候没钱。。。我是想写的时候不在电脑前,在电脑前又不想写。。。不知道是犯贱还是生活就是这样的乱七八糟,前后矛盾。

现在得说,我又从livijournal到blogger了。

安装邮件服务器postfix...记

Postfix比sendmail要容易伺候,起码我按照ubuntu.org.cn上的文档就可以装好,所以下面的基本上都是从Postfix 基本设置指南引用过来的。
---------------------------------------------------------------

Install Postfix

In this setup I assume that your domain is yourdomain.com and it has a valid MX record call mail.yourdomain.com. Remember to replace yourdomain.com with your actual domain in the example codes in this howto. Also I assume that you know what an MX record is. To find out MX your type in a terminal:

dig mx yourdomain.com

To install postfix

sudo apt-get install postfix

Intall mailx package for use as command mail utility program. Mail command is installed with this package.

sudo apt-get install mailx

Test your default setup

Add a user before you start this.

sudo useradd -m -s /bin/bash fmaster
sudo passwd fmaster

Test your default installation using the following code segment.

telnet localhost 25

Postfix will prompt like following in the terminal so that you can use to type SMTP commands.

Trying 127.0.0.1...
Connected to mail.fossedu.org.
Escape character is '^]'.
220 localhost.localdomain ESMTP Postfix (Ubuntu)

Type the following code segment in Postfix's prompt.

ehlo localhost
mail from: root@localhost
rcpt to: fmaster@localhost
data
Subjet: My first mail on Postfix
Hi,
Are you there?
regards,
Admin
. (Type the .[dot] in a new Line and press Enter )
quit

Check the mailbox of fmaster

su - fmaster
mail

When your type mail command an output like follows display in your terminal.

Mail version 8.1.2 01/15/2001.  Type ? for help.
"/var/mail/fmaster": 2 messages 2 new
>N 1 root@localhost Mon Mar 6 12:49 13/479 Just a test
N 2 root@localhost Mon Mar 6 12:51 15/487 My first mail
&

You will observe that mails are indexed by numbers and you can type the number of which the mail that you want to read. For example type no "2" to read the 2nd mail. The type "q" to quit. The mail will be written to a file called mbox in user's home directory. According to our example it will be /home/fmaster/mbox.

All messages in an mbox type of mailbox are concatenated and stored in a single file. The beginning of each message is indicated by a line whose first five characters are "From " and a blank line is appended to the end of each message

Setting Postfix Support for Maildir-style Mailboxes

Maildir is a format for an e-mail spool that does not require file locking to maintain message integrity because the messages are kept in separate files with unique names. A Maildir is a directory (often named Maildir) with three subdirectories named tmp, new, and cur. The subdirectories should all reside on the same filesystem.

Another reason to use Maildir format is that Courier IMAP/POP3 servers only work with Maildir format of mailboxes.

Please find out more about Maildir here

 sudo  vi /etc/postfix/main.cf

Add the following code segment:

home_mailbox = Maildir/

Comment the Line mailbox_command = procmail -a "$EXTENSION" adding a "#" at the beginning

Restart Postfix to make changes effect.

sudo  /etc/init.d/postfix restart

Test your setup again

Installing courier IMAP and POP3

sudo apt-get install courier-pop
sudo apt-get install courier-imap

= Adding local domains to postfix

sudo   vi /etc/postfix/main.cf

Add your domain to:

sudo vi /etc/postfix/main.cf

Add your domain to mydestination. Once added it should be like the following code segment.

...
mydestination = mail.fossedu.org, localhost.localdomain, localhost, yourdoamin.com
...

Add your local network to:

sudo vi /etc/postfix/main.cf

I assume that your local network is 192.168.1.0/24 and add your local network to mynetworks. Once added it should be like the following code segment.

mynetworks = 127.0.0.0/8, 192.168.1.0/24

Make Postfix to receive mail from the Internet

Set inet_interfaces = all in /etc/postfix/main.cf using:

sudo vi /etc/postfix/main.cf

Finally Restart Postfix;

sudo  /etc/init.d/postfix restart

Test your setup again using following code:

telnet mail.yourdomain.com 25
ehlo yourdmain.com
mail from: root@yourdomain.com
rcpt to: fmaster@yourdomain.com
data
Subject: My first mail for my domain
Hi,
Are you there?
regards,
Admin
. (and Enter In a new Line)
quit

Check the mailbox of fmaster

su - fmaster
cd Maildir/new
ls

Now you will see mail has a separate file

Testing Courier POP3

Type in a terminal:

telnet mail.yourdomain.com 110

Use the following example code segment for your test. Be intelligent to tweak the changes appropriately to your environment. An output like follows will display in your terminal.

Connected to mail.yourdomain.com (69.60.109.217).
Escape character is '^]'.
+OK Hello there.

Type the following code segment in the prompt provided by the Courier POP3 server. I assume that you inetligent enough not to type the lines which starts from +OK

user fmaster
+OK Password required.
pass password
+OK logged in.
quit

Testing Courier IMAP

Type in a terminal:

telnet mail.yourdomain.com 143

Use the following example code segment for your test. Be intelligent to tweak the changes appropriately to your environment. An output like follows will display in your terminal.

* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS XCOURIEROUTBOX=INBOX.Outbox] Courier-IMAP ready. Copyright 1998-2005 Double Precision, Inc.  See COPYING for distribution information.

Type the following code segment in the prompt provided by the Courier IMAP server.

a login fmaster password
a OK LOGIN Ok.
a logout
------------------------------------------------------------
它的用户管理用的就是linux操作系统的用户系统,所有创建一个linux用户也就创建了一个postfix用户。
文档介绍了更多, 但是我只用到这个程度,也就是文档看到这里基本上就可以配置一个可用的邮件服务器了。

如何编写一个shell脚本/Linux command manual

在Linux系统中,虽然有各种各样的图形化接口工具,但是sell仍然是一个非常灵活的工具。Shell不仅仅是命令的收集,而且是一门非常棒的编程语言。您可以通过使用shell使大量的任务自动化,shell特别擅长系统管理任务,尤其适合那些易用性、可维护性和便携性比效率更重要的任务。

  下面,让我们一起来看看shell是如何工作的:

  建立一个脚本

  Linux中有好多中不同的shell,但是通常我们使用bash (bourne again shell) 进行shell编程,因为bash是免费的并且很容易使用。所以在本文中笔者所提供的脚本都是使用bash(但是在大多数情况下,这些脚本同样可以在bash的大姐,bourne shell 中运行)。

  如同其他语言一样,通过我们使用任意一种文字编辑器,比如nedit、kedit、emacs、vi等来编写我们的shell程序。程序必须以下面的行开始(必须方在文件的第一行):

  #!/bin/sh

  符号#!用来告诉系统它后面的参数是用来执行该文件的程序。在这个例子中我们使用/bin/sh来执行程序。

  当编辑好脚本时,如果要执行该脚本,还必须使其可执行。

  要使脚本可执行:

  chmod +x filename

  然后,您可以通过输入: ./filename 来执行您的脚本。

  注释

  在进行shell编程时,以#开头的句子表示注释,直到这一行的结束。我们真诚地建议您在程序中使用注释。如果您使用了注释,那么即使相当长的时间内没有使用该脚本,您也能在很短的时间内明白该脚本的作用及工作原理。

  变量

  在其他编程语言中您必须使用变量。在shell编程中,所有的变量都由字符串组成,并且您不需要对变量进行声明。要赋值给一个变量,您可以这样写:

  变量名=值

  取出变量值可以加一个美元符号($)在变量前面:

  #!/bin/sh
  #对变量赋值:
  a="hello world"
  # 现在打印变量a的内容:
  echo "A is:"
  echo $a

  在您的编辑器中输入以上内容,然后将其保存为一个文件first。之后执行chmod +x first 使其可执行,最后输入./first执行该脚本。
  这个脚本将会输出:
  A is:
  hello world

  有时候变量名很容易与其他文字混淆,比如:

  num=2
  echo "this is the $numnd"

  这并不会打印出"this is the 2nd",而仅仅打印"this is the ",因为shell会去搜索变量numnd的值,但是这个变量时没有值的。可以使用花括号来告诉shell我们要打印的是num变量:

  num=2
  echo "this is the ${num}nd"

  这将打印: this is the 2nd

  有许多变量是系统自动设定的,这将在后面使用这些变量时进行讨论。

  如果您需要处理数学表达式,那么您需要使用诸如expr等程序(见下面)。

  除了一般的仅在程序内有效的shell变量以外,还有环境变量。由export关键字处理过的变量叫做环境变量。我们不对环境变量进行讨论,因为通常情况下仅仅在登录脚本中使用环境变量。

  Shell命令和流程控制

  在shell脚本中可以使用三类命令:

  1)Unix 命令:

  虽然在shell脚本中可以使用任意的unix命令,但是还是由一些相对更常用的命令。这些命令通常是用来进行文件和文字操作的。

  常用命令语法及功能

  echo "some text": 将文字内容打印在屏幕上

  ls: 文件列表

  wc -l filewc -w filewc -c file&: 计算文件行数计算文件中的单词数计算文件中的字符数

  cp sourcefile destfile&: 文件拷贝

  mv oldname newname : 重命名文件或移动文件

  rm file&: 删除文件

  grep 'pattern' file&: 在文件内搜索字符串比如:grep 'searchstring' file.txt

  cut -b colnum file&: 指定欲显示的文件内容范围,并将它们输出到标准输出设备比如:输出每行第5个到第9个字符cut -b5-9 file.txt千万不要和cat命令混淆,这是两个完全不同的命令

  cat file.txt: 输出文件内容到标准输出设备(屏幕)上

  file somefile&: 得到文件类型

  read var: 提示用户输入,并将输入赋值给变量

  sort file.txt: 对file.txt文件中的行进行排序

  uniq: 删除文本文件中出现的行列比如: sort file.txt | uniq

  expr: 进行数学运算Example: add 2 and 3expr 2 "+" 3

  find: 搜索文件比如:根据文件名搜索find . -name filename -print

  tee: 将数据输出到标准输出设备(屏幕) 和文件比如:somecommand | tee outfile

  basename file&: 返回不包含路径的文件名比如: basename /bin/tux将返回 tux

  dirname file&: 返回文件所在路径比如:dirname /bin/tux将返回 /bin

  head file&: 打印文本文件开头几行

  tail file : 打印文本文件末尾几行

  sed: Sed是一个基本的查找替换程序。可以从标准输入(比如命令管道)读入文本,并将结果输出到标准输出(屏幕)。该命令采用正则表达式(见参考)进行搜索。不要和shell中的通配符相混淆。比如:将linuxfocus 替换为 LinuxFocus :cat text.file | sed 's/linuxfocus/LinuxFocus /' > newtext.file

  awk: awk 用来从文本文件中提取字段。缺省地,字段分割符是空格,可以使用-F 指定其他分割符。cat file.txt | awk -F, '{print $1 "," $3 }'这里我们使用,作为字段分割符,同时打印第一个和第三个字段。如果该文件内容如下: Adam Bor, 34, IndiaKerry Miller, 22, USA命令输出结果为:Adam Bor, IndiaKerry Miller, USA

  2) 概念: 管道, 重定向和 backtick

  这些不是系统命令,但是他们真的很重要。

  管道 (|) 将一个命令的输出作为另外一个命令的输入。
  grep "hello" file.txt | wc -l
  在file.txt中搜索包含有"hello"的行并计算其行数。
  在这里grep命令的输出作为wc命令的输入。当然您可以使用多个命令。

  重定向:将命令的结果输出到文件,而不是标准输出(屏幕)。
  > 写入文件并覆盖旧文件
  >> 加到文件的尾部,保留旧文件内容。

  反短斜线
  使用反短斜线可以将一个命令的输出作为另外一个命令的一个命令行参数。
  命令:
  find . -mtime -1 -type f -print
  用来查找过去24小时(-mtime -2则表示过去48小时)内修改过的文件。如果您想将所有查找到的文件打一个包,则可以使用以下脚本:
  #!/bin/sh
  # The ticks are backticks (`) not normal quotes ('):
  tar -zcvf lastmod.tar.gz `find . -mtime -1 -type f -print`

  3) 流程控制

  "if" 表达式 如果条件为真则执行then后面的部分:
  if ....; then
    ....
  elif ....; then
    ....
  else
    ....
  fi
  大多数情况下,可以使用测试命令来对条件进行测试。比如可以比较字符串、判断文件是否存在及是否可读等等...
  通常用" [ ] "来表示条件测试。注意这里的空格很重要。要确保方括号的空格。
  [ -f "somefile" ] :判断是否是一个文件
  [ -x "/bin/ls" ] :判断/bin/ls是否存在并有可执行权限
  [ -n "$var" ] :判断$var变量是否有值
  [ "$a" = "$b" ] :判断$a和$b是否相等

  执行man test可以查看所有测试表达式可以比较和判断的类型。
  直接执行以下脚本:
  #!/bin/sh
  if [ "$SHELL" = "/bin/bash" ]; then
    echo "your login shell is the bash (bourne again shell)"
  else
    echo "your login shell is not bash but $SHELL"
  fi
  变量$SHELL包含了登录shell的名称,我们和/bin/bash进行了比较。

  快捷操作符

  熟悉C语言的朋友可能会很喜欢下面的表达式:

  [ -f "/etc/shadow" ] && echo "This computer uses shadow passwors"

  这里 && 就是一个快捷操作符,如果左边的表达式为真则执行右边的语句。您也可以认为是逻辑运算中的与操作。上例中表示如果/etc /shadow文件存在则打印" This computer uses shadow passwors"。同样或操作(||)在shell编程中也是可用的。这里有个例子:

#!/bin/sh
mailfolder=/var/spool/mail/james
[ -r "$mailfolder" ]' '{ echo "Can not read $mailfolder" exit 1; }
echo "$mailfolder has mail from:"
grep "^From " $mailfolder

  该脚本首先判断mailfolder是否可读。如果可读则打印该文件中的"From" 一行。如果不可读则或操作生效,打印错误信息后脚本退出。这里有个问题,那就是我们必须有两个命令:

  -打印错误信息
  -退出程序

  我们使用花括号以匿名函数的形式将两个命令放到一起作为一个命令使用。一般函数将在下文提及。
  不用与和或操作符,我们也可以用if表达式作任何事情,但是使用与或操作符会更便利很多。

  case表达式可以用来匹配一个给定的字符串,而不是数字。

case ... in
...) do something here
esac

  让我们看一个例子。 file命令可以辨别出一个给定文件的文件类型,比如:

file lf.gz

  这将返回:

lf.gz: gzip compressed data, deflated, original filename,
last modified: Mon Aug 27 23:09:18 2001, os: Unix

我们利用这一点写了一个叫做smartzip的脚本,该脚本可以自动解压bzip2, gzip 和zip 类型的压缩文件:

#!/bin/sh
ftype=`file "$1"`
case "$ftype" in
"$1: Zip archive"*)
  unzip "$1"
"$1: gzip compressed"*)
  gunzip "$1"
"$1: bzip2 compressed"*)
  bunzip2 "$1"
*) error "File $1 can not be uncompressed with smartzip";;
esac

  您可能注意到我们在这里使用了一个特殊的变量$1。该变量包含了传递给该程序的第一个参数值。也就是说,当我们运行:

smartzip articles.zip
$1 就是字符串 articles.zip

  select 表达式是一种bash的扩展应用,尤其擅长于交互式使用。用户可以从一组不同的值中进行选择。

select var in ... do
 break
done
.... now $var can be used ....

下面是一个例子:

#!/bin/sh
echo "What is your favourite OS?"
select var in "Linux" "Gnu Hurd" "Free BSD" "Other"; do
    break
done
echo "You have selected $var"

下面是该脚本运行的结果:

What is your favourite OS?
1) Linux
2) Gnu Hurd
3) Free BSD
4) Other
#? 1
You have selected Linux

您也可以在shell中使用如下的loop表达式:

while ...; do
....
done

while- loop 将运行直到表达式测试为真。 will run while the expression that we test for is true. 关键字"break" 用来跳出循环。而关键字"continue"用来不执行余下的部分而直接跳到下一个循环。

for-loop表达式查看一个字符串列表 (字符串用空格分隔) 然后将其赋给一个变量:

for var in ....; do
 ....
done

在下面的例子中,将分别打印ABC到屏幕上:

#!/bin/sh
for var in A B C do
 echo "var is $var"
done

下面是一个更为有用的脚本showrpm,其功能是打印一些RPM包的统计信息:

#!/bin/sh
# list a content summary of a number of RPM packages
# USAGE: showrpm rpmfile1 rpmfile2 ...
# EXAMPLE: showrpm /cdrom/RedHat/RPMS/*.rpm
for rpmpackage in $*; do
 if [ -r "$rpmpackage" ];then
  echo "=============== $rpmpackage =============="
  rpm -qi -p $rpmpackage
 else
  echo "ERROR: cannot read file $rpmpackage"
 fi
done

这里出现了第二个特殊的变量$*,该变量包含了所有输入的命令行参数值。如果您运行showrpm openssh.rpm w3m.rpm webgrep.rpm
此时 $* 包含了 3 个字符串,即openssh.rpm, w3m.rpm and webgrep.rpm.


引号

在向程序传递任何参数之前,程序会扩展通配符和变量。这里所谓扩展的意思是程序会把通配符(比如*)替换成合适的文件名,它变量替换成变量值。为了防止程序作这种替换,您可以使用引号:让我们来看一个例子,假设在当前目录下有一些文件,两个jpg文件, mail.jpg 和tux.jpg。

#!/bin/sh
echo *.jpg
这将打印出"mail.jpg tux.jpg"的结果。
引号 (单引号和双引号) 将防止这种通配符扩展:
#!/bin/sh
echo "*.jpg"
echo '*.jpg'
这将打印"*.jpg" 两次。

单引号更严格一些。它可以防止任何变量扩展。双引号可以防止通配符扩展但允许变量扩展。

#!/bin/sh
echo $SHELL
echo "$SHELL"
echo '$SHELL'

运行结果为:
/bin/bash
/bin/bash
$SHELL

最后,还有一种防止这种扩展的方法,那就是使用转义字符——反斜杆:

echo *.jpg
echo $SHELL
这将输出:
*.jpg
$SHELL
Here document.

当要将几行文字传递给一个命令时,here document.(译者注:目前还没有见到过对该词适合的翻译)一种不错的方法。对每个脚本写一段帮助性的文字是很有用的,此时如果我们四有那个here document.就不必用echo函数一行行输出。 一个 "Here document.quot; 以 << 开头,后面接上一个字符串,这个字符串还必须出现在here document.末尾。下面是一个例子,在该例子中,我们对多个文件进行重命名,并且使用here document.打印帮助: #!/bin/sh # we have less than 3 arguments. Print the help text: if [ $# -lt 3 ] then cat <<< shift by 2
  --) shift;break;; # end of options
  -*) echo "error: no such option $1. -h for help";exit 1;;
  *) break;;
esac
done

echo "opt_f is $opt_f"
echo "opt_l is $opt_l"
echo "first arg is $1"
echo "2nd arg is $2"

您可以这样运行该脚本:
cmdparser -l hello -f -- -somefile1 somefile2

返回的结果是:
opt_f is 1
opt_l is hello
first arg is -somefile1
2nd arg is somefile2

  这个脚本是如何工作的呢?脚本首先在所有输入命令行参数中进行循环,将输入参数与case表达式进行比较,如果匹配则设置一个变量并且移除该参数。根据unix系统的惯例,首先输入的应该是包含减号的参数。

  实例

  一般编程步骤

  现在我们来讨论编写一个脚本的一般步骤。任何优秀的脚本都应该具有帮助和输入参数。并且写一个伪脚本(framework.sh),该脚本包含了大多数脚本都需要的框架结构,是一个非常不错的主意。这时候,在写一个新的脚本时我们只需要执行一下copy命令:
cp framework.sh myscript
然后再插入自己的函数。

  让我们再看两个例子:

  二进制到十进制的转换

  脚本 b2d 将二进制数 (比如 1101) 转换为相应的十进制数。这也是一个用expr命令进行数学运算的例子:

#!/bin/sh
# vim: set sw=4 ts=4 et:
help()
{
 cat << 'xixihehehaha',

在ubuntu下安装bugzilla

Convention:
$APACHE_HOME : installation directory of apache server.
$BUGZILLA_HOME : installation directory of bugzilla.
$MYSQL_HOME : installation directory of mysql.

Prerequirement:
Bugzilla : 2.22 release (2.22)
Perl : 5.6.1 or higher (5.8.7)
Mysql : 4.0.14 or higher (5.0.21)
Apache : 1.3 or 2.x (2.2.2)
Ubuntu : 6.0.6
GCC: apt-get install build-essential

Detailed steps:
===============================
Apache Intallation
===============================
I don't know if apache has been built in my ubuntu, so reinstalling apache is maybe a good idea. The distribution of apache for linux must be built from source.
1. download httpd.apache.org, I chose the latest stable release httpd-2.2.2.tar.gz.
2. extract source package
Here you should check if your ubuntu has insalled build environment, if not, install it by executing 'sudo apt-get install build-essential'.
3. build the source code, and do installation.
- ./configure --prefix=$TARGET_DIR
- make
- make install
4. enter $APACHE_HOME/bin, execute './httpd -k start' or './apachectl start' to start apache server. After that, open browser and access 'http://localhost' to check if server has been startup.

===============================
Mysql Intallation
===============================
It seems like that the installation of mysql is really simple. I just downloaded the binary package from www.mysql.com, then extract it to a directory. Don't need to compile, dont need to install. Enter mysql root directory, execute './configure', then it is ok.
You can start mysql daemon server by executing './bin/mysqld-safe'.
Do remember that this is justa short cut, it need a more speculated configuration in a product environment, such as creating user account, security configuration.
DO MORE RESEARCH!!

创建一个bugzilla账户, 登陆到mysql
> grant all on bugs.* to bugs@localhost identified by 'bugs';
>flush privileges;

===============================
Install Perl Modules
===============================
Bugzilla need some special perl modules to support it behaviour.
1. enter $BUGZILLA_HOME, execute './checkperl.pl --check-modules'. check the output, you will get a list of uninstalled modules.
2. install depended modules. you can install by MCPAN(???) or download module from www.cpan.org and then install it from local machine.
2.1 install from remote : /usr/bin/perl -MCPAN -e 'install "XML::Twig"'
2.2 install from local:
- download module packege from www.cpan.org.
- extract the package, and enter the module directory.
- 'perl Makefile.pl', build a makefe file.
---------------------------------------------------
NOTE: 这一步可以指定一个参数PREFIX来设置将这个模块安装到什么地方,比如"perl Makefile.PK PREFIX=/opt/mylib/perl",那么'make install'时候,模块会被安装到/opt/mylib/perl,在这个目录下会被创建很多子目录,一般是:
/opt/mylib/perl/bin
/opt/mylib/perl/share
/opt/mylib/perl/share/perl/5.8.7 [这个目录下面放置模块文件]
/opt/mylib/perl/lib/perl/5.8.7 [这个目录下面也可以放置模块文件]
/opt/mylib/perl/man [帮助文档]

PERL 解释器搜索模块的路径可以通过一个变量来设置,PERLLIB,PERL5LIB两个变量都可以增加PERL解释器的搜索路径,最好两个变量都设置最保险,因为工具可能查找不同的变量,比如[export PERLLIB=/opt/mylib/perl/share/perl/5.8.7:/opt/mylib/perl/lib/perl/5.8.7], 多个目录可以用冒号分开。当然PERL总是会搜索默认的/usr/lib这个目录。
还有@INC不知道是什么东西。。。。。。(就象java的classpath环境变量)
---------------------------------------------------
- 'make' : build the source.
- 'make test' : do test
- 'make install' : install module
NOTE : when installed DBD:mysql moudle, you should specify some arguments. The first is 'cflags'(This is a list of flags that you want to give to the C compiler. The most important flag is the location of the MySQL header files.), second is 'libs'(his is a list of flags that you want to give to the linker or loader.The most important flags are the locations and names of additional libraries. ), such as 'perl Makefile.PL --cflags=-I<$MYSQL_HOME/include> --libs=-L<$MYSQL_HOME/libs>, also you can specify some other arguments, like testdb, testhost and so forth. Here will give a concrete example:
perl Makefile.PL --cflags="-I/opt/mysql/include" --libs="-L/opt/mysql/libs" --testdb=bugs --testuser=bugs --testpassword=bugs --testhost=localhost

后来的一次安装比较奇怪,我用[ perl Makefile.PL --cflags="-I/opt/software/mysql-max-5.0.21-linux-i686-glibc23/include" --libs="-L/opt/software/mysql-max-5.0.21-linux-i686-glibc23/lib" --testdb=bugs --testuser=bugs --testpassword=bugs --testhost=localhost ]这个指令创建Makefile,然后‘make, make test',在‘make test'的时候总是会报错:
-------------------------------------------------
t/40nulls............install_driver(mysql) failed: Can't load '/opt/source/perl-bugzilla-modules/DBD-mysql-3.0006/blib/arch/auto/DBD/mysql/mysql.so' for module DBD::mysql: /opt/source/perl-bugzilla-modules/DBD-mysql-3.0006/blib/arch/auto/DBD/mysql/mysql.so: undefined symbol: mysql_stmt_free_result at /usr/lib/perl/5.8/DynaLoader.pm line 225.
-------------------------------------------------
而我第一次和第二次安装的时候都没有问题,也是perl5.8.7和DBD::mysql3.0006,为什么?? 没有办法,去网上查了一个,好多人问这个问题,而且这个bug看来是新版本里面才出现的, 总算也有人给出了解决方法,就是用下面的指令:
perl Makefile.PL --cflags="-I/opt/software/mysql-max-5.0.21-linux-i686-glibc23/include" --libs="-static-libgcc -L/opt/software/mysql-max-5.0.21-linux-i686-glibc23/lib -lmysqlclient -lz -lposix4 -lgen -lsocket -lnsl -lm" --testdb=bugs --testuser=bugs --testpassword=bugs --testhost=localhost
唉,终于‘make test'通过了,不简单,值得庆贺。
--------------------------------------------------
笑的太早啦,现在我第三次在ubuntu上面安装,这个DBD::mysql模块又好好的折腾了我一把,差点让我疯掉了,难道每次安装都要碰到那么多新问题么? 就说说这次的经历吧, mysql仍然是自己从mysql网站下载了一个二进制包,然后在ubuntu下安装的。就是说完全按照第二次的安装经验,一开始就碰到了一个异常,我直接把cpan上的解决描述贴在这里:

Some Linux distributions don't come with a gzip library by default. Running ``make'' terminates with an error message like

  LD_RUN_PATH="/usr/lib/mysql:/lib:/usr/lib" gcc
-o blib/arch/auto/DBD/mysql/mysql.so -shared
-L/usr/local/lib dbdimp.o mysql.o -L/usr/lib/mysql
-lmysqlclient -lm -L/usr/lib/gcc-lib/i386-redhat-linux/2.96
-lgcc -lz
/usr/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make: *** [blib/arch/auto/DBD/mysql/mysql.so] Error 1

If this is the case for you, install an RPM archive like libz-devel, libgz-devel, zlib-devel or gzlib-devel or something similar.

解决办法就是安装zlib: sudo apt-get install zlib1g-dev.
接下来碰到的问题更恼火,在"make test"的时候,得到下面的异常:

  t/00base............install_driver(mysql) failed: Can't load
'../blib/arch/auto/DBD/mysql/mysql.so' for module DBD::mysql:
../blib/arch/auto/DBD/mysql/mysql.so: undefined symbol: _umoddi3
at /usr/local/perl-5.005/lib/5.005/i586-linux-thread/DynaLoader.pm
line 168.

原因据说是因为编译perl的编译器与编译mysql的编译器不一样,或者他们编译的目标平台不一样,就会出现这个问题,cpan也提供了解决方案,我试了,没用,可以参考这里:

http://search.cpan.org/src/CAPTTOFU/DBD-mysql-4.003/INSTALL.html#configuration

疯了,越安装反而越搞不定了, 后来没办法,我决定删除自己的下载的mysql,通过apt-get来安装,这样的话因为perl和mysql都是ubuntu自己,应该不会有问题了吧!

>sudo apt-get install mysql-server
>sudo apt-get install libmysqlclient14
note: 必须安装mysqlclient,才能得到mysql_config,这个文件定义了编译器需要的各种flag。

然后再来执行 “perl Makefile.PL --mysql_config=/usr/bin/mysql_config --testdb=bugs --testuser=bugs --testpassword=bugs --testhost=localhost“
哈哈,这下make test终于成功了。

** 安装GD库
> wget http://www.libgd.org/releases/gd-2.0.34.tar.gz
> ./configure;
> make
> make install
安装其他的库(依赖于GD)
> perl -MCPAN -e 'install "Chart::Base"'


** 我看最好的安装perl module的方式应该是先安装zlib,gdlib,DBD::mysql这些之后,使用”perl -MCPAN -e 'install "Bundle::Bugzilla",不然真是很麻烦。

----------------------------------

You can view these arguments by adding '--help' following the command.
More information please refer to the installation document of module.
3. After complete installing depented modules, you should rerun './checksetup.pl' (no '--check-modules' argument). This command will generate a configuration file 'localconfig', and build database structure(Confirm that all configuration about database is correct, you need create db_user. The script will generate schema automatically.).这里需要手工修改localconfig文件,设置数据库连接等。我通常还会把webservergroup设置成登录账户,管不了那么多, linux的安全设置搞的我很烦,只要能让bugzilla跑起来,管不了了。
4.完成配置之后,再运行checksetup.pl,脚本会自动创建数据库。
5. Config apache for bugzilla. I adopted a very extreme approach which just copy all files in $BUGZILLA_HOME to $APACHE_HOME/htdocs, then add below block to httpd.conf:

note: 在localconfig中设定webservergroup为www-data,并且重新执行checksetup.pl。 设置$BUGZILLA_HOME的owner为www-data。
??不知道为什么直接加符号链接的时候,apache会直接显示perl源文件。

Optional: If Bugzilla does not actually reside in the webspace directory, but instead has been symbolically linked there, you will need to add the following to the Options line of the Bugzilla directive (the same one as in the step above):

 +FollowSymLinks
note: Options +Indexes +ExecCGI +FollowSymLinks

NOTE : By default the DocumentRoot directory of apache is $APACHE_HOME/htdocs, but I want put my web application outside DocumentRoot directory. How do I achieve that? It is simple, just create a symbol link in DocumentRoot directory for you application directory. For example:
- change directory to $APACHE_HOME/htdocs(the DocumentRoot directory).
- 'ln -s /opt/bugzilla-2.22 bugzilla'.
Then you can access 'http://localhost:8080/bugzilla'.
6. Start apache and bugzilla. Access 'http://localhost:8080', now the bugzilla index page is displayed.
THIS IS JUST A BEGIN.

NOTE: All bugzilla parameter settings are stored in ${BUGZILLA_HOME}/data/params.

自己动手装bugzilla,在ubuntu下面。

我的电脑现在是双系统, 一个ubuntu,一个windowXP. 本来都已经计划以后只使用ubuntu的, 但是现实情况很难, 公司里的工作都是在window平台上, 很受不了, 全是盗版, 而且主要的公司的产品完全是跑在window平台上的。 当然我平常工作使用ubuntu并非不可能, 但是太麻烦, 而且公司的版本控制使用的是vss, 这个丑陋的东西没有linux下的客户端, 还有inforweb也没有linux的版本, 所以我现在实际上大多数时间使用的都是window。
有 一点, 在我的项目組内,肯定会有一个linux服务器, 版本管理会回到cvs,而bugzilla也将在开发过程中扮演重要角色, 现在公司内部根本就没有缺陷管理系统,不是一般的糟糕。 后面的,我还计划建立一个项目的内部协作网络, 其实作用倒可以很多,也可以是内部知识网络,项目的管理也可以通过这个系统来进行。 这个会通过twiki来实现, 正好twiki和bugzilla都是基于perl的, 不用整那么多新东西了。

今天就打算装个bugzilla, bugzilla实际上是很多开源技术的一个整合, 清单如下:
Bugzilla : 2.22 release
Perl : 5.6.1 or higher
Mysql : 4.0.14 or higher
Apache : 1.3 or 2.x (2.2.2)
Ubuntu : 6.0.6

由于ubuntu内置了perl,所以不用安装.
-- 安装apache.
从www.apache.org下载了2.2.2版本的, 但是在linux下面, 必须要从源代码开始编译。
1。检查ubuntu是否已安装了开发环境。
- 查询是否已经安装了build-essential包。
- 如果没有, 那么‘sudo apt-get build-essential', 这个命令会自动安装gcc等相应的资源。
2。解开httpd-2.2.2.tar.gz, 进入httpd-2.2.2,执行‘./configure --prefix=$PREFIX'。通过指定prefix参数, 可以指定将apache安装到一个特定目录。
3。执行 ‘make', 编译源代码。
4。执行‘make install‘, 执行安装过程。
5。进入$PREFIX/bin, 执行‘./apachectl start’启动apache,然后在浏览器里面访问‘http://localhost',就可以看到服务是否启动成功了。

-- 安装mysql
mysql-5.0.21的安装好像很简单, 不过这是初步的认识, 因为直接运行'./bin/mysqld_safe'就可以启动mysql的服务。下面列出一些常用命令:
mysqladmin version : view the version information.
mysqladmin shutdown: shutdown mysql daemon server.
mysql -u root -p : login mysql and a password prompt will be displayed.