Chown

在 SCO 中更改文件夾的所有者

  • October 21, 2013

如何更改 SCO 中文件夾的所有者/組?

我做了:

ls -l

並得到以下資訊:

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

我努力了:

chown /opt

但這並沒有奏效。

我要使用的使用者是:test

我已經問過另一個關於如何更改文件夾權限的問題(不同的執行緒),但我意識到我仍然無法在 /opt 文件夾中創建以 root 為所有者和組的文件夾 - 如果 test 不是 root 的一部分團體。

在 SCO 中獲得 root 權限

你讀過說明書嗎?我沒有 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

您可以像這樣更改任何文件夾的所有者

sudo chown -R username:username Dir name

引用自:https://unix.stackexchange.com/questions/42950