博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kvm 从阿里云自动安装centos7
阅读量:6360 次
发布时间:2019-06-23

本文共 3067 字,大约阅读时间需要 10 分钟。

hot3.png

从阿里云自动安装centos7

virt-install --hvm --ram 2048 --vcpus=1 --network=bridge:virbr0 --name=cxauth --disk /opt/kvm/cxauth.img,size=130,bus=virtio,cache=none,io='threads' --accelerate --nographics --location=http://mirrors.aliyun.com/centos/7/os/x86_64/ --extra-args="ks=http://login.j.niit.edu.cn/in.ks console=tty0 console=ttyS0,115200"

ks安装自动文件

#ue shadow file encrypted by md5auth  --useshadow  --enablemd5# Install OS instead of upgradeinstall# boot from MBR (default)bootloader --location=mbr#clear MBRzerombr# delete all partition (default do not delete or use '--none')clearpart --all --initlabel# use text mode instead of graph modetext# enable iptables, allow ssh, separated by ',' if add other portsfirewall --enabled --port=22:tcp# install yum resource URLurl --url=http://mirrors.aliyun.com/centos/7/os/x86_64/# disable the settings menu when first bootfirstboot --disablekeyboard uslang en_UStimezone --isUtc Asia/Shanghai# network settings, including DNS, hostname, disable ipv6network --device eth0 --bootproto static --ip 210.28.96.40 --netmask 255.255.255.0 --gateway 210.28.96.1 --nameserver 223.5.5.5 --hostname lib.cxauth --noipv6# syslog level, use '--host' and '--port' to define remote rsyslog serverlogging --level=info# reboot after installation (default), may use 'poweroff' to shutdown systemreboot# set root password, use '--iscrypted' to use crypt passwordrootpw 123456# disable selinuxselinux --disable# do not configure X Windowsskipx# partition, vda is the first disk of system, size is counted by MBpart /boot --fstype="ext4" --ondisk=vda --size=512# use '--recommended' to let system decide the size of swap partitionpart swap --fstype="swap" --ondisk=vda --recommendedpart / --bytes-per-inode=4096 --fstype="ext4" --ondisk=vda --grow --size=1# use '--grow --size=1' to use all the disk size left#part /var --fstype="ext4" --ondisk=vda --grow --size=1# add additional repositoriesrepo --name="extra" --baseurl=http://mirrors.aliyun.com/centos/7.0.1406/extras/x86_64/# install packages needed, default will install @core and @base, use '--nobase' to do not install @base%packages@core@basemantelnetntpdate#nagios-plugins#nagios-plugins-all#nrpe#gcc#make##net-snmp#net-snmp-utils#watchdog# shell to run after installation, configure DNS, yum repository, chkconfig,%post(#echo 'snmpd:192.168.' >> /etc/hosts.allow# log timestamp in command history#logout after 3600s if no action# enable the fuction of watchdog#echo "modprobe softdog" >> /etc/sysconfig/watchdog#sed -i '/min-memory/{s/#//}' /etc/watchdog.conf#sed -i '/watchdog-device/{s/#//}' /etc/watchdog.conf#sed -i '/admin/{s/#//}' /etc/watchdog.conf#sed -i '/interval/{s/#//}' /etc/watchdog.conf#sed -i '/logtick/{s/#//}'/etc/watchdog.conf#sed -i '/pidfile/{s/#//}' /etc/watchdog.conf#chkconfig watchdog on# configure nagios client#sed -i '/server_address/{s/#//g;s/127.0.0.1/'192.168.x.x'/g}' /etc/nagios/nrpe.cfg#sed -i '/allowed_hosts/{s/127.0.0.1/&,192.168.x.x /}' /etc/nagios/nrpe.cfg#chkconfig nrpe on) 1>/root/install.log 2>&1

转载于:https://my.oschina.net/jianhui1980/blog/389048

你可能感兴趣的文章
iOS开发过程中的心得
查看>>
QOS配置命令
查看>>
使用 MPI for Python 并行化遗传算法
查看>>
paramiko安装及使用
查看>>
我的友情链接
查看>>
《Python网络数据采集》读书笔记(六)
查看>>
Linux必学的60个命令
查看>>
iptables 学习笔记 (上)
查看>>
Windows Server 2012 R2 Active Directory(活动目录)实验一
查看>>
android viewpager 无限左右滑动
查看>>
linux下SSH远程连接服务慢解决方案
查看>>
HTML
查看>>
CENTOS7下编译安装PHP-5.4以及配置phpMyAdmin
查看>>
磁盘显示无法访问拒绝访问,里面的资料怎样找到
查看>>
Java之品优购课程讲义_day07(5)
查看>>
Java的新项目学成在线笔记-day3(八)
查看>>
路由简单的实验
查看>>
零基础学习大数据Hadoop需要什么准备?Hadoop如何发展起来的?
查看>>
前端程序员需要具备的几个软实力,你具备了吗
查看>>
RHEL系列网络配置2015083101
查看>>