摘要: 下载软件: wget http://mirror.bjtu.edu.cn/apache/httpd/httpd-2.4.57.tar.gz wget http://mirror.bjtu.edu.cn/apache/apr/apr-1.6.5.tar.gz wget http://mirror.bj 阅读全文
posted @ 2023-07-18 10:15 往事已成昨天 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash#首先判断变量参数是否符合要求if [ $# -lt 1 ];then echo "Usage: ./usercreate.sh username" exit 1fi #正题username=$1useradd $usernameid $usernamegrep "$usern 阅读全文
posted @ 2023-07-18 09:58 往事已成昨天 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash#Descriptionnon_passwd_login (){ rm -rf /root/.ssh/id_rsa yum -y install sshpass ssh-keygen -t rsa -f /root/.ssh/id_rsa -N "" &> /dev/null 阅读全文
posted @ 2023-07-18 09:39 往事已成昨天 阅读(19) 评论(0) 推荐(0) 编辑