我在以下位置手动创建了两个组/etc/group
:
file-owner:x:300:user
user:x:400:
我有一个配置文件,由 user/group 拥有file-owner
。我不希望其他用户阅读它。
ls -l /tmp/my-configs.txt
-r--r----- 1 file-owner file-owner 1054552 Jun 11 12:22 /tmp/my-configs.txt
我使用 id 运行一个进程user:user
,但无法读取 所拥有的配置文件file-owner
。错误消息示例,来自cat
:/tmp/my-configs.txt: Permission denied
难道我做错了什么?