Tem um problema com um novo contêiner lxc. Acabei de começar a tocar com o lxd / lxc e ele é configurado como padrão. Estou usando o lxc versão 2.0.4 e o host é Ubuntu 14.04.5 LTS
Eu criei um novo contêiner com:
$ lxc launch ubuntu:16.04 dnsfilter
quando eu entro no container ( lxc exec dnsfilter bash
) eu consigo criar arquivos, mas não chown
deles.
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
Isso interfere em um monte de coisas, como apt-get install anything-at-all
Alguém tem alguma ideia?