linux file management文件管理

操作系统五大管理功能:

  • 处理器管理
  • 存储器管理
  • 设备管理
  • 文件管理
  • 作业管理

操作系统五大功能之文件管理

1
2
3
4
5
6
7
8
9
10
11
12
13

# 文件默认权限`umask`
[root@centos7 ~]# rpm -ql bash
/usr/bin/umask
...output omitted

# 文件权限
# rwx(421)
# ugoa
# +-=
# chmod a+x,a-w file.name
[root@centos7 ~]# ls -l Dockerfile
-rw-r--r-- 1 root root 97 Jun 4 10:01 Dockerfile