温馨提示:本站所有内容均来源网络,请自行区分好坏。

Debian/Ubuntu/CentOS 网络安装/重装系统/纯净安装 一键脚本

背景:

适用于由GRUB引导的CentOS,Ubuntu,Debian系统.
使用官方发行版去掉模板预装的软件.
同时也可以解决内核版本与软件不兼容的问题。
只要有root权限,还您一个纯净的系统。

注意:

全自动安装默认root密码:Vicer,安装完成后请立即更改密码.

能够全自动重装Debian/Ubuntu/CentOS等系统.

同时提供dd安装镜像功能,例如: 全自动无救援dd安装windows系统

全自动安装CentOS时默认提供VNC功能,可使用VNC Viewer查看进度,
VNC端口1或者5901,可自行尝试连接.(成功后VNC功能会消失.)

目前CentOS系统只支持任意版本重装为 CentOS 6.x 及以下版本.

特别注意:OpenVZ构架不适用.

[2018.08.10]

更新:

修复一些Bug.
增加 -i 参数.(用于指定网卡)

[2018.06.09]

支持自定义远程桌面端口并打开相关防火墙端口(默认为3389).
自动扩展系统盘空间为整个硬盘.
增加 -rdp 参数.(用于更换RDP端口,并强制打开该端口防火墙)

[2018.04.17]

修复对grub.conf抓取识别的问题.

[2018.04.06]

优化正则表达式.
丢弃对grep -P的依赖.

[2018.04.03]

合并Debian/Ubuntu/CentOS/dd安装镜像功能.
使用最少依赖原则.
优化部分流程.
修复一些已知BUG.


依赖包:

 

1
2
3
4
5
6
7
8
9
10
11
#二进制文件    Debian/Ubuntu    RedHat/CentOS
iconv         [libcbin]       [glibccommon]
xz            [xzutils]       [xz]
awk           [gawk]           [gawk]
sed           [sed]            [sed]
file          [file]           [file]
grep          [grep]           [grep]
openssl       [openssl]        [openssl]
cpio          [cpio]           [cpio]
gzip          [gzip]           [gzip]
cat,cut..     [coreutils]      [coreutils]

确保安装了所需软件:

 

1
2
3
4
5
#Debian/Ubuntu:
aptget install y xzutils openssl gawk file
#RedHat/CentOS:
yum install y xz openssl gawk file

如果出现了错误,请运行:

 

1
2
3
4
5
#Debian/Ubuntu:
aptget update
#RedHat/CentOS:
yum update

一键下载及使用:

 

1
wget nocheckcertificate qO InstallNET.sh ‘https://moeclub.org/attachment/LinuxShell/InstallNET.sh’ && chmod a+x InstallNET.sh

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Usage:
        bash InstallNET.sh      d/debian [distname]
                                u/ubuntu [distname]
                                c/centos [distversion]
                                v/ver [32/i386|64/amd64]
                                ipaddr/ipgate/ipmask
                                apt/yum/mirror
                                dd/image
                                a/m
# dist-name: 发行版本代号
# dist-version: 发行版本号
# -apt/-yum/–mirror : 使用定义镜像
# -a/-m : 询问是否能进入VNC自行操作. -a 为不提示(一般用于全自动安装), -m 为提示.

使用示例:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#使用默认镜像全自动安装
bash InstallNET.sh d 8 v 64 a
#使用自定义镜像全自动安装
bash InstallNET.sh c 6.9 v 64 a mirror ‘http://mirror.centos.org/centos’
# 以下示例中,将X.X.X.X替换为自己的网络参数.
# –ip-addr :IP Address/IP地址
# –ip-gate :Gateway   /网关
# –ip-mask :Netmask   /子网掩码
#使用自定义镜像自定义网络参数全自动安装
#bash InstallNET.sh -u 16.04 -v 64 -a –ip-addr x.x.x.x –ip-gate x.x.x.x –ip-mask x.x.x.x –mirror ‘http://archive.ubuntu.com/ubuntu’
#尝试全自动安装比较旧的CentOS版本时,可另自定义镜像参数为空.
#默认就会自动启用备用源
#bash InstallNET.sh -c 6.9 -v 64 -a –mirror ”
#使用自定义网络参数全自动dd方式安装
#bash InstallNET.sh –ip-addr x.x.x.x –ip-gate x.x.x.x –ip-mask x.x.x.x -dd ‘https://moeclub.org/get-win7embx86-auto’
#使用自定义网络参数全自动dd方式安装存储在谷歌网盘中的镜像(调用文件ID的方式)
#bash InstallNET.sh –ip-addr x.x.x.x –ip-gate x.x.x.x –ip-mask x.x.x.x -dd “$(echo “14xB2k9r36NRzWhO0lzjf604EB7B6JLH0″ |xargs -n1 bash <(wget –no-check-certificate -qO- ‘https://moeclub.org/get-gdlink’))”
#使用自定义网络参数全自动dd方式安装存储在谷歌网盘中的镜像
#bash InstallNET.sh –ip-addr x.x.x.x –ip-gate x.x.x.x –ip-mask x.x.x.x -dd “$(echo “https://drive.google.com/open?id=14xB2k9r36NRzWhO0lzjf604EB7B6JLH0″ |xargs -n1 bash <(wget –no-check-certificate -qO- ‘https://moeclub.org/get-gdlink’))”

一些提示:

特别注意:

萌咖提供的dd安装镜像
远程登陆账号为: Administrator
远程登陆密码为: Vicer
仅修改了主机名,可放心使用.(建议自己制作.)

在dd安装系统镜像时:

在你的机器上全新安装,如果你有VNC,可以看到全部过程.
在dd安装镜像的过程中,不会走进度条(进度条一直显示为0%).完成后将会自动重启.
分区界面标题一般显示为: “Starting up the partitioner
使用谷歌网盘中储存的镜像: [无限制大小] 获取谷歌网盘文件临时直接下载链接

在全自动安装CentOS时:

如果看到 “Starting graphical installation” 或者类似表达,则表示正在安装.
正常情况下只需要耐心等待安装完成即可.
如果需要查看进度,使用VNC Viewer(或者其他VNC连接工具)
连接提示中的IP地址:端口进行连接.(端口一般为1或者5901)

预览:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
#!/bin/bash
## It can reinstall Debian, Ubuntu, CentOS system with network.
## Suitable for using by GRUB.
## Default root password: Vicer
## Blog: https://moeclub.org
## Written By Vicer
export tmpVER=
export tmpDIST=
export tmpURL=
export tmpWORD=
export tmpMirror=
export tmpSSL=
export tmpINS=
export tmpFW=
export ipAddr=
export ipMask=
export ipGate=
export linuxdists=
export ddMode=‘0’
export setNet=‘0’
export setRDP=‘0’
export isMirror=‘0’
export FindDists=‘0’
export SpikCheckDIST=‘0’
export UNKNOWHW=‘0’
export UNVER=‘6.4’
while [[ $# -ge 1 ]]; do
  case $1 in
    v|ver)
      shift
      tmpVER=“$1”
      shift
      ;;
    d|debian)
      shift
      linuxdists=‘debian’
      tmpDIST=“$1”
      shift
      ;;
    u|ubuntu)
      shift
      linuxdists=‘ubuntu’
      tmpDIST=“$1”
      shift
      ;;
    c|centos)
      shift
      linuxdists=‘centos’
      tmpDIST=“$1”
      shift
      ;;
    dd|image)
      shift
      ddMode=‘1’
      tmpURL=“$1”
      shift
      ;;
    p|password)
      shift
      tmpWORD=“$1”
      shift
      ;;
    i|interface)
      shift
      interface=“$1”
      shift
      ;;
    ipaddr)
      shift
      ipAddr=“$1”
      shift
      ;;
    ipmask)
      shift
      ipMask=“$1”
      shift
      ;;
    ipgate)
      shift
      ipGate=“$1”
      shift
      ;;
    a|auto)
      shift
      tmpINS=‘auto’
      ;;
    m|manual)
      shift
      tmpINS=‘manual’
      ;;
    apt|yum|mirror)
      shift
      isMirror=‘1’
      tmpMirror=“$1”
      shift
      ;;
    rdp)
      shift
      setRDP=‘1’
      WinRemote=“$1”
      shift
      ;;
    ssl)
      shift
      tmpSSL=“$1”
      shift
      ;;
    firmware)
      shift
      tmpFW=‘1’
      ;;
    *)
      if [[ “$1” != ‘error’ ]]; then echo ne “\nInvaild option: ‘$1’\n\n”; fi
      echo ne ” Usage:\n\tbash DebianNET.sh\t-d/–debian [\033[33m\033[04mdists-name\033[0m]\n\t\t\t\t-u/–ubuntu [\033[04mdists-name\033[0m]\n\t\t\t\t-c/–centos [\033[33m\033[04mdists-verison\033[0m]\n\t\t\t\t-v/–ver [32/\033[33m\033[04mi386\033[0m|64/amd64]\n\t\t\t\t–ip-addr/–ip-gate/–ip-mask\n\t\t\t\t-apt/-yum/–mirror\n\t\t\t\t-dd/–image\n\t\t\t\t-a/–auto\n\t\t\t\t-m/–manual\n”
      exit 1;
      ;;
    esac
  done
[[ “$EUID” ne ‘0’ ]] && echo “Error:This script must be run as root!” && exit 1;
function CheckDependence(){
FullDependence=‘0’;
for BIN_DEP in `echo “$1” |sed ‘s/,/\n/g’`
  do
    if [[ n “$BIN_DEP” ]]; then
      Founded=‘0’;
      for BIN_PATH in `echo “$PATH” |sed ‘s/:/\n/g’`
        do
          ls $BIN_PATH/$BIN_DEP >/dev/null 2>&1;
          if [ $? == ‘0’ ]; then
            Founded=‘1’;
            break;
          fi
        done
      if [ “$Founded” == ‘1’ ]; then
        echo en “[\033[32mok\033[0m]\t”;
      else
        FullDependence=‘1’;
        echo en “[\033[31mNot Install\033[0m]”;
      fi
      echo en “\t$BIN_DEP\n”;
    fi
  done
if [ “$FullDependence” == ‘1’ ]; then
  echo ne “\n\033[31mError! \033[0mPlease use ‘\033[33mapt-get\033[0m’ or ‘\033[33myum\033[0m’ install it.\n\n\n”
  exit 1;
fi
}
if [[ z “$linuxdists” ]]; then
  linuxdists=‘debian’;
fi
clear && echo e “\n\033[36m# Check Dependence\033[0m\n”
if [[ “$ddMode” == ‘1’ ]]; then
  CheckDependence iconv;
  linuxdists=‘debian’;
  tmpDIST=‘jessie’;
  tmpVER=‘amd64’;
  tmpINS=‘auto’;
fi
if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
  CheckDependence wget,awk,grep,sed,cut,cat,cpio,gzip,find,dirname,basename;
elif [[ “$linuxdists” == ‘centos’ ]]; then
  CheckDependence wget,awk,grep,sed,cut,cat,cpio,gzip,find,dirname,basename,file,xz;
fi
if [[ n “$tmpWORD” ]]; then
  CheckDependence openssl;
fi
[[ f ‘/boot/grub/grub.cfg’ ]] && GRUBOLD=‘0’ && GRUBDIR=‘/boot/grub’ && GRUBFILE=‘grub.cfg’;
[[ z “$GRUBDIR” ]] && [[ f ‘/boot/grub2/grub.cfg’ ]] && GRUBOLD=‘0’ && GRUBDIR=‘/boot/grub2’ && GRUBFILE=‘grub.cfg’;
[[ z “$GRUBDIR” ]] && [[ f ‘/boot/grub/grub.conf’ ]] && GRUBOLD=‘1’ && GRUBDIR=‘/boot/grub’ && GRUBFILE=‘grub.conf’;
[ z “$GRUBDIR” o z “$GRUBFILE” ] && echo ne “Error! \nNot Found grub path.\n” && exit 1;
if [[ “$isMirror” == ‘1’ ]]; then
  if [[ n “$tmpMirror” ]]; then
    TMPMirrorHost=“$(echo -n “$tmpMirror” |grep -Eo ‘.*\.(\w+)’)”;
    echo “$TMPMirrorHost” |grep q ‘://’;
    if [[ $? == ‘0’ ]]; then
      MirrorHost=“$(echo “$TMPMirrorHost” |awk -F’://’ ‘{print $2}’)”;
    else
      echo en “\n\033[31mInvaild Mirror! \033[0m\n”;
      [[ “$linuxdists” == ‘debian’ ]] && echo en “\033[33mexample:\033[0m http://httpredir.debian.org/debian\n\n”;
      [[ “$linuxdists” == ‘ubuntu’ ]] && echo en “\033[33mexample:\033[0m http://archive.ubuntu.com/ubuntu\n\n”;
      [[ “$linuxdists” == ‘centos’ ]] && echo en “\033[33mexample:\033[0m http://mirror.centos.org/centos\n\n”;
      exit 1
    fi
    if [[ n “$MirrorHost” ]]; then
      MirrorFolder=“$(echo -n “$tmpMirror” |awk -F”${MirrorHost}” ‘{print $2}’ |sed ‘s/\/$//g’)”;
      if [[ z “$MirrorFolder” ]]; then
        [[ “$linuxdists” == ‘debian’ ]] && MirrorFolder=‘/debian’;
        [[ “$linuxdists” == ‘ubuntu’ ]] && MirrorFolder=‘/ubuntu’;
        [[ “$linuxdists” == ‘centos’ ]] && MirrorFolder=‘/centos’;
      fi
      DISTMirror=“${MirrorHost}${MirrorFolder}”;
    fi
  fi
fi
if [[ z “$DISTMirror” ]]; then
  [[ “$linuxdists” == ‘debian’ ]] && MirrorHost=‘httpredir.debian.org’ && MirrorFolder=‘/debian’ && DISTMirror=“${MirrorHost}${MirrorFolder}”;
  [[ “$linuxdists” == ‘ubuntu’ ]] && MirrorHost=‘archive.ubuntu.com’ && MirrorFolder=‘/ubuntu’ && DISTMirror=“${MirrorHost}${MirrorFolder}”;
  [[ “$linuxdists” == ‘centos’ ]] && DISTMirror=‘vault.centos.org’;
fi
if [[ n “$tmpVER” ]]; then
  tmpVER=“$(echo “$tmpVER” |sed -r ‘s/(.*)/\L\1/’)”;
  if  [[ “$tmpVER” == ’32’ ]] || [[ “$tmpVER” == ‘i386’ ]] || [[ “$tmpVER” == ‘x86’ ]]; then
    VER=‘i386’;
  fi
  if  [[ “$tmpVER” == ’64’ ]] || [[ “$tmpVER” == ‘amd64’ ]] || [[ “$tmpVER” == ‘x86_64’ ]] || [[ “$tmpVER” == ‘x64’ ]]; then
    if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
      VER=‘amd64’;
    elif [[ “$linuxdists” == ‘centos’ ]]; then
      VER=‘x86_64’;
    fi
  fi
fi
if [[ z “$VER” ]]; then
  VER=‘i386’;
fi
if [[ z “$tmpDIST” ]]; then
  [[ “$linuxdists” == ‘debian’ ]] && DIST=‘jessie’;
  [[ “$linuxdists” == ‘ubuntu’ ]] && DIST=‘xenial’;
  [[ “$linuxdists” == ‘centos’ ]] && DIST=‘6.8’;
fi
if [[ z “$DIST” ]]; then
  if [[ “$linuxdists” == ‘debian’ ]]; then
    SpikCheckDIST=‘0’
    DIST=“$(echo “$tmpDIST” |sed -r ‘s/(.*)/\L\1/’)”;
    echo “$DIST” |grep q ‘[0-9]’;
    [[ $? eq ‘0’ ]] && {
      isDigital=“$(echo “$DIST” |grep -o ‘[\.0-9]\{1,\}’ |sed -n ‘1h;1!H;$g;s/\n//g;$p’ |cut -d’.’ -f1)”;
      [[ n $isDigital ]] && {
        [[ “$isDigital” == ‘7’ ]] && DIST=‘wheezy’;
        [[ “$isDigital” == ‘8’ ]] && DIST=‘jessie’;
        [[ “$isDigital” == ‘9’ ]] && DIST=‘stretch’;
        [[ “$isDigital” == ’10’ ]] && DIST=‘buster’;
      }
    }
  fi
  if [[ “$linuxdists” == ‘ubuntu’ ]]; then
    SpikCheckDIST=‘0’
    DIST=“$(echo “$tmpDIST” |sed -r ‘s/(.*)/\L\1/’)”;
    echo “$DIST” |grep q ‘[0-9]’;
    [[ $? eq ‘0’ ]] && {
      isDigital=“$(echo “$DIST” |grep -o ‘[\.0-9]\{1,\}’ |sed -n ‘1h;1!H;$g;s/\n//g;$p’)”;
      [[ n $isDigital ]] && {
        [[ “$isDigital” == ‘12.04’ ]] && DIST=‘precise’;
        [[ “$isDigital” == ‘14.04’ ]] && DIST=‘trusty’;
        [[ “$isDigital” == ‘16.04’ ]] && DIST=‘xenial’;
        [[ “$isDigital” == ‘18.04’ ]] && DIST=‘bionic’;
      }
    }
  fi
  if [[ “$linuxdists” == ‘centos’ ]]; then
    SpikCheckDIST=‘1’
    DISTCheck=“$(echo “$tmpDIST” |grep -o ‘[\.0-9]\{1,\}’)”;
    ListDIST=“$(wget –no-check-certificate -qO- “http://$DISTMirror/dir_sizes” |cut -f2 |grep ‘^[0-9]’)”
    DIST=“$(echo “$ListDIST” |grep “^$DISTCheck” |head -n1)”
    [[ z “$DIST” ]] && {
      echo ne ‘\nThe dists version not found in this mirror, Please check it! \n\n’
      bash $0 error;
      exit 1;
    }
    wget nocheckcertificate qO “http://$DISTMirror/$DIST/os/$VER/.treeinfo” |grep q ‘general’;
    [[ $? != ‘0’ ]] && {
      echo ne “\nThe version not found in this mirror, Please change mirror try again! \n\n”;
      exit 1;
    }
  fi
fi
if [[ “$SpikCheckDIST” == ‘0’ ]]; then
  DistsList=“$(wget –no-check-certificate -qO- “http://$DISTMirror/dists/” |grep -o ‘href=.*/”‘ |cut -d'”‘ -f2 |sed ‘/-\|old\|Debian\|experimental\|stable\|test\|sid\|devel/d’ |grep ‘^[^/]’ |sed -n ‘1h;1!H;$g;s/\n//g;s/\//\;/g;$p’)”;
  for CheckDEB in `echo “$DistsList” |sed ‘s/;/\n/g’`
    do
      [[ “$CheckDEB” == “$DIST” ]] && FindDists=‘1’;
      [[ “$FindDists” == ‘1’ ]] && break;
    done
  [[ “$FindDists” == ‘0’ ]] && {
    echo ne ‘\nThe dists version not found, Please check it! \n\n’
    bash $0 error;
    exit 1;
  }
fi
[[ “$ddMode” == ‘1’ ]] && {
  export SSL_SUPPORT=‘https://moeclub.org/get-wget_udeb_amd64’;
  if [[ n “$tmpURL” ]]; then
    DDURL=“$tmpURL”
    echo “$DDURL” |grep q ‘^http://\|^ftp://\|^https://’;
    [[ $? ne ‘0’ ]] && echo ‘Please input vaild URL,Only support http://, ftp:// and https:// !’ && exit 1;
    [[ n “$tmpSSL” ]] && SSL_SUPPORT=“$tmpSSL”;
  else
    echo ‘Please input vaild image URL! ‘;
    exit 1;
  fi
}
[[ n “$tmpINS” ]] && {
  [[ “$tmpINS” == ‘auto’ ]] && inVNC=‘n’;
  [[ “$tmpINS” == ‘manual’ ]] && inVNC=‘y’;
}
[ n “$ipAddr” ] && [ n “$ipMask” ] && [ n “$ipGate” ] && setNet=‘1’;
[[ n “$tmpWORD” ]] && myPASSWORD=“$(openssl passwd -1 “$tmpWORD“)”;
[[ z “$myPASSWORD” ]] && myPASSWORD=‘$1$0shYGfBd$8v189JOozDO1jPqPO645e1’;
[[ n “$tmpFW” ]] && INCFW=“$tmpFW”;
[[ z “$INCFW” ]] && INCFW=‘0’;
if [[ n “$interface” ]]; then
  IFETH=“$interface”
else
  if [[ “$linuxdists” == ‘centos’ ]]; then
    IFETH=“link”
  else
    IFETH=“auto”
  fi
fi
clear && echo e “\n\033[36m# Install\033[0m\n”
ASKVNC(){
  inVNC=‘y’;
  [[ “$ddMode” == ‘0’ ]] && {
    echo ne “\033[34mCan you login VNC?\033[0m\e[33m[\e[32my\e[33m/n]\e[0m “
    read tmpinVNC
    [[ n “$inVNCtmp” ]] && inVNC=“$tmpinVNC”
  }
  [ “$inVNC” == ‘y’ o “$inVNC” == ‘Y’ ] && inVNC=‘y’;
  [ “$inVNC” == ‘n’ o “$inVNC” == ‘N’ ] && inVNC=‘n’;
}
[ “$inVNC” == ‘y’ o “$inVNC” == ‘n’ ] || ASKVNC;
[[ “$linuxdists” == ‘debian’ ]] && LinuxName=‘Debian’;
[[ “$linuxdists” == ‘ubuntu’ ]] && LinuxName=‘Ubuntu’;
[[ “$linuxdists” == ‘centos’ ]] && LinuxName=‘CentOS’;
[[ “$ddMode” == ‘0’ ]] && {
  [[ “$inVNC” == ‘y’ ]] && echo e “\033[34mManual Mode\033[0m insatll \033[33m$LinuxName\033[0m [\033[33m$DIST\033[0m] [\033[33m$VER\033[0m] in VNC. “
  [[ “$inVNC” == ‘n’ ]] && echo e “\033[34mAuto Mode\033[0m insatll \033[33m$LinuxName\033[0m [\033[33m$DIST\033[0m] [\033[33m$VER\033[0m]. “
}
[[ “$ddMode” == ‘1’ ]] && {
  echo ne “\033[34mAuto Mode\033[0m insatll \033[33mWindows\033[0m\n[\033[33m$DDURL\033[0m]\n”
}
if [[ “$linuxdists” == ‘centos’ ]]; then
  if [[ “$DIST” != “$UNVER” ]]; then
    awk ‘BEGIN{print ‘${UNVER}‘-‘${DIST}‘}’ |grep q ‘^-‘
    if [ $? != ‘0’ ]; then
      UNKNOWHW=‘1’;
      echo en “\033[33mThe version lower then \033[31m$UNVER\033[33m may not support in auto mode! \033[0m\n”;
      if [[ “$inVNC” == ‘n’ ]]; then
        echo en “\033[35mYou can connect VNC with \033[32mPublic IP\033[35m and port \033[32m1\033[35m/\033[32m5901\033[35m in vnc viewer.\033[0m\n”
        read n 1 p “Press Enter to continue…” INP
        [[ “$INP” != ]] && echo ne ‘\b \n\n’;
      fi
    fi
    awk ‘BEGIN{print ‘${UNVER}‘-‘${DIST}‘+0.59}’ |grep q ‘^-‘
    if [ $? == ‘0’ ]; then
      echo en “\n\033[31mThe version higher then \033[33m6.9 \033[31mis not support in current! \033[0m\n\n”
      exit 1;
    fi
  fi
fi
echo e “\n[\033[33m$LinuxName\033[0m] [\033[33m$DIST\033[0m] [\033[33m$VER\033[0m] Downloading…”
[[ z “$DISTMirror” ]] && echo ne “\033[31mError! \033[0mInvaild mirror! \n” && exit 1
if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
wget nocheckcertificate qO ‘/boot/initrd.img’ “http://$DISTMirror/dists/$DIST/main/installer-$VER/current/images/netboot/$linuxdists-installer/$VER/initrd.gz”
[[ $? ne ‘0’ ]] && echo ne “\033[31mError! \033[0mDownload ‘initrd.img’ for \033[33m$linuxdists\033[0m failed! \n” && exit 1
wget nocheckcertificate qO ‘/boot/vmlinuz’ “http://$DISTMirror/dists/$DIST/main/installer-$VER/current/images/netboot/$linuxdists-installer/$VER/linux”
[[ $? ne ‘0’ ]] && echo ne “\033[31mError! \033[0mDownload ‘vmlinuz’ for \033[33m$linuxdists\033[0m failed! \n” && exit 1
elif [[ “$linuxdists” == ‘centos’ ]]; then
wget nocheckcertificate qO ‘/boot/initrd.img’ “http://$DISTMirror/$DIST/os/$VER/isolinux/initrd.img”
[[ $? ne ‘0’ ]] && echo ne “\033[31mError! \033[0mDownload ‘initrd.img’ for \033[33m$linuxdists\033[0m failed! \n” && exit 1
wget nocheckcertificate qO ‘/boot/vmlinuz’ “http://$DISTMirror/$DIST/os/$VER/isolinux/vmlinuz”
[[ $? ne ‘0’ ]] && echo ne “\033[31mError! \033[0mDownload ‘vmlinuz’ for \033[33m$linuxdists\033[0m failed! \n” && exit 1
fi
if [[ “$linuxdists” == ‘debian’ ]]; then
  if [[ “$INCFW” == ‘1’ ]]; then
    wget nocheckcertificate qO ‘/boot/firmware.cpio.gz’ “http://cdimage.debian.org/cdimage/unofficial/non-free/firmware/$DIST/current/firmware.cpio.gz”
    [[ $? ne ‘0’ ]] && echo ne “\033[31mError! \033[0mDownload ‘firmware’ for \033[33m$linuxdists\033[0m failed! \n” && exit 1
  fi
  if [[ “$ddMode” == ‘1’ ]]; then
    vKernel_udeb=$(wget nocheckcertificate qO “http://$DISTMirror/dists/$DIST/main/installer-$VER/current/images/udeb.list” |grep ‘^acpi-modules’ |head n1 |grep o ‘[0-9]\{1,2\}.[0-9]\{1,2\}.[0-9]\{1,2\}-[0-9]\{1,2\}’ |head n1)
    [[ z “vKernel_udeb” ]] && vKernel_udeb=“3.16.0-4”
  fi
fi
[[ “$setNet” == ‘1’ ]] && {
  IPv4=“$ipAddr”;
  MASK=“$ipMask”;
  GATE=“$ipGate”;
} || {
  DEFAULTNET=“$(ip route show |grep -o ‘default via [0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.*’ |head -n1 |sed ‘s/proto.*\|onlink.*//g’ |awk ‘{print $NF}’)”;
  [[ n “$DEFAULTNET” ]] && IPSUB=“$(ip addr |grep ”${DEFAULTNET}” |grep ‘global’ |grep ‘brd’ |head -n1 |grep -o ‘[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}/[0-9]\{1,2\}’)”;
  IPv4=“$(echo -n “$IPSUB” |cut -d’/’ -f1)”;
  NETSUB=“$(echo -n “$IPSUB” |grep -o ‘/[0-9]\{1,2\}’)”;
  GATE=“$(ip route show |grep -o ‘default via [0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}’ |head -n1 |grep -o ‘[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}’)”;
  [[ n “$NETSUB” ]] && MASK=“$(echo -n ‘128.0.0.0/1,192.0.0.0/2,224.0.0.0/3,240.0.0.0/4,248.0.0.0/5,252.0.0.0/6,254.0.0.0/7,255.0.0.0/8,255.128.0.0/9,255.192.0.0/10,255.224.0.0/11,255.240.0.0/12,255.248.0.0/13,255.252.0.0/14,255.254.0.0/15,255.255.0.0/16,255.255.128.0/17,255.255.192.0/18,255.255.224.0/19,255.255.240.0/20,255.255.248.0/21,255.255.252.0/22,255.255.254.0/23,255.255.255.0/24,255.255.255.128/25,255.255.255.192/26,255.255.255.224/27,255.255.255.240/28,255.255.255.248/29,255.255.255.252/30,255.255.255.254/31,255.255.255.255/32’ |grep -o ‘[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}’${NETSUB}” |cut -d’/’ -f1)”;
}
[[ n “$GATE” ]] && [[ n “$MASK” ]] && [[ n “$IPv4” ]] || {
echo “Not found `ip command`, It will use `route command`.”
ipNum() {
  local IFS=‘.’;
  read ip1 ip2 ip3 ip4 <<<“$1”;
  echo $((ip1*(1<<24)+ip2*(1<<16)+ip3*(1<<8)+ip4));
}
SelectMax(){
ii=0;
for IPITEM in `route n |awk v OUT=$1 ‘{print $OUT}’ |grep ‘[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}’`
  do
    NumTMP=“$(ipNum $IPITEM)”;
    eval “arrayNum[$ii]=’$NumTMP,$IPITEM'”;
    ii=$[$ii+1];
  done
echo ${arrayNum[@]} |sed ‘s/\s/\n/g’ |sort n k 1 t ‘,’ |tail n1 |cut d‘,’ f2;
}
[[ z $IPv4 ]] && IPv4=“$(ifconfig |grep ‘Bcast’ |head -n1 |grep -o ‘[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}’ |head -n1)”;
[[ z $GATE ]] && GATE=“$(SelectMax 2)”;
[[ z $MASK ]] && MASK=“$(SelectMax 3)”;
[[ n “$GATE” ]] && [[ n “$MASK” ]] && [[ n “$IPv4” ]] || {
  echo “Error! Not configure network. “;
  exit 1;
}
}
[[ “$setNet” != ‘1’ ]] && [[ f ‘/etc/network/interfaces’ ]] && {
  [[ z “$(sed -n ‘/iface.*inet static/p’ /etc/network/interfaces)” ]] && AutoNet=‘1’ || AutoNet=‘0’;
  [[ d /etc/network/interfaces.d ]] && {
    ICFGN=“$(find /etc/network/interfaces.d -name ‘*.cfg’ |wc -l)” || ICFGN=‘0’;
    [[ “$ICFGN” ne ‘0’ ]] && {
      for NetCFG in `ls 1 /etc/network/interfaces.d/*.cfg`
        do
          [[ -z “$(cat $NetCFG | sed -n ‘/iface.*inet static/p’)” ]] && AutoNet=’1′ || AutoNet=’0′;
          [[ “$AutoNet” -eq ‘0’ ]] && break;
        done
    }
  }
}
[[ “$setNet” != ‘1’ ]] && [[ -d ‘/etc/sysconfig/network-scripts’ ]] && {
  ICFGN=”$(find /etc/sysconfig/network-scripts -name ‘ifcfg-*’ |grep -v ‘lo’|wc -l)” || ICFGN=’0’;
  [[ “$ICFGN” -ne ‘0’ ]] && {
    for NetCFG in `ls -1 /etc/sysconfig/network-scripts/ifcfg-* |grep -v ‘lo$’ |grep -v ‘:[0-9]\{1,\}’`
      do
        [[ -n “$(cat $NetCFG | sed -n ‘/BOOTPROTO.*[dD][hH][cC][pP]/p’)” ]] && AutoNet=’1′ || {
          AutoNet=’0′ && . $NetCFG;
          [[ -n $NETMASK ]] && MASK=”$NETMASK”;
          [[ -n $GATEWAY ]] && GATE=”$GATEWAY”;
        }
        [[ “$AutoNet” -eq ‘0’ ]] && break;
      done
  }
}
[[ ! -f $GRUBDIR/$GRUBFILE ]] && echo “Error! Not Found $GRUBFILE. ” && exit 1;
[[ ! -f $GRUBDIR/$GRUBFILE.old ]] && [[ -f $GRUBDIR/$GRUBFILE.bak ]] && mv -f $GRUBDIR/$GRUBFILE.bak $GRUBDIR/$GRUBFILE.old;
mv -f $GRUBDIR/$GRUBFILE $GRUBDIR/$GRUBFILE.bak;
[[ -f $GRUBDIR/$GRUBFILE.old ]] && cat $GRUBDIR/$GRUBFILE.old >$GRUBDIR/$GRUBFILE || cat $GRUBDIR/$GRUBFILE.bak >$GRUBDIR/$GRUBFILE;
[[ “$GRUBOLD” == ‘0’ ]] && {
  READGRUB=’/tmp/grub.read’
  cat $GRUBDIR/$GRUBFILE |sed -n ‘1h;1!H;$g;s/\n/%%%%%%%/g;$p’ |grep -om 1 ‘menuentry\ [^{]*{[^}]*}%%%%%%%’ |sed ‘s/%%%%%%%/\n/g’ >$READGRUB
  LoadNum=”$(cat $READGRUB |grep -c ‘menuentry ‘)”
  if [[ “$LoadNum” -eq ‘1’ ]]; then
    cat $READGRUB |sed ‘/^$/d’ >/tmp/grub.new;
  elif [[ “$LoadNum” -gt ‘1’ ]]; then
    CFG0=”$(awk ‘/menuentry /{print NR}’ $READGRUB|head -n 1)”;
    CFG2=”$(awk ‘/menuentry /{print NR}’ $READGRUB|head -n 2 |tail -n 1)”;
    CFG1=””;
    for tmpCFG in `awk ‘/}/{print NR}’ $READGRUB`
      do
        [ “$tmpCFG” -gt “$CFG0” -a “$tmpCFG” -lt “$CFG2″ ] && CFG1=”$tmpCFG”;
      done
    [[ -z “$CFG1” ]] && {
      echo “Error! read $GRUBFILE. “;
      exit 1;
    }
    sed -n “$CFG0,$CFG1″p $READGRUB >/tmp/grub.new;
    [[ -f /tmp/grub.new ]] && [[ “$(grep -c ‘{‘ /tmp/grub.new)” -eq “$(grep -c ‘}’ /tmp/grub.new)” ]] || {
      echo -ne “\033[31mError! \033[0mNot configure $GRUBFILE. \n”;
      exit 1;
    }
  fi
  [ ! -f /tmp/grub.new ] && echo “Error! $GRUBFILE. ” && exit 1;
  sed -i “/menuentry.*/c\menuentry\ \Install OS \[$DIST\ $VER\]\\ class debian\ class\ gnulinux\ class\ gnu\ class\ os\ \{” /tmp/grub.new
  sed -i “/echo.*Loading/d” /tmp/grub.new;
  INSERTGRUB=”$(awk ‘/menuentry /{print NR}’ $GRUBDIR/$GRUBFILE|head n 1)
}
[[ “$GRUBOLD” == ‘1’ ]] && {
  CFG0=”$(awk ‘/title[\ ]|title[\t]/{print NR}’ $GRUBDIR/$GRUBFILE|head n 1)“;
  CFG1=”$(awk ‘/title[\ ]|title[\t]/{print NR}’ $GRUBDIR/$GRUBFILE|head n 2 |tail n 1)“;
  [[ -n $CFG0 ]] && [ -z $CFG1 -o $CFG1 == $CFG0 ] && sed -n “$CFG0,$“p $GRUBDIR/$GRUBFILE >/tmp/grub.new;
  [[ -n $CFG0 ]] && [ -z $CFG1 -o $CFG1 != $CFG0 ] && sed -n “$CFG0,$[$CFG11]“p $GRUBDIR/$GRUBFILE >/tmp/grub.new;
  [[ ! -f /tmp/grub.new ]] && echo “Error! configure append $GRUBFILE. ” && exit 1;
  sed -i “/title.*/c\title\ \Install OS \[$DIST\ $VER\]\” /tmp/grub.new;
  sed -i ‘/^#/d’ /tmp/grub.new;
  INSERTGRUB=”$(awk ‘/title[\ ]|title[\t]/{print NR}’ $GRUBDIR/$GRUBFILE|head n 1)
}
[[ -n “$(grep ‘linux.*/\|kernel.*/’ /tmp/grub.new |awk ‘{print $2}’ |tail n 1 |grep ‘^/boot/’)” ]] && Type=’InBoot’ || Type=’NoBoot’;
LinuxKernel=”$(grep ‘linux.*/\|kernel.*/’ /tmp/grub.new |awk ‘{print $1}’ |head n 1)“;
[[ -z “$LinuxKernel” ]] && echo “Error! read grub config! ” && exit 1;
LinuxIMG=”$(grep ‘initrd.*/’ /tmp/grub.new |awk ‘{print $1}’ |tail n 1)“;
[ -z “$LinuxIMG” ] && sed -i “/$LinuxKernel.*\//a\\\tinitrd\ \/” /tmp/grub.new && LinuxIMG=’initrd’;
if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
  BOOT_OPTION=“auto=true hostname=$linuxdists domain= — quiet”
elif [[ “$linuxdists” == ‘centos’ ]]; then
  BOOT_OPTION=“ks=file://ks.cfg ksdevice=$IFETH”
fi
[[ “$Type” == ‘InBoot’ ]] && {
  sed i “/$LinuxKernel.*\//c\\\t$LinuxKernel\\t\/boot\/vmlinuz $BOOT_OPTION” /tmp/grub.new;
  sed i “/$LinuxIMG.*\//c\\\t$LinuxIMG\\t\/boot\/initrd.img” /tmp/grub.new;
}
[[ “$Type” == ‘NoBoot’ ]] && {
  sed i “/$LinuxKernel.*\//c\\\t$LinuxKernel\\t\/vmlinuz $BOOT_OPTION” /tmp/grub.new;
  sed i “/$LinuxIMG.*\//c\\\t$LinuxIMG\\t\/initrd.img” /tmp/grub.new;
}
sed i ‘$a\\n’ /tmp/grub.new;
[[ “$inVNC” == ‘n’ ]] && {
GRUBPATCH=‘0’;
[ f ‘/etc/network/interfaces’ o d ‘/etc/sysconfig/network-scripts’ ] || {
  echo “Error, Not found interfaces config.”;
  exit 1;
}
sed i ${INSERTGRUB}‘i\\n’ $GRUBDIR/$GRUBFILE;
sed i ${INSERTGRUB}‘r /tmp/grub.new’ $GRUBDIR/$GRUBFILE;
[[ f  $GRUBDIR/grubenv ]] && sed i ‘s/saved_entry/#saved_entry/g’ $GRUBDIR/grubenv;
[[ d /boot/tmp ]] && rm rf /boot/tmp;
mkdir p /boot/tmp;
cd /boot/tmp;
if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
  COMPTYPE=“gzip”;
elif [[ “$linuxdists” == ‘centos’ ]]; then
  COMPTYPE=“$(file /boot/initrd.img |grep -o ‘:.*compressed data’ |cut -d’ ‘ -f2 |sed -r ‘s/(.*)/\L\1/’ |head -n1)”
  [[ z “$COMPTYPE” ]] && echo “Detect compressed type fail.” && exit 1;
fi
CompDected=‘0’
for ListCOMP in `echo en ‘gzip\nlzma\nxz’`
  do
    if [[ “$COMPTYPE” == “$ListCOMP” ]]; then
      CompDected=‘1’
      if [[ “$COMPTYPE” == ‘gzip’ ]]; then
        NewIMG=“initrd.img.gz”
      else
        NewIMG=“initrd.img.$COMPTYPE”
      fi
      mv f “/boot/initrd.img” “/boot/$NewIMG”
      break;
    fi
  done
[[ “$CompDected” != ‘1’ ]] && echo “Detect compressed type not support.” && exit 1;
[[ “$COMPTYPE” == ‘lzma’ ]] && UNCOMP=‘xz –format=lzma –decompress’;
[[ “$COMPTYPE” == ‘xz’ ]] && UNCOMP=‘xz –decompress’;
[[ “$COMPTYPE” == ‘gzip’ ]] && UNCOMP=‘gzip -d’;
$UNCOMP < ../$NewIMG | cpio extract verbose makedirectories noabsolutefilenames >>/dev/null 2>&1
if [[ “$linuxdists” == ‘debian’ ]] || [[ “$linuxdists” == ‘ubuntu’ ]]; then
cat >/boot/tmp/preseed.cfg<<EOF
di debianinstaller/locale string en_US
di consolesetup/layoutcode string us
di keyboardconfiguration/xkbkeymap string us
di netcfg/choose_interface select $IFETH
di netcfg/disable_autoconfig boolean true
di netcfg/dhcp_failed note
di netcfg/dhcp_options select Configure network manually
di netcfg/get_ipaddress string $IPv4
di netcfg/get_netmask string $MASK
di netcfg/get_gateway string $GATE
di netcfg/get_nameservers string 8.8.8.8
di netcfg/no_default_route boolean true
di netcfg/confirm_static boolean true
di hwdetect/load_firmware boolean true
di mirror/country string manual
di mirror/http/hostname string $MirrorHost
di mirror/http/directory string $MirrorFolder
di mirror/http/proxy string
di passwd/rootlogin boolean ture
di passwd/makeuser boolean false
di passwd/rootpasswordcrypted password $myPASSWORD
di usersetup/allowpasswordweak boolean true
di usersetup/encrypthome boolean false
di clocksetup/utc boolean true
di time/zone string US/Eastern
di clocksetup/ntp boolean true
di preseed/early_command string annainstall libfuse2udeb fuseudeb ntfs3gudeb fusemodules${vKernel_udeb}amd64di
di partman/early_command string \
debconfset partmanauto/disk “\$(list-devices disk |head -n1)”; \
wget qO ‘$DDURL’ |gunzip dc |/bin/dd of=\$(listdevices disk |head n1); \
mount.ntfs3g \$(listdevices partition |head n1) /mnt; \
cd ‘/mnt/ProgramData/Microsoft/Windows/Start Menu/Programs’; \
cd Start* || cd start*; \
cp f ‘/net.bat’ ‘./net.bat’; \
/sbin/reboot; \
debconfset grubinstaller/bootdev string “\$(list-devices disk |head -n1)”; \
umount /media || true; \
di partman/mount_style select uuid
di partmanauto/init_automatically_partition select Guided use entire disk
di partmanauto/method string regular
di partmanlvm/device_remove_lvm boolean true
di partmanmd/device_remove_md boolean true
di partmanauto/choose_recipe select atomic
di partmanpartitioning/confirm_write_new_label boolean true
di partman/choose_partition select finish
di partmanlvm/confirm boolean true
di partmanlvm/confirm_nooverwrite boolean true
di partman/confirm boolean true
di partman/confirm_nooverwrite boolean true
di debianinstaller/allow_unauthenticated boolean true
tasksel tasksel/first multiselect minimal
di pkgsel/updatepolicy select none
di pkgsel/include string opensshserver
di pkgsel/upgrade select none
popularitycontest popularitycontest/participate boolean false
di grubinstaller/only_debian boolean true
di grubinstaller/bootdev string default
di finishinstall/reboot_in_progress note
di debianinstaller/exit/reboot boolean true
di preseed/late_command string \
sed ri ‘s/^#?PermitRootLogin.*/PermitRootLogin yes/g’ /target/etc/ssh/sshd_config; \
sed ri ‘s/^#?PasswordAuthentication.*/PasswordAuthentication yes/g’ /target/etc/ssh/sshd_config;
EOF
[[ “$setNet” == ‘0’ ]] && [[ “$AutoNet” == ‘1’ ]] && {
  sed i ‘/netcfg\/disable_autoconfig/d’ /boot/tmp/preseed.cfg
  sed i ‘/netcfg\/dhcp_options/d’ /boot/tmp/preseed.cfg
  sed i ‘/netcfg\/get_.*/d’ /boot/tmp/preseed.cfg
  sed i ‘/netcfg\/confirm_static/d’ /boot/tmp/preseed.cfg
}
[[ “$DIST” == ‘trusty’ ]] && GRUBPATCH=‘1’
[[ “$DIST” == ‘wily’ ]] && GRUBPATCH=‘1’
[[ “$GRUBPATCH” == ‘1’ ]] && {
  sed i ‘s/^d-i\ grub-installer\/bootdev\ string\ default//g’ /boot/tmp/preseed.cfg
}
[[ “$GRUBPATCH” == ‘0’ ]] && {
  sed i ‘s/debconf-set\ grub-installer\/bootdev.*\”\;//g’ /boot/tmp/preseed.cfg
}
[[ “$DIST” == ‘xenial’ ]] && {
  sed i ‘s/^d-i\ clock-setup\/ntp\ boolean\ true/d-i\ clock-setup\/ntp\ boolean\ false/g’ /boot/tmp/preseed.cfg
}
[[ “$linuxdists” == ‘debian’ ]] && {
  sed i ‘/user-setup\/allow-password-weak/d’ /boot/tmp/preseed.cfg
  sed i ‘/user-setup\/encrypt-home/d’ /boot/tmp/preseed.cfg
  sed i ‘/pkgsel\/update-policy/d’ /boot/tmp/preseed.cfg
  sed i ‘s/umount\ \/media.*true\;\ //g’ /boot/tmp/preseed.cfg
}
[[ “$INCFW” == ‘1’ ]] && [[ “$linuxdists” == ‘debian’ ]] && [[ f ‘/boot/firmware.cpio.gz’ ]] && {
  gzip d < ../firmware.cpio.gz | cpio extract verbose makedirectories noabsolutefilenames >>/dev/null 2>&1
}
[[ “$ddMode” == ‘1’ ]] && {
WinNoDHCP(){
  echo ne “for\0040\0057f\0040\0042tokens\00753\0052\0042\0040\0045\0045i\0040in\0040\0050\0047netsh\0040interface\0040show\0040interface\0040\0136\0174more\0040\00533\0040\0136\0174findstr\0040\0057I\0040\0057R\0040\0042本地\0056\0052\0040以太\0056\0052\0040Local\0056\0052\0040Ethernet\0042\0047\0051\0040do\0040\0050set\0040EthName\0075\0045\0045j\0051\r\nnetsh\0040\0055c\0040interface\0040ip\0040set\0040address\0040name\0075\0042\0045EthName\0045\0042\0040source\0075static\0040address\0075$IPv4\0040mask\0075$MASK\0040gateway\0075$GATE\r\nnetsh\0040\0055c\0040interface\0040ip\0040add\0040dnsservers\0040name\0075\0042\0045EthName\0045\0042\0040address\00758\00568\00568\00568\0040index\00751\0040validate\0075no\r\n\r\n” >>‘/boot/tmp/net.tmp’;
}
WinRDP(){
  echo ne “netsh\0040firewall\0040set\0040portopening\0040protocol\0075ALL\0040port\0075$WinRemote\0040name\0075RDP\0040mode\0075ENABLE\0040scope\0075ALL\0040profile\0075ALL\r\nnetsh\0040firewall\0040set\0040portopening\0040protocol\0075ALL\0040port\0075$WinRemote\0040name\0075RDP\0040mode\0075ENABLE\0040scope\0075ALL\0040profile\0075CURRENT\r\nreg\0040add\0040\0042HKLM\0134SYSTEM\0134CurrentControlSet\0134Control\0134Network\0134NewNetworkWindowOff\0042\0040\0057f\r\nreg\0040add\0040\0042HKLM\0134SYSTEM\0134CurrentControlSet\0134Control\0134Terminal\0040Server\0042\0040\0057v\0040fDenyTSConnections\0040\0057t\0040reg\0137dword\0040\0057d\00400\0040\0057f\r\nreg\0040add\0040\0042HKLM\0134SYSTEM\0134CurrentControlSet\0134Control\0134Terminal\0040Server\0134Wds\0134rdpwd\0134Tds\0134tcp\0042\0040\0057v\0040PortNumber\0040\0057t\0040reg\0137dword\0040\0057d\0040$WinRemote\0040\0057f\r\nreg\0040add\0040\0042HKLM\0134SYSTEM\0134CurrentControlSet\0134Control\0134Terminal\0040Server\0134WinStations\0134RDP\0055Tcp\0042\0040\0057v\0040PortNumber\0040\0057t\0040reg\0137dword\0040\0057d\0040$WinRemote\0040\0057f\r\nreg\0040add\0040\0042HKLM\0134SYSTEM\0134CurrentControlSet\0134Control\0134Terminal\0040Server\0134WinStations\0134RDP\0055Tcp\0042\0040\0057v\0040UserAuthentication\0040\0057t\0040reg\0137dword\0040\0057d\00400\0040\0057f\r\nFOR\0040\0057F\0040\0042tokens\00752\0040delims\0075\0072\0042\0040\0045\0045i\0040in\0040\0050\0047SC\0040QUERYEX\0040TermService\0040\0136\0174FINDSTR\0040\0057I\0040\0042PID\0042\0047\0051\0040do\0040TASKKILL\0040\0057F\0040\0057PID\0040\0045\0045i\r\nFOR\0040\0057F\0040\0042tokens\00752\0040delims\0075\0072\0042\0040\0045\0045i\0040in\0040\0050\0047SC\0040QUERYEX\0040UmRdpService\0040\0136\0174FINDSTR\0040\0057I\0040\0042PID\0042\0047\0051\0040do\0040TASKKILL\0040\0057F\0040\0057PID\0040\0045\0045i\r\nSC\0040START\0040TermService\r\n\r\n” >>‘/boot/tmp/net.tmp’;
}
  echo ne “\0100ECHO\0040OFF\r\n\r\ncd\0056\0076\0045WINDIR\0045\0134GetAdmin\r\nif\0040exist\0040\0045WINDIR\0045\0134GetAdmin\0040\0050del\0040\0057f\0040\0057q\0040\0042\0045WINDIR\0045\0134GetAdmin\0042\0051\0040else\0040\0050\r\necho\0040CreateObject\0136\0050\0042Shell\0056Application\0042\0136\0051\0056ShellExecute\0040\0042\0045\0176s0\0042\0054\0040\0042\0045\0052\0042\0054\0040\0042\0042\0054\0040\0042runas\0042\0054\00401\0040\0076\0076\0040\0042\0045temp\0045\0134Admin\0056vbs\0042\r\n\0042\0045temp\0045\0134Admin\0056vbs\0042\r\ndel\0040\0057f\0040\0057q\0040\0042\0045temp\0045\0134Admin\0056vbs\0042\r\nexit\0040\0057b\00402\0051\r\n\r\n” >‘/boot/tmp/net.tmp’;
  [[ “$setNet” == ‘1’ ]] && WinNoDHCP;
  [[ “$setNet” == ‘0’ ]] && [[ “$AutoNet” == ‘0’ ]] && WinNoDHCP;
  [[ “$setRDP” == ‘1’ ]] && [[ n “$WinRemote” ]] && WinRDP
  echo ne “ECHO\0040SELECT\0040VOLUME\0075\0045\0045SystemDrive\0045\0045\0040\0076\0040\0042\0045SystemDrive\0045\0134diskpart\0056extend\0042\r\nECHO\0040EXTEND\0040\0076\0076\0040\0042\0045SystemDrive\0045\0134diskpart\0056extend\0042\r\nSTART\0040/WAIT\0040DISKPART\0040\0057S\0040\0042\0045SystemDrive\0045\0134diskpart\0056extend\0042\r\nDEL\0040\0057f\0040\0057q\0040\0042\0045SystemDrive\0045\0134diskpart\0056extend\0042\r\n\r\n” >>‘/boot/tmp/net.tmp’;
  echo ne “cd\0040\0057d\0040\0042\0045ProgramData\0045\0057Microsoft\0057Windows\0057Start\0040Menu\0057Programs\0057Startup\0042\r\ndel\0040\0057f\0040\0057q\0040net\0056bat\r\n\r\n\r\n” >>‘/boot/tmp/net.tmp’;
  iconv f ‘UTF-8’ t ‘GBK’ ‘/boot/tmp/net.tmp’ o ‘/boot/tmp/net.bat’
  rm rf ‘/boot/tmp/net.tmp’
  echo “$DDURL” |grep q ‘^https://’
  [[ $? eq ‘0’ ]] && {
    echo ne ‘\nAdd ssl support…\n’
    [[ n $SSL_SUPPORT ]] && {
      wget nocheckcertificate qO “$SSL_SUPPORT” |tar x
      [[ ! f  /boot/tmp/usr/bin/wget ]] && echo ‘Error! SSL_SUPPORT.’ && exit 1;
      sed i ‘s/wget\ -qO-/\/usr\/bin\/wget\ –no-check-certificate\ –retry-connrefused\ –tries=7\ –continue\ -qO-/g’ /boot/tmp/preseed.cfg
      [[ $? eq ‘0’ ]] && echo ne ‘Success! \n\n’
    } || {
    echo ne ‘Not ssl support package! \n\n’;
    exit 1;
    }
  }
}
[[ “$ddMode” == ‘0’ ]] && {
  sed i ‘/anna-install/d’ /boot/tmp/preseed.cfg
  sed i ‘s/wget.*\/sbin\/reboot\;\ //g’ /boot/tmp/preseed.cfg
}
elif [[ “$linuxdists” == ‘centos’ ]]; then
cat >/boot/tmp/ks.cfg<<EOF
#platform=x86, AMD64, or Intel EM64T
firewall enabled ssh
install
url url=“http://$DISTMirror/$DIST/os/$VER/”
rootpw iscrypted $myPASSWORD
auth useshadow passalgo=sha512
firstboot disable
lang en_US
keyboard us
selinux disabled
logging level=info
reboot
text
unsupported_hardware
vnc
skipx
timezone isUtc Asia/Hong_Kong
#ONDHCP network –bootproto=dhcp –onboot=on
#NODHCP network –bootproto=static –ip=$IPv4 –netmask=$MASK –gateway=$GATE –nameserver=8.8.8.8 –onboot=on
bootloader location=mbr append=“rhgb quiet crashkernel=auto”
zerombr
clearpart all initlabel
autopart
%packages
@base
%end
%post interpreter=/bin/bash
rm rf /root/anacondaks.cfg
rm rf /root/install.*log
%end
EOF
[[ “$setNet” == ‘0’ ]] && [[ “$AutoNet” == ‘1’ ]] && {
  sed i ‘s/#ONDHCP\ //g’ /boot/tmp/ks.cfg
} || {
  sed i ‘s/#NODHCP\ //g’ /boot/tmp/ks.cfg
}
[[ “$UNKNOWHW” == ‘1’ ]] && sed i ‘s/^unsupported_hardware/#unsupported_hardware/g’ /boot/tmp/ks.cfg
[[ “$(echo “$DIST” |grep -o ‘^[0-9]\{1\}’)” == ‘5’ ]] && sed i ‘0,/^%end/s//#%end/’ /boot/tmp/ks.cfg
fi
rm rf ../initrd.img;
find . | cpio H newc create verbose | gzip 9 > ../initrd.img;
rm rf /boot/tmp;
}
[[ “$inVNC” == ‘y’ ]] && {
  sed i ‘$i\\n’ $GRUBDIR/$GRUBFILE
  sed i ‘$r /tmp/grub.new’ $GRUBDIR/$GRUBFILE
  echo e “\n\033[33m\033[04mIt will reboot! \nPlease look at VNC! \nSelect\033[0m\033[32m Install OS [$DIST $VER] \033[33m\033[4mto install system.\033[04m\n\n\033[31m\033[04mThere is some information for you.\nDO NOT CLOSE THE WINDOW! \033[0m\n”
  echo e “\033[35mIPv4\t\tNETMASK\t\tGATEWAY\033[0m”
  echo e “\033[36m\033[04m$IPv4\033[0m\t\033[36m\033[04m$MASK\033[0m\t\033[36m\033[04m$GATE\033[0m\n\n”
  read n 1 p “Press Enter to reboot…” INP
  [[ “$INP” != ]] && echo ne ‘\b \n\n’;
}
chown root:root $GRUBDIR/$GRUBFILE
chmod 444 $GRUBDIR/$GRUBFILE
sleep 3 && reboot >/dev/null 2>&1

来源:萌咖

分享到:更多 ()

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址