更改 SCO 中文件夹的所有者

更改 SCO 中文件夹的所有者

如何更改 SCO 中文件夹的所有者/组?

我做了:

ls -l

并得到以下结果:

...
drwxr-xr-x 9 root root 512 Jul 2 10:09 opt
...

我努力了:

chown /opt

但这并没有奏效。

我想使用的用户是:test

我问了另一个关于如何更改文件夹权限的问题(不同的线程),但意识到我仍然无法在 /opt 文件夹中创建文件夹,其中 root 是所有者和组 - 如果 test 不是 root 的一部分团体。

在SCO中获得root权限

答案1

你读过说明书吗?我没有 SCO,但我认为chown它可以像普通 unix 一样工作:

SYNOPSIS
       chown [OPTION]... [OWNER][:[GROUP]] FILE...

DESCRIPTION
       [...] If  only a colon is given, or if the entire operand is empty, nei‐
       ther the owner nor the group is changed.

所以尝试一下

chown test /opt

如果您还想更改组,请使用

chown test:testgroup /opt

答案2

您可以更改任何文件夹的所有者,如下所示

sudo chown -R username:username Dir name

相关内容