1、自动化部署DNS
[root@web ~]# vim dns.sh
[root@tomcat ~]# yum -y install bind-utils
[root@tomcat ~]# echo "nameserver 192.168.8.132" > /etc/resolv.conf
[root@tomcat ~]# nslookup www.a.com
2、自动化部署rsync
[root@web ~]# vim rsync.sh
[root@web ~]# bash rsync.sh[root@tomcat ~]# rm -rf /tmp/*
[root@tomcat ~]# ls /tmp/
[root@web ~]# touch /root/rsync/file2
[root@tomcat ~]# ls /tmp/
3、自动化配置FTP
[root@web ~]# vim ftp.sh
[root@web ~]# bash ftp.sh
[root@tomcat ~]# yum -y install ftp
[root@tomcat ~]# ftp 192.168.8.128
[root@tomcat ~]# kehu
4、自动化部署frp
[root@web ~]# vim frp.sh
[root@web ~]# bash frp.sh
[root@tomcat ~]# vim frp.sh
[root@tomcat ~]# bash frp.sh
5、自动化部署samba
[root@web ~]# vim samba.sh
[root@web ~]# bash samba.sh
[root@tomcat ~]# yum -y install samba-client
[root@tomcat ~]# smbclient //192.168.8.128/smb_share -U user01
6、自动化配置yum仓库初始化(包括阿里云和epel)
[root@web ~]# vim yum.sh
[root@web ~]# bash yum.sh
7、自动化部署nfs
[root@web ~]# vim nfs.sh
[root@web ~]# bash nfs.sh
[root@tomcat ~]# yum -y install nfs-utils.x86_64
[root@tomcat ~]# mkdir /nfs[root@tomcat ~]# mount -t nfs 192.168.8.128:/nfsshare /nfs
[root@tomcat ~]# ls /nfs
8、自动化部署ntp
[root@web ~]# vim ntp.sh
[root@web ~]# bash ntp.sh
[root@tomcat ~]# date
[root@tomcat ~]# date -s "2014-08-1 00:00"
[root@tomcat ~]# ntpdate 192.168.8.136
[root@tomcat ~]# date