1 | #!/bin/bash |
---|
2 | # Program: |
---|
3 | # DRBL virt module |
---|
4 | # Author: |
---|
5 | # Jazz, Rock {jazz, rock}@nchc.org.tw |
---|
6 | # Version: |
---|
7 | # 1.0 |
---|
8 | # History: |
---|
9 | # 2010/07/20 Rock First release (1.0) |
---|
10 | |
---|
11 | # [Variable Declation] |
---|
12 | cpu_flag="no" |
---|
13 | Linux_bit="" |
---|
14 | Linux_Distribution="" |
---|
15 | Linux_Version="" |
---|
16 | VMM_select="" |
---|
17 | |
---|
18 | # [Check Root] |
---|
19 | function check_root(){ |
---|
20 | if [ $USER != "root" ]; then |
---|
21 | echo -e "Please change root to run it!" |
---|
22 | exit |
---|
23 | fi |
---|
24 | } |
---|
25 | |
---|
26 | function check_root_run(){ |
---|
27 | if [ $USER != "root" ]; then |
---|
28 | echo -e "Please change root to run it!" |
---|
29 | sudo su -c ~/"$0" "$@" |
---|
30 | exit |
---|
31 | fi |
---|
32 | } |
---|
33 | |
---|
34 | |
---|
35 | # [Check CPU support] |
---|
36 | function cpu_check(){ |
---|
37 | egrep '(vmx|svm)' --color=always /proc/cpuinfo > /dev/null |
---|
38 | if [ $? == 0 ]; then |
---|
39 | cpu_flag="yes" |
---|
40 | fi |
---|
41 | } |
---|
42 | |
---|
43 | # [Check System Version] |
---|
44 | function check_systemInfo(){ |
---|
45 | Linux_bit=$(uname -m) |
---|
46 | Linux_Distribution=$(lsb_release -i | awk '{print $3}') |
---|
47 | Linux_Version=$(lsb_release -r | awk '{print $2}') |
---|
48 | } |
---|
49 | |
---|
50 | # [Select Hypervisior(Xen/KVM)] |
---|
51 | function VMM_select(){ |
---|
52 | echo "" |
---|
53 | if [ $cpu_flag == "yes" ]; then |
---|
54 | while [ "$VMM_select" != "1" -a "$VMM_select" != "2" ] |
---|
55 | do |
---|
56 | read -p "Which VMM/Hypervisior will be used in DRBL (1)Xen (2)KVM: " VMM_select |
---|
57 | done |
---|
58 | if [ $VMM_select == "1" ]; then |
---|
59 | echo "Xen" > $Work_Home/etc/hypervisior |
---|
60 | else |
---|
61 | echo "KVM" > $Work_Home/etc/hypervisior |
---|
62 | fi |
---|
63 | else |
---|
64 | echo "Xen will be the only Hypervisior in your DRBL" |
---|
65 | echo -e "Because CPU don't support virtualization, it can't choose KVM to be the Hypervisior" |
---|
66 | echo "" |
---|
67 | VMM_select=1 |
---|
68 | echo "Xen" > $Work_Home/etc/hypervisior |
---|
69 | fi |
---|
70 | } |
---|
71 | |
---|
72 | |
---|
73 | # [Create drbl-virt path] |
---|
74 | function install_drbl-virt_dir(){ |
---|
75 | mkdir -p $Work_Home/.tmp |
---|
76 | mkdir -p $Work_Home/etc |
---|
77 | } |
---|
78 | |
---|
79 | |
---|
80 | # [Check Hypervisior] |
---|
81 | function check_hypervisior(){ |
---|
82 | hypervisior=$(cat $Work_Home/etc/hypervisior) |
---|
83 | } |
---|
84 | |
---|
85 | |
---|
86 | # [Check Debian Xen package] |
---|
87 | function check_debian_xen(){ |
---|
88 | aptitude update |
---|
89 | check_debian_xen_pkg=$(aptitude search xen-linux-system) |
---|
90 | if [ -n $check_debian_xen_pkg ]; then |
---|
91 | check_debian_xen_pkg="yes" |
---|
92 | else |
---|
93 | check_debian_xen_pkg="no" |
---|
94 | fi |
---|
95 | } |
---|
96 | |
---|
97 | |
---|
98 | # [Check Xen kernel] |
---|
99 | function check_xen_nu(){ |
---|
100 | Kernels=$(ls /boot | grep vmlinuz) |
---|
101 | declare -i Kernels_nu=$(echo $Kernels | wc -w) |
---|
102 | Kernel_choose="" |
---|
103 | |
---|
104 | Xens=$(ls /boot | grep -i ^xen) |
---|
105 | declare -i Xen_nu=$(echo $Xen | wc -w) |
---|
106 | Xen_choose="" |
---|
107 | |
---|
108 | jude="no" |
---|
109 | |
---|
110 | while [ $jude != "yes" -a $jude != "y" ] |
---|
111 | do |
---|
112 | declare -i i=1 |
---|
113 | declare -i j=1 |
---|
114 | echo "" |
---|
115 | |
---|
116 | if [ $Kernels_nu -gt 1 ]; then |
---|
117 | for Kernel in $Kernels |
---|
118 | do |
---|
119 | echo "($i) $Kernel" |
---|
120 | i=i+1 |
---|
121 | done |
---|
122 | |
---|
123 | read -p "Xen Kenrel is (1/2/...): " Kernel_choose |
---|
124 | Xen_Kernel=$(echo $Kernels | cut -d " " -f${Kernel_choose}) |
---|
125 | |
---|
126 | else |
---|
127 | Xen_Kernel=$Kernels |
---|
128 | fi |
---|
129 | |
---|
130 | if [ $Xen_nu -gt 1 ]; then |
---|
131 | for Xen in $Xens |
---|
132 | do |
---|
133 | echo "($i) $Xen" |
---|
134 | j=j+1 |
---|
135 | done |
---|
136 | |
---|
137 | read -p "Xen is (1/2/...): " Xen_choose |
---|
138 | Xen=$(echo $Xens | cut -d " " -f${Xen_choose}) |
---|
139 | else |
---|
140 | Xen=$Xens |
---|
141 | fi |
---|
142 | |
---|
143 | read -p "Are you sure (yes/no): " jude |
---|
144 | done |
---|
145 | |
---|
146 | #echo "debug: Xen_Kernel=$Xen_Kernel" |
---|
147 | } |
---|
148 | |
---|
149 | |
---|
150 | function debain-lenny_xen_patch(){ |
---|
151 | echo xen.independent_wallclock=1 >> /etc/sysctl.conf |
---|
152 | echo loop max_loop=255 >> /etc/modules |
---|
153 | echo xenblktap >> /etc/modules |
---|
154 | ln -s /usr/lib/$/bin/tapdisk /usr/sbin |
---|
155 | } |
---|
156 | |
---|
157 | |
---|
158 | function get_DRBL_eth(){ |
---|
159 | eths=$(ls /etc/drbl | grep macadr-eth[0-9] | grep [0-9].txt | cut -d "-" -f2 | cut -d "." -f1) |
---|
160 | eths_nu=$(echo $eths | wc -l) |
---|
161 | |
---|
162 | |
---|
163 | } |
---|
164 | |
---|
165 | function get_Host_IP_range(){ |
---|
166 | if [ ! -e /usr/bin/ipcalc ] || [ ! -e /opt/drbl/bin/drbl-get-network ] || [ ! -e /opt/drbl/bin/drbl-get-ipadd ]; then |
---|
167 | echo "Don't find /usr/bin/ipcalc /opt/drbl/bin/drbl-get-network & /opt/drbl/bin/drbl-get-ipadd" |
---|
168 | exit 0 |
---|
169 | fi |
---|
170 | |
---|
171 | # get eth network |
---|
172 | eth_address=$(/opt/drbl/bin/drbl-get-ipadd $1) |
---|
173 | eth_netmask=$(/opt/drbl/bin/drbl-get-netmask $1) |
---|
174 | eth_network=$(/opt/drbl/bin/drbl-get-network $eth_address $eth_netmask) |
---|
175 | eth_network_f3=$(echo $eth_network | cut -d "." -f 1-3) |
---|
176 | |
---|
177 | IP_nu=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | wc -l) |
---|
178 | Host_first_IP=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | awk "NR==1 {print $1}" | awk '{print 1}') |
---|
179 | Host_last_IP=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | awk "NR==$IP_nu {print $1}"| awk '{print $1}') |
---|
180 | |
---|
181 | } |
---|
182 | |
---|
183 | function get_VM_IP_range(){ |
---|
184 | echo "" |
---|
185 | echo "DRBL client IP range -> $1 [$Host_first_IP ~ $Host_last_IP]" |
---|
186 | |
---|
187 | declare -i Host_last_IP_4=$(echo $Host_last_IP | cut -d "." -f4) |
---|
188 | Host_last_IP_4=$(($Host_last_IP_4+1)) |
---|
189 | VM_first_IP=$(echo $Host_last_IP | cut -d "." -f 1-3) |
---|
190 | VM_first_IP="${VM_first_IP}.${Host_last_IP_4}" |
---|
191 | |
---|
192 | echo "The VM IP Range will start from -> [$VM_first_IP]" |
---|
193 | jude="no" |
---|
194 | while [ $jude != "yes" -a $jude != "y" ]; |
---|
195 | do |
---|
196 | echo "" |
---|
197 | echo "Input VM number/IP range in $1 (ex. 40)." |
---|
198 | read -p "(If you have 10 PCs(4-core), suggestion is 30): " VM_IP_range |
---|
199 | read -p "Is it correct? (yes/no): " jude |
---|
200 | done |
---|
201 | |
---|
202 | #echo "VM_first_IP=$VM_first_IP" |
---|
203 | #echo "VM_IP_range=$VM_IP_range" |
---|
204 | } |
---|
205 | |
---|
206 | function get_VM_prefix_name(){ |
---|
207 | jude="no" |
---|
208 | while [ $jude != "yes" -a $jude != "y" ]; |
---|
209 | do |
---|
210 | echo "" |
---|
211 | read -p "Input Prefix name for VM in $1 (ex. drblvm): " VM_prefix_name |
---|
212 | read -p "Is it correct? (yes/no): " jude |
---|
213 | done |
---|
214 | #echo "VM_prefix_name=$VM_prefix_name" |
---|
215 | } |
---|
216 | |
---|
217 | function create_VM_IP_table(){ |
---|
218 | #/etc/drbl-virt/etc/IP_VM_eth |
---|
219 | |
---|
220 | } |
---|
221 | |
---|
222 | |
---|
223 | |
---|
224 | |
---|