search for: 100081

Displaying 2 results from an estimated 2 matches for "100081".

Did you mean: 100084
2014 Feb 27
2
Re: [libvirt] LXC, user namespaces and systemd
On 26.02.2014 17:59, Stephan Sachse wrote: >> # chown -R foo:foo /var/lib/libvirt/filesystems/mycontainer > > you must "shift" the uids for the container 0 -> 666, 1 -> 667, 2 -> > 668. there is a tool for this: uidmapshift I prepared two containers, the first I used chown, in the second uidmapshift, here is the results. ./uidmapshift -r
2014 Feb 27
0
Re: [libvirt] LXC, user namespaces and systemd
...l performs chown. > Could you explain more? # ls -ln uidmapshift-test/ -rw-r--r-- 1 0 0 0 27. Feb 15:50 uid0 -rw-r--r-- 1 81 81 0 27. Feb 15:50 uid81 # /root/uidmapshift -b uidmapshift-test/ 0 100000 1000 # ls -ln uidmapshift-test/ -rw-r--r-- 1 100000 100000 0 27. Feb 15:50 uid0 -rw-r--r-- 1 100081 100081 0 27. Feb 15:50 uid81 correctly mapped 0 to 100000 with a range of 1000 # chown 100000.100000 uidmapshift-test/ -R # ls -ln uidmapshift-test/ -rw-r--r-- 1 100000 100000 0 27. Feb 15:50 uid0 -rw-r--r-- 1 100000 100000 0 27. Feb 15:50 uid81 wrong mapping for file uid81 look at the ls -l ou...