Index: nutchez-0.2/src/test/client_install_func.sh
===================================================================
--- nutchez-0.2/src/test/client_install_func.sh	(revision 132)
+++ nutchez-0.2/src/test/client_install_func.sh	(revision 133)
@@ -27,9 +27,7 @@
 echo -e "\n= check_systemInfo (debug) ="
 echo -e "\nYour system information are:"
-distribution=$(lsb_release -d 2>/dev/null)
-Linux_Distribution=$(echo $distribution | awk '{print $2}')
-Linux_Version=$(echo $distribution | awk '{print $3}')
+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}')
 echo $Linux_Distribution , $Linux_Version
-unset distribution
 }
 
@@ -38,4 +36,6 @@
 function install_packages(){
 # deb 系列系統
+echo -e "\n= install_packages (debug) ="
+echo -e "\nCheck dependent packages"
 if [ "$Linux_Distribution" == "Ubuntu" ] || [ "$Linux_Distribution" == "Debian" ] ;then
     aptitude install -y expect ssh dialog
@@ -136,5 +136,5 @@
 else
     echo -e "\nplz install PHP 5 version!"
-#    exit
+    exit
 fi
 }
