1.系统管理 find – 根据路径和条件搜索指定文件 rpm – RPM软件包管理器 ps – 显示进程状态 startx – 初始化X-window系统 uname – 显示系统内核信息 resize2fs – 同步文件系统容量到内核 kill –…
locate:功能:在文件资料库中查找文件,locate命令其实是find -name的另一种写法,但是要比后者快得多,原因在于它不搜索具体目录,而是搜索数据库/var/lib/locatedb,这个数据库中含有本地所有文件信息。Linux系统自动创建这个数据库,并且每天自动更新一次,所以使用locate命令查不到最新变动过的文件。为了避免这种情况,可以...
find /home -size +512k 查大于512k的文件 find /home -size -512k 查小于512k的文件 find /home -links +2 查硬连接数大于2的文件或目录 find /home -perm 0700 查权限为700的文件或目录 find /tmp -name tmp.txt -exec cat {} \; find /tmp -name tmp.txt -ok rm {} \; find / -amin...
more(file perusal filter one screen at a time) less(file perusal filter one line at a time) head(output the first part of files) -n 显示前n行 -v 显示文件名 tail(output the last part of files) -n 显示倒数n行 -f 监听文件新增信息(会随着文件更改而刷新) ln(make links between file) ...
file aa.yaml which 1. which 根据命令 查找命令属于哪个目录下 案例: which ifconfig 显示 /usr/sbin/ifconfig whereis 2. whereis 根据命令 查找命令属于哪个目录下 案例: whereis pwd whereis -b pwd find 3.find根据条件查找Linux系统下的文件 , ...
find在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。如果使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与文件。并且将查找到的子目录和文件全部进行显示。 示例: find /home -name "*.txt" 在/home目录下查找以.txt结尾的文件名 find /home -iname "*.txt" ...
Find Files in Linux with...Find Command Examples Find File By Name in Linux 20 Advanced Linux Find Command Examples 3 Ways to find...the largest files in Linux How to use Find Command in Linux Understanding Maxdepth Mindepth Depth In...Linux Find Command 10 Linux Find Exec examples - Ad...
linux_elfs - Find ELF binaries in process mappings linux_enumerate_files - Lists files referenced by the filesystem cache linux_find_file - Lists and recovers files from memory linux_getcwd - Lists current working directory of each process ...
按文件名:根据名称查找/opt目录下的filename.txt文件。 find /opt/ -name filename.txt 按拥有者:查找/opt目录下,用户名称为userbdc的文件。 find /opt/ -user userbdc 按文件大小:在/home目录下查找大于200m的文件(+n 大于 -n小于 n等于)。
2024: "Beyond Control: Exploring Novel File System Objects for Data-Only Attacks on Linux Systems" [paper] 2023: "No Tux Given: Diving Into Contemporary Linux Kernel Exploitation" by sam4k [slides] 2023: "Linux Kernel Exploitation series" by santaclz [article] [part2] [part 3] 2023: "Re...