在Linux主机上安装纯净Debian/Ubuntu/CentOS/Windows操作系统的脚本

文章来源1
nat大佬win镜像

萌咖脚本

不支持centos7
默认root密码为MoeClub.org

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && chmod a+x InstallNET.sh

说明:

Usage:
bash InstallNET.sh -d/--debian [dist-name]
                   -u/--ubuntu [dist-name]
                   -c/--centos [dist-version]
                   -v/--ver [32/i386|64/amd64]
                   --ip-addr/--ip-gate/--ip-mask
                   -apt/-yum/--mirror
                   -dd/--image
                   -a/-m

# dist-name: 发行版本代号
# dist-version: 发行版本号
# -apt/-yum/--mirror : 使用定义镜像
# -a/-m : VNC操作. -a 全自动安装, -m VNC自行操作

脚本用法示例:
使用默认镜像全自动安装

bash InstallNET.sh -d 9 -v 64 -a

使用自定义镜像全自动安装

bash InstallNET.sh -c 6 -v 64 -a --mirror 'http://mirror.centos.org/centos'

使用自定义镜像自定义网络参数全自动安装

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' 

使用自定义网络参数全自动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/onedrive/IMAGE/Windows/win7emb_x86.tar.gz' 

使用自定义网络参数全自动dd方式安装存储在谷歌网盘中的镜像(调用文件ID的方式)

bash InstallNET.sh --ip-addr x.x.x.x --ip-gate x.x.x.x --ip-mask x.x.x.x -dd "https://image.moeclub.org/GoogleDrive/1cqVl2wSGx92UTdhOxU9pW3wJgmvZMT_J" 

使用自定义网络参数全自动dd方式安装存储在谷歌网盘中的镜像

bash InstallNET.sh --ip-addr x.x.x.x --ip-gate x.x.x.x --ip-mask x.x.x.x -dd "https://image.moeclub.org/GoogleDrive/1cqVl2wSGx92UTdhOxU9pW3wJgmvZMT_J" 

国内推荐使用USTC源

--mirror 'http://mirrors.ustc.edu.cn/debian/'

一键脚本

镜像文件在OneDrive,输入下方命令

wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/dd-od.sh && chmod +x dd-od.sh && ./dd-od.sh

镜像文件在GoogleDrive,输入下方命令

wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/dd-gd.sh && chmod +x dd-gd.sh && ./dd-gd.sh

源自于千影大佬的一键DD脚本

wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/installNET/master/Install.sh" && chmod +x Install.sh && ./Install.sh

cxthhhhh魔改版

注意:当前已安装任意由GRUB or GRUB2引导Linux系统(RedHat/CentOS/Debian/Ubuntu/Etc.) ,系统默认密码为:cxthhhhh.com

1、Linux安装重装系统的前提组件:

yum install -y xz openssl gawk file # RedHat/CentOS
apt-get install -y xz-utils openssl gawk file #Debian/Ubuntu

2、下载重装系统脚本:

wget -N --no-check-certificate https://raw.githubusercontent.com/MeowLove/Network-Reinstall-System-Modify/master/Network-Reinstall-System-Modify.sh && chmod +x Network-Reinstall-System-Modify.sh

3、安装liunx

bash Network-Reinstall-System-Modify.sh -CentOS_7
bash Network-Reinstall-System-Modify.sh -Debian_9
bash Network-Reinstall-System-Modify.sh -Ubuntu_18.04

4、安装Windows:
镜像为未授权Windows系统镜像,需购买授权或进入系统后破解

bash Network-Reinstall-System-Modify.sh -Windows_Server_2019
bash Network-Reinstall-System-Modify.sh -Windows_Server_2016
bash Network-Reinstall-System-Modify.sh -Windows_Server_2012R2
bash Network-Reinstall-System-Modify.sh -Windows_Server_2008R2
bash Network-Reinstall-System-Modify.sh -Windows_7_Vienna

5、自定义安装系统镜像

bash Network-Reinstall-System-Modify.sh -DD "你的系统镜像地址.gz"

全自动DD脚本

wget --no-check-certificate -qO AutoDD.sh 'http://git.io/autodd.sh' && bash AutoDD.sh

或者

wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh

系统自带DD

wget -O- "http://xxxx/xxx.vhd.gz" |gunzip| dd of=/dev/sda

更多DD脚本可以参考原文章

最后修改:2021 年 08 月 10 日 03 : 57 PM