这个命令:
rm -f testfile && touch testfile && chown 0 testfile
Cygwin 失败并出现错误:
chown: changing ownership of 'testfile': Invalid argument
为什么?
答案1
你不能chown
使用root
(0) 帐户,因为 Cygwin 中没有这样的东西。
这个命令:
rm -f testfile && touch testfile && chown 0 testfile
Cygwin 失败并出现错误:
chown: changing ownership of 'testfile': Invalid argument
为什么?
你不能chown
使用root
(0) 帐户,因为 Cygwin 中没有这样的东西。