Index: drbl-virt/sbin/drbl_xen_patch.sh
===================================================================
--- drbl-virt/sbin/drbl_xen_patch.sh	(revision 204)
+++ drbl-virt/sbin/drbl_xen_patch.sh	(revision 205)
@@ -17,4 +17,5 @@
 # = 1. Patch DRBL xen env for client =
 # == Shutdown all drbl client ==
+echo ""
 echo "Please check all client are shutdown !!!"
 echo "you can use /opt/drbl/sbin/dcs to shutdown."
Index: drbl-virt/sbin/functions_drbl_virt
===================================================================
--- drbl-virt/sbin/functions_drbl_virt	(revision 204)
+++ drbl-virt/sbin/functions_drbl_virt	(revision 205)
@@ -197,4 +197,6 @@
 VM_first_IP=$(echo $Host_last_IP | cut -d "." -f 1-3)
 VM_first_IP="${VM_first_IP}.${Host_last_IP_4}"
+drbl_original_clients_nu=$(sed -n '/total_client_no/p' /etc/drbl/drblpush.conf | sed 's/total_client_no=//')
+
 
 echo "The VM IP Range will start from -> [$VM_first_IP]"
@@ -204,4 +206,6 @@
     echo ""
     echo "Input VM number/IP range for $eth (ex. 40)."
+    echo "default is the same numbers of drbl clients"
+    
 
     jude_2="no"
@@ -209,5 +213,6 @@
     do
         jude_2="yes"
-        read -p "(If you have 10 PCs(4-core), suggestion is 30): " VM_IP_range
+        echo "(If you have 10 PCs(4-core), suggestion is 30): "
+        read -p "[$drbl_original_clients_nu] " VM_IP_range
         if [ $((${VM_IP_range}+${Host_last_IP_4})) -ge 254 ]; then
             echo "range can't greater than 254"
Index: drbl-virt/sbin/xen_intall.sh
===================================================================
--- drbl-virt/sbin/xen_intall.sh	(revision 204)
+++ 	(revision )
@@ -1,41 +1,0 @@
-#!/bin/bash
-# Program:
-#   DRBL virt module
-# Author: 
-#   Jazz, Rock {jazz, rock}@nchc.org.tw
-# Version:
-#    1.0
-# History:                                                                                          
-#   2010/07/20  Rock    First release (1.0) 
-
-# [ Intall ] 
-case $Linux_Distribution in
-    # for Ubuntu
-    "Ubuntu")
-        echo "Only support Debain"
-    ;;
-    # for Debian
-    "Debian")
-        # check bit
-        echo $Linux_bit | grep 64                                                                                                                          
-        if [ $? == 0 ]; then
-            Linux_bit="amd64"
-        else
-            Linux_bit="686"
-        fi  
-        
-        # check version
-        echo $Linux_Version | grep "^5"
-        if [ $? == 0 ]; then
-            aptitude update
-            aptitude install xen-linux-system-2.6.26-2-xen-${Linux_bit} xen-tools
-        fi
-    ;;
-    # for Fedora
-    "Fedora")        
-        echo "Only support Debain"
-    ;;
-    *)
-        echo "Only support Debain"
-    ;;
-esac
