Displaying 4 results from an estimated 4 matches for "uid_map".
Did you mean:
uuid_map
2014 Jan 29
1
Re: Libvirt-LXC + systemd + user namespace
...9;ve created a bash process inside user namespace with mapping
root_inside<->root_outside.
I've used a program from https://lwn.net/Articles/532593/ :
./userns_child_exec -U -M '0 0 1' -G '0 0 1' bash
This program simply calls clone with CLONE_NEWUSER flag and set proper
uid_map and gid_map.
The test commands are as follows:
mkdir /test
mount debugfs /test -t debugfs
and strace shows:
mount("debugfs", "/test", "debugfs", MS_MGC_VAL, NULL) = -1 EPERM
(Operation not permitted)
Now the question is:
Is it a kernel bug or expected behavior ie....
2014 Jan 28
2
Libvirt-LXC + systemd + user namespace
Hi there!
I am trying to turn on user namespace by adding following lines to the
config:
<idmap>
<uid start='0' target='0' count='100000'/>
<gid start='0' target='0' count='100000'/>
</idmap>
As you can see the root in container is mapped to the root outside. I was
expected to see no difference
2002 Jun 05
1
How to switch from NT to Samba transparently?
Hi,
I want to switch from our Windows NT server
( which works as our PDC ) to Linux - Samba.
Could you advice a step-by-step guide about
this process, or is that possible, at all?
Can I use Samba as a BDC, convert the user
DB and than promote it to PDC?
Thanks in advance!
Regards;
Istvan
2015 May 19
0
Can't achieve alias working with SQL
...able = yes
smtpd_sasl_local_domain = $mydomain
smtpd_sasl_security_options = noanonymous
smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtpd_use_tls = yes
uid_maps_dbname = $mysql_dbname
uid_maps_hosts = $mysql_host
uid_maps_password = $mysql_passwd
uid_maps_select_field = uid
uid_maps_table = users
uid_maps_user = $mysql_user
uid_maps_where_field = concat(username,'@',domain)
virtual_alias_maps = mysql:alias_maps
virtual_gid_maps = mysql:gid_maps
vi...