MySQL用户授予的权限

MySQL用户授予的权限 参考:https://www.cnblogs.com/kerrycode/p/7423850.html //设置全部ip访问方法一 use mysql; 使用mysql数据库 update user set host = '%' where user ='root'; f

centos7 安装php82

centos7 安装php82 及 添加模块 tonyenc https://blog.csdn.net/oToyix/article/details/129384160 解决包冲突 Error: libzip5-tools conflicts with libzip-0.10.1-8.el7.x8

删除文件需要什么权限

删除文件需要什么权限 原文:https://blog.csdn.net/qq_23062949/article/details/107817830 首先删除这个文件需要文件你要先拥有这个文件所属文件夹(这里需要强调是文件夹)的所有权限就是读r,写w,执行x 因为发现这个文件的过程首先是进入这个文件夹

Xargs

Xargs 参考:find -print0和xargs -0原理及用法 参考:知乎xargs详解

Linux攻击入侵排查

Linux攻击排查 参考:linux攻击排查 参考:Linux入侵排查 参考:Linux 入侵类问题排查思路 参考:

shell中的if

shell中的if 参考:shell中的if语句 1、基本语法: if [ command ]; then 符合该条件执行的语句 fi 2、扩展语法: if [ command ];then 符合该条件执行的语句 elif [ command ];then 符合该条件执