如何更改 SCO 中資料夾的擁有者/群組?
我做了:
ls -l
並得到以下結果:
...
drwxr-xr-x 9 root root 512 Jul 2 10:09 opt
...
我努力了:
chown /opt
但這並沒有奏效。
我想使用的用戶是:test
我問了另一個關於如何更改資料夾權限的問題(不同的線程),但意識到我仍然無法在 /opt 資料夾中創建資料夾,其中 root 是所有者和群組 - 如果 test 不是 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