debian_inst.sh 下载或粘贴复制使用
# debian_inst.sh
passwd=$(date | md5sum | head -c 6)
echo -e "随机生成密码: \033[41;37m ${passwd} \033[0m 现在可修改; "
read -p "请输入你要的密码(按回车不修改): " -t 30 new
if [[ ! -z "${new}" ]]; then
passwd="${new}"
fi
china=$(curl -sL lyvba.com/ip/$(curl -sL lyvba.com/ip) | grep 中国)
if [[ ! -z "${china}" ]]; then
wget https://lyvba.com/auto.sh
bash auto.sh -d 12 -v 64 -a -p $passwd \
--mirror 'https://mirrors.ustc.edu.cn/debian/'
else
wget git.io/auto.sh # 如果在国外,使用下面 git.io/auto.sh
bash auto.sh -d 12 -v 64 -a -p $passwd
fi
新建 debian_inst.sh 编辑,或者下载
wget https://lyvba.com/debian_inst.sh
脚本能自动生成一个随机代码,也可以简单修改
然后自动判断是国内还是国外,安装 Debian12
中国国内使用
wget https://lyvba.com/auto.sh
bash auto.sh -d 12 -v 64 -a -p $passwd \
--mirror 'https://mirrors.ustc.edu.cn/debian/'
国外VPS使用
wget git.io/auto.sh
bash auto.sh -d 12 -v 64 -a -p $passwd
Linux一键安装脚本--支持 Debian 12 和 Ubuntu 20.04 自动安装
本来想升级成支持 Ubuntu 20.04 ,结果官方不支持原来的网络安装方式,要下载 ISO 安装了,所以不支持了
下载自动安装安装脚本
wget git.io/auto.sh
Linux一键安装脚本 安装命令参考
# 自动安装 Debian 10 buster
bash auto.sh -d 10 -v 64 -a -p 密码
# 自动安装 Debian 11 bullseye
bash auto.sh -d 11 -v 64 -a -p 密码
# 自动安装 Debian 12 bullseye
bash auto.sh -d 11 -v 64 -a -p 密码
# 自动安装 Ubuntu 20.04 focal
bash auto.sh -u 20.04 -v 64 -a -p 密码
# 自动安装 Ubuntu 18.04 bionic
bash auto.sh -u 18.04 -v 64 -a -p 密码
# 安装 CentOS 只支持 6.10
bash auto.sh -c 6.10 -v 64 -a -p 密码
0 条评论