Root

在 Cygwin 中不能 chown 0 (root)

  • September 16, 2018

這個命令:

rm -f testfile && touch testfile && chown 0 testfile

在 Cygwin 中失敗並出現錯誤:

chown: changing ownership of 'testfile': Invalid argument

為什麼?

您不能chown使用root(0) 帳戶,因為 Cygwin 中沒有這樣的東西。

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