find格式:find/[参数]-exec命令搜索名称:find/-name".txt"-----加引号搜索用户:find/-userwang搜索uid/gid:find/-uid/gid搜索类型:find/-type搜索深度:find/--maxdepth1--mindepth1搜索空目录:find/-empty搜索空文件:find/-typef-empty或者关系:find
分类:
其他好文 时间:
2020-08-12 15:35:22
阅读次数:
60
at if not, Start Atd Service systemctl status atd.service //output: ┌─[root@nedrain]─[~] └──? $systemctl status atd.service ● atd.service - Job spooli ...
分类:
系统相关 时间:
2020-06-19 13:45:08
阅读次数:
66
深入理解系统调用 一.实验要求 找到一个系统调用, 系统调用号为学号最后两位相同 的系统调用 通过汇编指令触发该系统调用 通过gdb跟踪该系统调用的内核处理过程 重点阅读分析系统调用入口的保存现场, 恢复现场,和系统调用返回, 以及重点关注系统调用过程中内核堆栈状态的变化 二.实验过程 实验准备 配 ...
分类:
其他好文 时间:
2020-05-26 13:50:21
阅读次数:
52
1. 安装依赖包 yum -y install zlib-devel curl-devel openssl-devel perl cpio expat-devel gettext-devel openssl zlib autoconf tk perl-ExtUtils-MakeMaker 2.获取最 ...
分类:
系统相关 时间:
2020-04-23 19:25:28
阅读次数:
440
Apache安装包中自带ab压力测试工具,但是我用的是nginx,所以就单独安装了。 独立安装 ab运行需要依赖apr-util包,安装命令为: yum install apr-util 安装依赖 yum-utils中的yumdownload 工具 如果没有找到 yumdownload 命令可以 y ...
分类:
其他好文 时间:
2020-04-18 13:31:12
阅读次数:
96
rpm 解压 RPM包括是使用cpio格式打包的,因此可以先转成cpio然后解压,如下所示: rpm2cpio xxx.rpm | cpio -div 压缩 rpmdev-setuptree rpmbuild -ba hello-world.spec deb 1.首先下载deb包,比如:将其放在 / ...
分类:
其他好文 时间:
2020-02-13 19:10:57
阅读次数:
78
1.什么是 Initramfs 在2.6版本的linux内核中,都包含一个压缩过的cpio格式的打包文件。当内核启动时,会从这个打包文件中导出文件到内核的rootfs文件系统,然后内核检查rootfs中是否包含有init文件,如果有则执行它,作为PID为1的第一个进程。这个init进程负责启动系统后 ...
分类:
其他好文 时间:
2019-12-23 19:15:17
阅读次数:
101
查询一个包是否安装rpm-qRPM包名这里的包名是不带平台信息和后缀名的rpm-qa查询当前系统所有已安装的包得到一个已安装包的信息rpm-qi包名列出一个已安装的RPM包的安装文件rpm-ql包名列出某个文件属于哪个RPPM包先用which或whereis查看命令或文件的绝对路径然后查看属于哪个rpm包rpm-qf绝对路径5.解压rpm包命令rpm2cpioxxx.rpm|cpio-div
分类:
其他好文 时间:
2019-11-12 11:30:11
阅读次数:
110
PREFIX=$HOME/usr/local # yumdownloader --source bzip2-devel rpm2cpio bzip2-1.0.6-13.el7.src.rpm | cpio -id tar zxf bzip2-1.0.6.tar.gz patch -p0 < bzip ...
分类:
其他好文 时间:
2019-11-09 21:57:46
阅读次数:
110