摘要: 1、本实验基于centos6.5服务器做的 cat cat /etc/redhat-release 2、在配置环境之前需要先将服务器自带的rsync卸除 yum -y remove rsync* 3、清除以后,安装wget服务 因为之前安装过所以显示已经安装 4、使用命令下载rsync和inotif 阅读全文
posted @ 2019-01-10 22:41 呼呼代码世界 阅读(403) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash#批量创建10个系统帐号并设置密码rm -f user.logfor name in `seq 10`do #非交互式的输入随机密码 password=`echo $RANDOM | md5sum | cut -c1-8` #可以使用时间随机密码password=`echo " 阅读全文
posted @ 2019-01-10 10:09 呼呼代码世界 阅读(625) 评论(0) 推荐(0) 编辑