无法在 lxc 容器中 chown 文件

无法在 lxc 容器中 chown 文件

新的 lxc 容器出现问题。我刚刚开始使用 lxd/lxc,它被设置为默认值。我使用的是 lxc 版本 2.0.4,主机是 Ubuntu 14.04.5 LTS

我创建了一个新容器:

$ lxc launch ubuntu:16.04 dnsfilter

当我进入容器 ( lxc exec dnsfilter bash) 时,我可以创建文件,但chown根本不能创建文件。

root@dnsfilter:~# touch file1
root@dnsfilter:~# chown nobody file1
chown: changing ownership of 'file1': Operation not permitted

root@dnsfilter:~# ls -laF
total 10
drwx------  2 root root    6 Oct 19 09:40 ./
drwxr-xr-x 22 root root   22 Oct 18 07:18 ../
-rw-------  1 root root  842 Oct 18 12:10 .bash_history
-rw-r--r--  1 root root 3106 Oct 22  2015 .bashrc
-rw-r--r--  1 root root  148 Aug 17  2015 .profile
-rw-r--r--  1 root root    0 Oct 19 09:39 file1

这会干扰很多事情,比如apt-get install anything-at-all

有人有什么想法吗?

相关内容