如何准确找到配置文件的位置

如何准确找到配置文件的位置

以zabbix为例
#find / -name zabbix_server.conf
/etc/zabbix/zabbix_server.conf
/usr/src/zabbix-4.2.8/conf/zabbix_server.conf

find的一些常用命令

-name  限制查找文件的名字
例如: find    /etc/     -name host       查找/etc/目录下名为host的文件并输出
            find   /etc      -name   *.conf         查找/etc/目录下所有以.conf结尾的文件
-size  限制查找文件的大小
find /mnt -size 20K     查找20K的文件
find /mnt -size -20K    查找小于20K的文件
find /mnt -size +20K    查找大于20K的文件
-type  限制查找文件类型
find /mnt -type d    查找目录
find /mnt -type f    查找文件
-exec command {}  {}表示查找到的文件
例如:find /mnt -perm 444 -exec rm -rf {} \;整体这个命令的意思是,删除/mnt下权限为444的文件
find /etc -name *.conf -exec cp -rp {} /mnt \;递归复制/etc下以.conf结尾的文件到/mnt下

find /mnt -user tony             ##查找/mnt中所有者是tony用户的文件
find /mnt -group tony             ##查找/mnt中所有组是tony用户的文件
find /mnt -not -user student      ##查找/mnt中所有人不是student用户的文件
find /mnt -not -group student      ##查找/mnt中所有组不是student用户的文件
find /mnt -not -user student -o -group tony   ##查找/mnt中所有人不是student用户或者所有组是tony用户的文件
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值