摘要: 总结 第一章:计算机概论 介绍计算机硬件、软件、操作系统等基础概念。 介绍Linux操作系统的历史、特点以及发行版本。 第二章:Linux的安装 讲解如何准备安装Linux所需的条件。 介绍Linux安装的几种方式,包括光盘安装和网络安装。 第三章:Linux文件、目录与权限 介绍Linux文件系统 阅读全文
posted @ 2024-09-10 19:06 Rohin1 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Rocky Linux 9.4 部署Zabbix 7.0 1-1.检测源 wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm #下载epel的源 rpm -ivh epel-release-lates 阅读全文
posted @ 2024-09-10 18:29 Rohin1 阅读(52) 评论(0) 推荐(0) 编辑
摘要: `cat access.log |grep nginx |awk '{print $1}'| sort | uniq -c | sort -nr -k1 | head -n 10 |awk -F ' ' '{print $2 " 次数:"$1}' 1、查看有多少个IP访问 awk '{print $ 阅读全文
posted @ 2024-09-09 11:41 Rohin1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash 日志格式: $remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_ 阅读全文
posted @ 2024-09-09 11:35 Rohin1 阅读(23) 评论(0) 推荐(0) 编辑
摘要: ` dn=dc=localdomain,dc=com 搜索属性=uid 绑定DN=cn=admin,dc=localdomain,dc=com` 阅读全文
posted @ 2024-09-09 11:28 Rohin1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.更换阿里云源(可以不更换) sed -e 's|^mirrorlist=|#mirrorlist=|g' -e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.aliyun.com/rockyli 阅读全文
posted @ 2024-09-09 11:24 Rohin1 阅读(118) 评论(0) 推荐(0) 编辑