在 Linux 命名空间中运行 chown 时收到无效参数

在 Linux 命名空间中运行 chown 时收到无效参数

运行如下命令后:

unshare -rUm
mkdir opt
mount --bind opt /opt
touch /opt/test
chown 1000:1000 /opt/test

我收到了这个:

chown: changing ownership of '/opt/test': Invalid argument

我不明白为什么或如何才能绕过这个问题。

相关内容