Index: /nutchez-0.2/src/test/install
===================================================================
--- /nutchez-0.2/src/test/install	(revision 194)
+++ /nutchez-0.2/src/test/install	(revision 195)
@@ -4,5 +4,11 @@
 # 匯入功能函數
 source ./install_func.sh
-source ./client_install_func.sh
+#source ./client_install_func.sh
+source ./install_lang.zh
+
+Work_Path=$(echo $0 | sed 's/install//')
+
+# Source functions
+source $Work_Path/client_install_func.sh
 ### real code #####
 
@@ -18,7 +24,9 @@
 main () {
   check_info
-  show_info "歡迎使用NutchEZ, 此安裝程序會為您新建一個nutchuser帳號並協助您設定密碼"
+  show_info $main_echo_1
+# show_info "歡迎使用NutchEZ, 此安裝程序會為您新建一個nutchuser帳號並協助您設定密碼"
   set_install_information
-  read -p "Please confirm your install infomation: 1.Yes 2.No  " confirm
+  read -p "$main_echo_2" confirm
+# read -p "Please confirm your install infomation: 1.Yes 2.No  " confirm
   if [ $confirm -eq 1 ]; then
     creat_nutchuser_account $Nutchuser_Passwd
@@ -44,7 +52,9 @@
     start_up_tomcat    
     # 安裝流程結束，並進入網頁管理頁面設定爬網網址...等  
-    show_info "Install Successfully!!"
-    show_info "Visit http://$MasterIP_Address:8080"
-    client_install_command
+    show_info $main_echo_3
+#   show_info "Install Successfully!!"
+    show_info $main_echo_4
+#   show_info "Visit http://$MasterIP_Address:8080"
+    client_install_commands
   elif [ $confirm -eq 2 ]; then
     main
Index: /nutchez-0.2/src/test/install_func.sh
===================================================================
--- /nutchez-0.2/src/test/install_func.sh	(revision 194)
+++ /nutchez-0.2/src/test/install_func.sh	(revision 195)
@@ -12,9 +12,5 @@
 ####### garbage end ###############
 
-####### fafa code here ###########
-
-
 # shell檔及壓縮檔在同一目錄中
-
 
 ####### 環境變數section###########
@@ -31,5 +27,5 @@
 ######function section section#######
 
-
+##########  echo function  ##########
 function debug_info () {
   if [ $? -eq 0 ]; then
@@ -44,5 +40,156 @@
   fi
 }
-
+##########end echo function ##########
+
+function choose_lang(){
+
+lang=$(locale | grep 'LANG=' | cut -d "=" -f2)
+
+# Default: source english
+. $Work_Path/install_lang.en
+# if locale is zh then source chinese
+echo $lang | grep 'zh' >> /dev/null && source $Work_Path/install_lang.zh
+
+# Ask language
+echo -e "\n$choose_lang_1"
+read -p "$choose_lang_2 " langChoice
+
+if [ $langChoice == "2" ]; then
+    source $Work_Path/install_lang.zh
+else
+    source $Work_Path/install_lang.en
+fi
+}
+
+function check_root(){
+  debug_info "check_root"
+  if [ $USER != "root" ]; then
+    show_info "$check_root_1"
+    exit
+  fi
+  show_info "$check_root_2"
+}
+
+function check_systemInfo(){
+  debug_info "$check_sys_1"
+  show_info "$check_sys_2"
+  Linux_Distribution=$(lsb_release -a 2> /dev/null | grep "Distributor ID:" | awk '{print $3}')
+  Linux_Version=$(lsb_release -a 2> /dev/null | grep "Release" | awk '{print $2}')
+  show_info "$Linux_Distribution , $Linux_Version"
+}
+
+function install_packages(){
+  # deb 系列系統
+  debug_info "$install_pack_1"
+  debug_info "$install_pack_2"
+  if [ "$Linux_Distribution" == "Ubuntu" ] || [ "$Linux_Distribution" == "Debian" ] ;then
+    echo -e "\n$install_pack_if_1\n"
+    aptitude install -y expect ssh dialog
+  # rpm 系列系統
+  elif [ "$Linux_Distribution" == "Fedora" ] || [ "$Linux_Distribution" == "CentOS" ] ;then
+    show_info "$install_pack_if_2"
+  else
+    show_info "$install_pack_if_2"
+  fi
+}
+
+function check_nez_installed(){
+  debug_info "$check_nez_1"
+  if [ -d "opt/nutchez" ]; then
+    show_info "$check_nez_2"
+    exit
+  else
+    show_info "$check_nez_3"
+  fi
+}
+
+function check_sunJava(){
+  debug_info "$check_sunJava_1"
+  debug_info "$check_sunJava_2"
+
+  javaPath="/usr"
+  yesno="no"
+  choice="3"
+
+  if [ -e $javaPath/bin/java ]; then
+    JAVA_org=$($javaPath/bin/java -version 2>&1 | grep "Java(TM)")
+    JAVA_version=$($javaPath/bin/java -version 2>&1 | grep "java version" | \
+    awk '{print $3}' | cut -d "." -f1-2 | cut -d "\"" -f2)
+
+  if [ "$JAVA_org" == "" ]; then
+    show_info "$check_sunJava_if_1"
+    show_info "$check_sunJava_if_2"
+    show_info "$check_sunJava_if_3"
+    read -p "$check_sunJava_if_4" choice
+    case $choice  in
+      "1")
+        show_info "$check_sunJava_if_5"
+        exit
+        ;;
+      "2")
+        read -p "$check_sunJava_if_6" javaPath
+        ;;
+        "*")
+        exit
+        ;;
+        esac
+
+        if [ $choice == "2" ]; then
+          JAVA_org=$($javaPath/bin/java -version 2>&1 | grep "Java(TM)")
+          JAVA_version=$($javaPath/bin/java -version 2>&1 | grep "java version" | \
+          awk '{print $3}' | cut -d "." -f1-2 | cut -d "\"" -f2)
+
+          if [ "$JAVA_org" == "" ]; then
+            show_info "$check_sunJava_if_7"
+            exit
+            fi
+          fi
+        fi
+
+      large16=$(echo "$JAVA_version >= 1.6" | bc)
+      if [ "${large16}" == 0 ]; then
+        show_info "$check_sunJava_if_8"
+        exit
+      fi
+
+      show_info "$check_sunJava_if_9"
+  else
+    show_info "$check_sunJava_if_10"
+    exit
+  fi
+
+  unset JAVA_org
+  unset JAVA_version
+}
+
+# 檢查是否有安裝openssh, openssh-server
+function check_ssh(){
+  debug_info "$check_ssh_1"
+  if [ -e /usr/bin/ssh ]; then
+    show_info "$check_ssh_2"
+  else
+    show_info "$check_ssh_3"
+    exit
+  fi
+
+  if [ -e /usr/sbin/sshd ]; then
+    show_info "$check_ssh_4"
+  else
+    show_info "$check_ssh_5"
+    exit
+  fi
+}
+
+
+# 檢查是否有安裝dialog
+function check_dialog(){
+  debug_info "$check_dialog_1"
+  if [ -e /usr/bin/dialog ]; then
+    show_info "$check_dialog_2"
+  else
+    show_info "$check_dialog_3"
+    exit
+  fi
+}
 
 check_info () {
@@ -63,7 +210,9 @@
 
 function set_nutchuser_passwd () {
-  read -sp "Please enter nutchuser's password :  " Nutchuser_Passwd
+  read -sp "$set_nutchuser_passwd_echo_1" Nutchuser_Passwd
+# read -sp "Please enter nutchuser's password :  " Nutchuser_Passwd
   echo -e "\n"
-  read -sp "Please enter nutchuser's password again:  " Nutchuser_Passwd2
+  read -sp "$set_nutchuser_passwd_echo_2" Nutchuser_Passwd2
+# read -sp "Please enter nutchuser's password again:  " Nutchuser_Passwd2
   echo -e "\n"
   if [ $Nutchuser_Passwd != $Nutchuser_Passwd2 ]; then
@@ -79,14 +228,12 @@
   # 若只有一個 eth　時
   if [ "$net_nu" == "1" ]; then
-    #ifconfig $net_interfaces | grep "inet addr:" | sed 's/^.*inet addr://g' | cut -d " " -f1
     net_address=$(ifconfig $net_interfaces | grep "inet addr:" | sed 's/^.*inet addr://g' | cut -d " " -f1)
     net_MacAddr=$(ifconfig $net_interfaces | grep 'HW' | sed 's/^.*HWaddr //g')
-    #echo "net_address is $net_address"
-    #echo "net_MacAddr is $net_MacAddr"
 
   # 若有多個 eth 時
   else
     declare -i i=1
-    show_info  "\nSystem have multiple network device, which network use for this machine: "
+    show_info $select_eth_echo_1
+#   show_info  "\nSystem have multiple network device, which network use for this machine: "
 
     for net in $net_interfaces
@@ -95,41 +242,44 @@
         i=i+1
       done
-
-      read -p "Please choice(1/2/3...): " net_choice
+      read -p "$select_eth_echo_2 " net_choice
+#     read -p "Please choice(1/2/3...): " net_choice
     if [ -z $net_choice ]; then
       net_choice=1
     fi
 
-    show_info "Your choice is $net_choice"
+    show_info $select_eth_echo_3
+#   show_info "Your choice is $net_choice"
     net_interface=$(echo $net_interfaces | cut -d " " -f $net_choice)
     #ifconfig $net_interface | grep "inet addr:" | sed 's/^.*inet addr://g' | cut -d " " -f1
     net_address=$(ifconfig $net_interface | grep "inet addr:" | sed 's/^.*inet addr://g' | cut -d " " -f1)
     net_MacAddr=$(ifconfig $net_interface | grep 'HW' | sed 's/^.*HWaddr //g')
-    show_info "net_address is $net_address"
-    show_info "net_MacAddr is $net_MacAddr"
-  fi
-}
-
-
-function show_info () {
-  show_info "The Master IP Address is $MasterIP_Address"
-  show_info "The Master MacAddr is $net_MacAddr"
-}
-
-function confirm_install_information () {
-  read -p "Please confirm your install infomation: 1.Yes 2.No  " confirm
-}
+
+    show_info $select_eth_echo_4
+#   show_info "net_address is $net_address"
+    show_info $select_eth_echo_5
+#   show_info "net_MacAddr is $net_MacAddr"
+  fi
+}
+
+
+#function show_master_info () {
+#  show_info "The Master IP Address is $MasterIP_Address"
+#  show_info "The Master MacAddr is $net_MacAddr"
+#}
 
 function make_ssh_key () {
-  debug_info "Make ssh key(begin...)"
+  debug_info $make_ssh_key_echo_1
+# debug_info "Make ssh key(begin...)"
   su nutchuser -c 'ssh-keygen -t rsa -f ~/.ssh/id_rsa -P ""'
   su nutchuser -c "cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys"
   su nutchuser -c "ssh-add /home/nutchuser/.ssh/id_rsa"
-  debug_info "Make ssh key(done!)"
+  debug_info $make_ssh_key_echo_2
+# debug_info "Make ssh key(done!)"
 }
 
 
 function set_haoop-site () {
-  debug_info "set hadoop-site.xml(begin...)"
+  debug_info $set_haoop_site_echo_1
+# debug_info "set hadoop-site.xml(begin...)"
   cd $Nutch_HOME/conf/
   cat > hadoop-site.xml << EOF
@@ -149,34 +299,45 @@
 </configuration>
 EOF
-  debug_info "set hadoop-site.xml(done!)"
+  debug_info $set_haoop_site_echo_2
+# debug_info "set hadoop-site.xml(done!)"
 }
 
 # 修改nutch-site.xml中-http.agent.url, http.agent.email
 function set_nutch-site () {
-  debug_info "set nutch-site.xml(begin...)"
+  debug_info $set_haoop_site_echo_1
+# debug_info "set nutch-site.xml(begin...)"
   Line_NO=`cat $Nutch_HOME'/conf/nutch-site.xml' | grep -n 'http.agent.url' | sed 's/:.*//g'`
-  debug_info "debug...http.agent.url line number = $Line_NO..."
+  debug_info $set_haoop_site_echo_2
+# debug_info "debug...http.agent.url line number = $Line_NO..."
   sed -i ''$((Line_NO+1))'d' $Nutch_HOME/conf/nutch-site.xml
-  debug_info "debug...edit http.agent.url delete line $((Line_NO+1))..."
+  debug_info $set_haoop_site_echo_3
+# debug_info "debug...edit http.agent.url delete line $((Line_NO+1))..."
   sed -i ''$Line_NO'a <value>'$MasterIP_Address'</value>' $Nutch_HOME/conf/nutch-site.xml
-  debug_info "debug...edit http.agent.url done..."
+  debug_info $set_haoop_site_echo_4
+# debug_info "debug...edit http.agent.url done..."
 
   Line_NO=`cat $Nutch_HOME'/conf/nutch-site.xml' | grep -n 'http.agent.email' | sed 's/:.*//g'`
-  debug_info "debug...http.agent.email line number = $Line_NO..."
+  debug_info $set_haoop_site_echo_5
+# debug_info "debug...http.agent.email line number = $Line_NO..."
 
   sed -i ''$((Line_NO+1))'d' $Nutch_HOME/conf/nutch-site.xml
-  debug_info "debug...edit http.agent.email delete line $((Line_NO+1))..."
+  debug_info $set_haoop_site_echo_6
+# debug_info "debug...edit http.agent.email delete line $((Line_NO+1))..."
   sed -i ''$Line_NO'a <value>'$Admin_email'</value>' $Nutch_HOME/conf/nutch-site.xml
-  debug_info "debug...edit http.agent.email done..."
-  debug_info "set nutch-site.xml(done!)"
+  debug_info $set_haoop_site_echo_7
+# debug_info "debug...edit http.agent.email done..."
+  debug_info $set_haoop_site_echo_8
+# debug_info "set nutch-site.xml(done!)"
 }
 
 function format_HDFS () {
-  debug_info "format HDFS..."
+  debug_info $format_HDFS_echo_1 
   su nutchuser -c "$Nutch_HOME/bin/hadoop namenode -format"
+  debug_info $format_HDFS_echo_2
 }
 
 function start_up_NutchEZ (){
-  debug_info "start up NutchEZ..."
+  debug_info $start_up_NutchEZ_echo_1
+# debug_info "start up NutchEZ..."
   su nutchuser -c "$Nutch_HOME/bin/start-all.sh"
 }
@@ -184,4 +345,5 @@
 
 function set_hosts () {
+  debug_info $set_hosts_echo_1
   Line_NO=`cat /etc/hosts | grep -n $(hostname) | sed 's/:.*//g'`
   content=$(cat /etc/hosts | awk 'NR=='$Line_NO'{printf "# " ; print}' )
@@ -191,6 +353,8 @@
 
 function Install_Nutch () {
-  debug_info "MasterIP_Address=$MasterIP_Address"
-  debug_info "Master_Hostname=$(hostname)"
+  debug_info $install_Nutch_echo_1
+# debug_info "MasterIP_Address=$MasterIP_Address"
+  debug_info $install_Nutch_echo_2
+# debug_info "Master_Hostname=$(hostname)"
   su nutchuser -c "echo $net_address $(hostname) $net_MacAddr \>\> ~/nutchez/system/nutch_nodes"
   set_hosts
@@ -203,9 +367,12 @@
   cd $Start_PATH
   Line_NO=`cat client_install | grep -n '# Master IP here' | sed 's/:.*//g'`
-  debug_info "debug...Master IP here line number = $Line_NO..."
+  debug_info $client_PassMasterIPAddr_echo_1
+# debug_info "debug...Master IP here line number = $Line_NO..."
   sed -i ''$((Line_NO+1))'d' client_install
-  debug_info "debug...edit Master IP at line $((Line_NO+1))..."
+  debug_info $client_PassMasterIPAddr_echo_2
+# debug_info "debug...edit Master IP at line $((Line_NO+1))..."
   sed -i ''$Line_NO'a Master_IP_Address='$MasterIP_Address'' client_install
-  debug_info "edit client_install done..."
+  debug_info $client_PassMasterIPAddr_echo_3
+# debug_info "edit client_install done..."
 }
 
@@ -214,9 +381,12 @@
   cd $Start_PATH
   Line_NO=`cat client_install | grep -n '# Master Hostname here' | sed 's/:.*//g'`
-  debug_info "debug...Master hostname here line number = $Line_NO..."
+  debug_info $client_PassMaster_Hostname_echo_1
+# debug_info "debug...Master hostname here line number = $Line_NO..."
   sed -i ''$((Line_NO+1))'d' client_install
-  debug_info "debug...edit Master Hostname at line $((Line_NO+1))..."
+  debug_info $client_PassMaster_Hostname_echo_2
+# debug_info "debug...edit Master Hostname at line $((Line_NO+1))..."
   sed -i ''$Line_NO'a Master_Hostname='$(hostname)'' client_install
-  debug_info "edit client_install done..."
+  debug_info $client_PassMaster_Hostname_echo_3
+# debug_info "edit client_install done..."
 }
 
@@ -228,5 +398,8 @@
   # 將Master_IP_Address給client
   # 打包安裝目錄(不含tomcat)
-  debug_info "function make_client_install..."
+ 
+  debug_info $make_client_install_echo_1
+# debug_info "function make_client_install..."
+
   client_PassMasterIPAddr
   client_PassMaster_Hostname
@@ -240,25 +413,38 @@
 
 function start_up_tomcat () {
-  debug_info "start up tomcat..."
+  debug_info $start_up_tomcat_echo_1
+# debug_info "start up tomcat..."
+
   i=10
   until [ $i -lt 1 ]
     do
       sleep 1s
-      debug_info "wait $i sec..."
+      debug_info $start_up_tomcat_echo_2
+#     debug_info "wait $i sec..."
       i=`expr $i - 1`
     done
   su nutchuser -c "$Tomcat_HOME/bin/startup.sh"
-  debug_info "tomcat has been started..."
+  debug_info $start_up_tomcat_echo_3
+# debug_info "tomcat has been started..."
 }
 
 ###最後再整理###
 # client簡易步驟
-function client_install_command () {
-  show_info "Client Install Command as Follows:"
-  show_info "cd ~"
-  show_info "mkdir nutchez_client_install"
-  show_info "cd nutchez_client_install"
-  show_info "scp nutchuser@$MasterIP_Address:/home/nutchuser/nutchez/source/* ."
-  show_info "sudo su"
-  show_info "./client_install"
-}
+function client_install_commands () {
+  show_info $client_install_commands_echo_1
+  show_info $client_install_commands_echo_2
+  show_info $client_install_commands_echo_3
+  show_info $client_install_commands_echo_4
+  show_info $client_install_commands_echo_5
+  show_info $client_install_commands_echo_6
+  show_info $client_install_commands_echo_7
+
+
+#  show_info "Client Install Command as Follows:"
+#  show_info "cd ~"
+#  show_info "mkdir nutchez_client_install"
+#  show_info "cd nutchez_client_install"
+#  show_info "scp nutchuser@$MasterIP_Address:/home/nutchuser/nutchez/source/* ."
+#  show_info "sudo su"
+#  show_info "./client_install"
+}
Index: /nutchez-0.2/src/test/install_lang.zh
===================================================================
--- /nutchez-0.2/src/test/install_lang.zh	(revision 194)
+++ /nutchez-0.2/src/test/install_lang.zh	(revision 195)
@@ -1,2 +1,136 @@
-Good="檢查完成"
-Bra_Bra_Bra="開始安裝"
+#!/bin/bash
+# Program:
+#   Chinese Language file for client_install
+# Author:
+#   Waue, Shunfa, Rock {waue, shunfa, rock}@nchc.org.tw
+# Version:
+#    1.0
+# History:
+#
+
+## Lang for master_install ##
+main_echo_1="歡迎使用NutchEZ, 此安裝程序會為您新建一個nutchuser帳號並協助您設定>密碼"
+main_echo_2="請確認上述的安裝資訊：1.正確 2.不正確"
+main_echo_3="安裝成功！"
+main_echo_4="請進入管理頁面：http://$MasterIP_Address:8080"
+
+## Lang for master_install_func.sh ##
+### [for choose_lang()] ###
+choose_lang_1="請選擇語言: (1)English (2)中文"
+choose_lang_2="(1/2):"
+
+### [for check_root()]###
+check_root_1="請切換成 root 身份執行!!!"
+check_root_2="身份是 root"
+
+### [for check_systemInfo()]###
+check_sys_1="check_systemInfo"
+check_sys_2="作業系統為: "
+
+### [for install_packages()]###
+install_pack_1="install_packages"
+install_pack_2="檢查套件相依性"
+install_pack_if_1="將會安裝 expect, ssh 和 dialog　套件"
+install_pack_if_2="請手動安裝 expect, ssh 和 dialog 套件"
+
+### [for check_nez_installed()] ###
+check_nez_1="chcheck_nez_installed"
+check_nez_2="系統先前已安裝NutchEz"
+check_nez_3="系統尚未安裝 NutchEz"
+
+### [for check_sunJava()] ###
+check_sunJava_1="check_sunJava"
+check_sunJava_2="NutchEz 需要 Sun Java JDK 1.6 以上的版本"
+check_sunJava_if_1="Java 並不是 Sun　版本, 請自行安裝 Sun 版本的 Java"
+check_sunJava_if_2="請輸入您的選擇: "
+check_sunJava_if_3="(1)系統沒有 Sun Java (2)Sun Java已安裝並於其他路徑 (3)結束"
+check_sunJava_if_4="請選擇 (1/2/3): "
+check_sunJava_if_5="請自行安裝 Sun Java 1.6 以上版本"
+check_sunJava_if_6="請輸入 Sum Java 的家路徑 (例如： '/usr/lib/jvm/java-6-sun-1.6.0.12'): "
+check_sunJava_if_7="Java 並不是 Sun　版本, 請自行安裝 Sun 版本的 Java"
+check_sunJava_if_8="Java 版本太舊 (請更新至 1.6　以上版本)"
+check_sunJava_if_9="系統有 Sun Java 1.6 以上版本"
+check_sunJava_if_10="請自行安裝 Sun Java 1.6 以上版本"
+
+### [for check_ssh()] ###
+check_ssh_1="check_ssh"
+check_ssh_2="系統已有 ssh."
+check_ssh_3="請安裝 ssh."
+check_ssh_4="系統已有 ssh Server (sshd)."
+check_ssh_5="請安裝 ssh Server (sshd)."
+
+### [for check_dialog()] ###
+check_dialog_1="check_dialog"
+check_dialog_2="系統已有 dialog."
+check_dialog_3="請安裝 dialog."
+
+#
+set_nutchuser_passwd_echo_1="請輸入欲設定的nutchuser密碼："
+set_nutchuser_passwd_echo_2="請再輸入一次確認密碼："
+
+#
+select_eth_echo_1="系統偵測到目前擁有網卡如下："
+select_eth_echo_2="請選擇欲給nutchez使用的網卡(1/2/3)："
+select_eth_echo_3="您選擇的網卡為：$net_choice"
+select_eth_echo_4="Master網路IP位址為：$net_address"
+select_eth_echo_5="Master的MAC為：$net_MacAddr"
+
+#
+make_ssh_key_echo_1="正在產生SSH Key... "
+make_ssh_key_echo_2="SSH Key已產生"
+
+#
+set_haoop_site_echo_1="正在設定hadoop-site.xml... "
+set_haoop_site_echo_2="hadoop-site.xml設定完成"
+
+#
+set_nutch_site_echo_1="正在設定nutch-site.xml..."
+set_nutch_site_echo_2="http.agent.url 設定行號為：$Line_NO..."
+set_nutch_site_echo_3="編輯http.agent.url, 刪除行號 $Line_NO."
+set_nutch_site_echo_4="編輯http.agent.url完成"
+set_nutch_site_echo_5="http.agent.email 設定行號為：$Line_NO."
+set_nutch_site_echo_6="編輯http.agent.email, 刪除行號 $Line_NO."
+set_nutch_site_echo_7="編輯http.agent.email完成"
+set_nutch_site_echo_8="hadoop-site.xml設定完成"
+
+#
+format_HDFS_echo_1="格式化HDFS..."
+format_HDFS_echo_2="格式化HDFS完成"
+
+#
+start_up_NutchEZ_echo_1="啟動NutchEZ..."
+
+#
+set_hosts_echo_1="設定master上的hosts"
+
+#
+install_Nutch_echo_1="Master的IP位址為："
+install_Nutch_echo_2="Master的Hostname為："
+
+#
+client_PassMasterIPAddr_echo_1="在client安裝檔修改MasterIP的行號: $Line_NO"
+client_PassMasterIPAddr_echo_2="編輯MasterIP..."
+client_PassMasterIPAddr_echo_3="完成編輯MasterIP."
+
+#
+client_PassMaster_Hostname_echo_1="在client安裝檔修改Hostname, 行號為: $Line_NO"
+client_PassMaster_Hostname_echo_2="編輯Hostname..."
+client_PassMaster_Hostname_echo_3="完成編輯Hostname."
+
+#
+make_client_install_echo_1="於function make_client_install ..."
+
+#
+start_up_tomcat_echo_1="啟動tomcat..."
+start_up_tomcat_echo_2="等待 $i 秒..."
+start_up_tomcat_echo_3="tomcat 已經啟動！"
+
+#
+client_install_commands_echo_1="Client安裝可參考以下指令："
+client_install_commands_echo_2="cd ~"
+client_install_commands_echo_3="mkdir nutchez_client_install"
+client_install_commands_echo_4="cd nutchez_client_install"
+client_install_commands_echo_5="scp nutchuser@$MasterIP_Address:/home/nutchuser/nutchez/source/* ."
+client_install_commands_echo_6="sudo su"
+client_install_commands_echo_7="./client_install"
+
Index: /nutchez-0.2/src/test/lang_zh_TW_client_install
===================================================================
--- /nutchez-0.2/src/test/lang_zh_TW_client_install	(revision 194)
+++ /nutchez-0.2/src/test/lang_zh_TW_client_install	(revision 195)
@@ -45,5 +45,5 @@
 check_sunJava_if_1="Java 並不是 Sun　版本, 請自行安裝 Sun 版本的 Java"
 check_sunJava_if_2="請輸入您的選擇: "
-check_sunJava_if_3="(1)系統沒有 Sun Java (2)Sun Java　再其他路徑 (3)結束"
+check_sunJava_if_3="(1)系統沒有 Sun Java (2)Sun Java　在其他路徑 (3)結束"
 check_sunJava_if_4="請選擇 (1/2/3): "
 check_sunJava_if_5="請自行安裝 Sun Java 1.6 以上版本"
