search for: dron

Displaying 7 results from an estimated 7 matches for "dron".

Did you mean: don
2017 Sep 26
1
Domain member server: user access
...g in samba-tool > that associate 'Domain Users' to gid 100? No, you haven't done anything wrong and yes the provision does set Domain Users to '100' in idmap.ldb. > > > Another question: there's no way to modify users and group with > samba-tool? I need to dron 'domain users' and recreate it? ;-) Do not remove Domain Users, but you are correct, there is no way to modify a user or group with samba-tool (you can do this for a user with 4.7.0), but you can use ldbedit. Rowland
2017 Sep 26
3
Domain member server: user access
Hai Rowland, Im pretty sure this is a bug in the DC part. I'll show. On the DC. dc1:~# getent passwd winadmin NTDOM\winadmin:*:10000:100::/home/users/winadmin:/bin/bash wbinfo --group-info="Domain Users" NTDOM\domain users:x:100: id winadmin uid=10000(NTDOM\winadmin) gid=100(users) groups=100(users),3000004(BAZRTD\group policy creator owners),3000008(NTDOM\domain admins)
2017 Sep 26
0
Domain member server: user access
...0: root at vdcsv1:~# wbinfo -G 100 S-1-5-21-160080369-3601385002-3131615632-513 I've done something wrong, or is the domain provisioning in samba-tool that associate 'Domain Users' to gid 100? Another question: there's no way to modify users and group with samba-tool? I need to dron 'domain users' and recreate it? ;-) Thanks. -- dott. Marco Gaiarin GNUPG Key ID: 240A3D66 Associazione ``La Nostra Famiglia'' http://www.lanostrafamiglia.it/ Polo FVG - Via della Bontà, 7 - 33078 - San Vito al Tagliamento (PN) marco.gaiarin(at)l...
2013 May 13
1
freebsd-update and /boot/kernel/linker.hints
Hi, since last freebsd-update fetch install I always get this message after freebsd-update fetch: The following files will be updated as part of updating to 9.1-RELEASE-p3: /boot/kernel/linker.hints but freebsd-update install doesn't install anything. Is there something wrong with my system or is this a bug in freebsd-update? kind regards Wolfgang
1998 Jun 08
27
Services not required?
I''m in the process of locking down as much of my systems here as possible as to available ports. I am down to only a handful but am not sure how much of a security risk they pose and was wondering if anyone here might be able to comment, or suggest secure versions to run: 21/FTP (WU-ftpd v2.4.2 BETA 14) 22/SSH (1.22) 23/TELNET (Netkit 0.09) 25/SMTP (Sendmail
2013 May 12
3
FreeBSD Quarterly Status Report, January-March 2013
...D Miscellaneous * BXR.SU -- Super User's BSD Cross Reference * mdoc.su -- Short Manual Page URLs __________________________________________________________________ AMD GPU Kernel Mode-Setting (KMS) Support URL: https://wiki.freebsd.org/AMD_GPU Contact: Jean-S?bastien P?dron <dumbbell at FreeBSD.org> Contact: J.R. Oldroyd <jr at opal.com> Contact: Konstantin Belousov <kib at FreeBSD.org> The project progressed well since February: * Konstantin committed is TTM port to 10-CURRENT. * With the help of John Baldwin (jhb) and Andriy Ga...
2011 Jan 13
2
[LLVMdev] Designated Initializers work in clang++
di.cpp: ------ #include <iostream> using namespace std; struct foo { int a; int b; }; int main(int, char **) { const foo f = { .a = 10, .b = 11 }; cout << f.a << ' ' << f.b << endl; return 0; } ----- $ clang++ -Wall -Wextra -Weffc++ -o di di.cpp $ ./di 10 11 It is a standard C99! Or am I wrong? $ clang++ --version clang version 2.8