Go to file
2017-03-10 14:32:09 +01:00
debian bump version to 2.0.7-4 2017-03-10 09:28:55 +01:00
lxc.tgz update to lxc-2.0.7 2017-01-25 10:48:54 +01:00
Makefile update upload target 2017-03-10 14:32:09 +01:00
README add another ref to the docs 2015-04-10 16:26:12 +02:00

NOTES:

Problems with RHEL7 kernel:

  ret = unshare(CLONE_NEWUSER);

does not work, because:

---------------------------
# file: liinux-2.6-3.10.0/kernel/user_namespace.c 
int create_user_ns(struct cred *new)
{
	struct user_namespace *ns, *parent_ns = new->user_ns;
	kuid_t owner = new->euid;
	kgid_t group = new->egid;
	int ret;

	/* Currently disabled in RHEL7 */
	return -EINVAL;
...
---------------------------

There is already an open bug:

https://bugzilla.redhat.com/show_bug.cgi?id=917708

Other links:

http://zurlinux.com/?p=2106