CentOS/Debian/Ubuntu/windows网络一键纯净安装 作者: Fmq 时间: 2018-04-03 分类: 搬运 只要有root权限,给您一个纯净的系统。 ### 原文 一键脚本 :https://moeclub.org/2018/04/03/603/ Debian/Unubtu :https://moeclub.org/2017/03/25/82/ CentOS :https://moeclub.org/2018/03/26/597/ Windows :https://moeclub.org/2017/11/19/483/ #### 环境配置 ```bash #Debian/Ubuntu: apt-get update #RedHat/CentOS: yum update ``` ```bash #Debian/Ubuntu: apt-get install -y xz-utils openssl gawk file #RedHat/CentOS: yum install -y xz openssl gawk file ``` #### 一键下载及使用 ```bash wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && chmod a+x InstallNET.sh ``` ```bash 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 为提示. ``` #### 使用示例 ```bash #使用默认镜像全自动安装 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' #使用自定义网络参数全自动dd方式安装 #bash InstallNET.sh --ip-addr x.x.x.x --ip-gate x.x.x.x --ip-mask x.x.x.x -dd 'DD安装包直接地址' #使用自定义网络参数全自动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=0B8SvBXZ3I5QMcUduTMJEanRkMzQ" |xargs -n1 bash <(wget --no-check-certificate -qO- 'https://moeclub.org/get-gdlink'))" ``` ### 一些提示: #### 在dd安装系统镜像时: 1. 在你的机器上全新安装,如果你有VNC,可以看到全部过程。 2. 在dd安装镜像的过程中,不会走进度条(进度条一直显示为0%).完成后将会自动重启。 3. 分区界面标题一般显示为: `Starting up the partitioner` #### 在全自动安装CentOS时: 1. 如果看到 “Starting graphical installation” 或者类似表达,则表示正在安装。 2. 正常情况下只需要耐心等待安装完成即可。 3. 如果需要查看进度,使用VNC Viewer(或者其他VNC连接工具)。 4. 连接提示中的IP地址:端口进行连接.(端口一般为1或者5901)。 感谢大佬[Vicer](https://moeclub.org/ "Vicer")的无私奉献。 标签: root, debian, windows, centos, ubuntu