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 | if [ $cpu_flag == "yes" ]; then |
---|
53 | while [ "$VMM_select" != "1" -a "$VMM_select" != "2" ] |
---|
54 | do |
---|
55 | read -p "Which VMM/Hypervisior will be used in DRBL (1)Xen (2)KVM: " VMM_select |
---|
56 | done |
---|
57 | if [ $VMM_select == "1" ]; then |
---|
58 | echo "Xen" > $Work_Home/.tmp/hypervisior |
---|
59 | else |
---|
60 | echo "KVM" > $Work_Home/.tmp/hypervisior |
---|
61 | fi |
---|
62 | else |
---|
63 | echo "Xen will be the only Hypervisior in your DRBL" |
---|
64 | echo -e "Because CPU don't support virtualization, it can't choose KVM to be the Hypervisior" |
---|
65 | echo "" |
---|
66 | VMM_select=1 |
---|
67 | echo "Xen" > $Work_Home/.tmp/hypervisior |
---|
68 | fi |
---|
69 | } |
---|
70 | |
---|
71 | |
---|
72 | # [Create drbl-virt path] |
---|
73 | function install_drbl-virt_dir(){ |
---|
74 | mkdir -p $Work_Home/.tmp |
---|
75 | } |
---|
76 | |
---|
77 | |
---|
78 | # [Check Hypervisior] |
---|
79 | function check_hypervisior(){ |
---|
80 | hypervisior=$(cat $Work_Home/.tmp/hypervisior) |
---|
81 | } |
---|
82 | |
---|
83 | |
---|
84 | # [Check Debian Xen package] |
---|
85 | function check_debian_xen(){ |
---|
86 | aptitude update |
---|
87 | check_debian_xen_pkg=$(aptitude search xen-linux-system) |
---|
88 | if [ -n $check_debian_xen_pkg ]; then |
---|
89 | check_debian_xen_pkg="yes" |
---|
90 | else |
---|
91 | check_debian_xen_pkg="no" |
---|
92 | fi |
---|
93 | } |
---|
94 | |
---|
95 | |
---|
96 | # [Check Xen kernel] |
---|
97 | function check_xen_nu(){ |
---|
98 | Kernels=$(ls /boot | grep vmlinuz) |
---|
99 | Kernel_choose="" |
---|
100 | jude="no" |
---|
101 | |
---|
102 | while [ $jude != "yes" -a $jude != "y" ] |
---|
103 | do |
---|
104 | declare -i i=1 |
---|
105 | echo "" |
---|
106 | |
---|
107 | for Kernel in $Kernels |
---|
108 | do |
---|
109 | echo "($i) $Kernel" |
---|
110 | i=i+1 |
---|
111 | done |
---|
112 | |
---|
113 | read -p "Xen Kenrel is (1/2/...): " Kernel_choose |
---|
114 | read -p "Are you sure (yes/no): " jude |
---|
115 | done |
---|
116 | |
---|
117 | Xen_Kernel=$(echo $Kernels | cut -d " " -f${Kernel_choose}) |
---|
118 | #echo "debug: Xen_Kernel=$Xen_Kernel" |
---|
119 | } |
---|
120 | |
---|
121 | # [DRBL Check] |
---|
122 | |
---|
123 | |
---|
124 | |
---|