Linux文件权限及文件查找

Linux文件权限

echo pwd>>pwd.sh
ls -l pwd.sh

查看文件或目录的两种方式

umask
umask -S

查看新建是否与默认权限相符

umask
touch test1
mkdir test2
ls -l

修改pwd.sh文件权限为r-xr–r--

chmod 544 /root/pwd.sh

执行pwd.sh

./pwd.sh

添加用户stu,修改密码为123

useradd stu
passwd stu

修改问价test1的属主为stu,test属的组为stu

chmod stu test1
chgrp stu test2
ls -l

增加test1的属主具有可执行权限

chmod u+x test1
ls -l

文件查找

查看文件的类型

file /study/bashrc

查询ifconfig 和cd命令的完整文件名

which ifconfig
which cd

找出与passwd有关的“说明文件”文件名

whereis -m passwd

找出系统中所有与passwd相关的文件名

locate passwd

列出系统3天前24小时内修改过的文件

find / -mtime 3

使用find查找当前目录下比man.config新的文件,并存储到man.config.new文件。

find/root/27083914 -newer man.config>man.config.new

列出/etc下比/etc/man.config新的文件

find /etc -newer /etc/passwd

查找系统中所有属于root的文件和不属于任何人的文件

find	/	-user	root
find	/	-nouser

使用find查找/下面所有名称为man.config的文件

find	/	-name	man.config

使用locate查找所有名称为man.config的文件

locate man.config

locate 更加详细与man.config相关联的也都列出来
找出/etc下文件类型为f的文件

find	/etc -type f

找出系统大于1M的文件

find	/	-size +1000k
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐