#教程# 脚本DD干净CentOS,支持腾讯、阿里、AWS轻量

简介

此脚本使用官方源 DD 干净 CentOS,仅支持 CentOS 7+,做了 EFI 兼容支持。CentOS 8+只需要提示输入 repo 的输入 centos8 的源就行,不过内存得大于 2G,小于 1G 的就用默认的吧,链接 VNC 以后再进去切换安装源刀最新版 Centos,测试机器本机 HYPER-V 开的机器。阿里云轻量,腾讯云轻量,AWS 轻量。还在 DD 别人的 Centos 吗,分区不是自己想要的分区吗?使用本脚本即可可视化安装 centos 吧!

图片[1] - #教程# 脚本DD干净CentOS,支持腾讯、阿里、AWS轻量 - 云线路

DD 脚本

#!/bin/bash
#Net Reinstall Centos System
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
plain='\033[0m'
nicCard=$(ls /sys/class/net)
nicCard=(${nicCard})
d0Str='$0'
nicCardName=""
vnc_password=""
repo_url=""
ipaddr=""
gateway=""
netmask=""
bootRoot=""
run_script() {
if [ -f "/boot/initrd77.img" ]; then
  rm -rf /boot/initrd77.img
fi
wget -P /boot/ ${repo_url}images/pxeboot/initrd.img -O /boot/initrd77.img > /dev/null
if [ -f "/boot/vmlinuz77" ]; then
  rm -rf /boot/vmlinuz77
fi
wget -P /boot/ ${repo_url}images/pxeboot/vmlinuz -O /boot/vmlinuz77 > /dev/null
startDiskPart=$(cat /boot/grub2/grub.cfg |grep "set root" | head -n 1 |awk -F \' '{print $2}')
startDiskType=$(df -T /boot | awk '{print $2}' | sed -n '2p')
if [ "ext4" = "${startDiskType}" -o "ext3" = "${startDiskType}" ]
then
startDiskType="ext2"
fi
cat << EOF > /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 ${d0Str}
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "NetInstall" {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_msdos
        insmod ${startDiskType}
        set root='${startDiskPart}'
 
        linux16 ${bootRoot}/vmlinuz77 inst.vnc inst.vncpassword=${vnc_password} inst.headless ip=${ipaddr}::${gateway}:${netmask}::${nicCardName}:none nameserver=1.1.1.1 inst.repo=${repo_url} inst.lang=en_US inst.keymap=us
  initrd16 ${bootRoot}/initrd77.img
}
EOF
if [ -f "/boot/efi/EFI/centos/grub.cfg" ]; then
  grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
fi
if [ -f "/boot/grub2/grub.cfg" ]; then
  grub2-mkconfig -o /boot/grub2/grub.cfg
fi
grub2-reboot NetInstall
reboot
 
}
 
input_nic() {
bootRoot=$(cat /boot/grub2/grub.cfg |grep "linux16" | head -n 1)
bootRoot=${bootRoot#*/}
bootRoot=${bootRoot:0:4}
if [ "boot" = "${bootRoot}" ]
then
bootRoot="/boot"
else
bootRoot=""
fi
while true
do
for ((i=1;i<=${#nicCard[@]};i++ )); do
    local_p="${nicCard[$i-1]}"
    echo -e "${green}${i}${plain}) ${local_p}"
done
read -p "请输入主网卡序号[默认 1]:" input_nic_no
[ -z "$input_nic_no" ] && input_nic_no=1
expr ${input_nic_no} + 1 &>/dev/null
if [ $? -ne 0 ]; then
    echo -e "[${red}错误:${plain}] 请输入一个数字"
    continue
fi
if [[ "$input_nic_no" -lt 1 || "$input_nic_no" -gt ${#nicCard[@]} ]]; then
    echo -e "[${red}错误:${plain}] 请输入一个数字 1 - ${#nicCard[@]}"
    continue
fi
nicCardName=${nicCard[$input_nic_no-1]}
break;
done
read -p "请输入 VNC 密码[6 位+][默认密码 tg_jockerli]:" input_passwd
[ -z "${input_passwd}" ] && input_passwd="tg_jockerli"
vnc_password=${input_passwd}
read -p "请输入 repo 地址[建议使用默认直接回车]:" input_repo
[ -z "${input_repo}" ] && input_repo="http://vault.centos.org/7.2.1511/os/x86_64/"
repo_url=${input_repo}
gateway=$(route -n | grep ${nicCardName} | grep UG | awk '{print $2}')
ipaddr=$(ifconfig eth0 | grep "inet" | awk -F " " '{print $2}' | head -n 1)
netmask=$(ifconfig eth0 | grep "inet" | awk -F " " '{print $4}' | head -n 1)
echo
echo "---------------------------"
echo -e "${green}网    卡 ${plain}= ${green}${nicCardName}${plain}"
echo -e "${green}IP  地址 ${plain}= ${green}${ipaddr}${plain}"
echo -e "${green}网    关 ${plain}= ${green}${gateway}${plain}"
echo -e "${green}掩    码 ${plain}= ${green}${netmask}${plain}"
echo "---------------------------"
echo -e "${green}VNC URL ${plain}= ${green}${ipaddr}:1${plain}"
echo "---------------------------"
echo -e "${green}VNC 密码 ${plain}= ${green}${vnc_password}${plain}"
echo -e "${yellow}VNC 密码确保在 6 位以上!并且不包含特殊字符!${plain}"
echo "---------------------------"
echo -e "${green}repo 地址 ${plain}= ${green}${repo_url}${plain}"
echo "---------------------------"
echo -e "注意:${yellow}VNC 只能在脚本运行完等待数分钟可用${plain}"
echo -e "     ${yellow}请确保服务商防火墙端口[1]为开放状态${plain}"
echo
read -p "回车开始运行脚本;ctrl + c 取消本次操作" input_read
run_script
}
init() {
if [ ! -f "/usr/bin/wget" ]; then
  yum -y install wget > /dev/null
fi
if [ ! -f "/usr/sbin/ifconfig" ]; then
  yum -y install net-tools > /dev/null
fi
input_nic
}
init

备份地址

脚本地址(最好自行保存,本地址不一定永久存在):

食用方法

bash <(curl -s -S -L https://dl.yunloc.com/Shell/dd-centos.sh)
© 本站文章随意转载,但请注明出处!
THE END
点赞11 分享
评论 抢沙发
头像
务必使用真实的邮箱地址评论,虚假邮箱的评论将不通过审核及无回复。
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容