search for: idnumbers

Displaying 20 results from an estimated 40 matches for "idnumbers".

Did you mean: uidnumbers
2009 Feb 26
1
ggplot2: labels points with different colors or idnumbers
Dear list,   Using ggplot2 I could produce both boxplot and points in the same plot but instead of points I would like to label the different subjects with different colors or their idnumbers. Is there away to do it? Also how can I put three plots on the same graph with ggplot2? mfrow=c(3,1) did not do the job.   > dat    group time   id  freq 1      1   00 0018  5.21 2      1   00 3026  3.13 3      1   00 5030  5.04 4      1   00 5108  3.23 5      1   00 5152  3.97 6      1   00 6...
2002 Feb 01
1
Sampling from a database
I use RODBC and RpgSQL quite a lot to access files stored in another machine under PostgreSQL. Since I am now using files which do not fit into R's memory, I would like to take random samples. What I would like is to issue a query such as SELECT * FROM file WHERE runif > 0.9 with "runif" being a uniformly distributed random number, generated on the fly; but I cannot
2006 Mar 08
1
Want to fit random intercept in logistic regression (testing lmer and glmmML)
Greetings. Here is sample code, with some comments. It shows how I can simulate data and estimate glm with binomial family when there is no individual level random error, but when I add random error into the linear predictor, I have a difficult time getting reasonable estimates of the model parameters or the variance component. There are no clusters here, just individual level responses, so
2015 Apr 08
2
How can I have new users/groups to include posixAccount/posixGroup schema automatically?
Greetings, All! I've added a few domain users/groups for test, but they don't have ?idNumber, even though the relevant schema is loaded? How can I tell it to include relevant schema for all newly created users/groups? -- With best regards, Andrey Repin Wednesday, April 8, 2015 20:52:10 Sorry for my terrible english...
2015 Jan 28
2
[SOLVED] (kinda) Re: Can't get idmap_ad to work with winbind (only idmap_rid)
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! After a night of sleeping it over, I just started from scratch today. So I re-did all the client setups, starting with Ubuntu, this time 14.04, not 12.04 as when I first tried. Again I did what it says in the Wiki and - bingo! It works as advertised, Unix uid/gid, home directory and login shell information come from the directory now. Even PAM
2014 Dec 21
1
Samba 4 problems
On Fri, 19 Dec 2014 11:35:58 +0100 steve <steve at steve-ss.com> wrote: > On 19/12/14 10:06, Brett Wynkoop wrote: > > > > > So is there a way to force a particular UID, meaning can I create > > account smith with UID 553 in a Samba DC? > > Yes. Simply add: > uidNumber: 553 > to the user's entry. That gets it into the database. You can use sssd >
2014 Aug 06
1
Samba 4 AD share: Access denied
...arts automatically) changed group > ownership of a directory to "domain admins". When listing the > directory with "ls -lAn", it showed 70012, not 10001. So they all > have gIDNumber set now, but it isn't pulling through. What could > cause that? maybe you have xidnumbers and (u)(g)idnumbers ? run this on your DC # ldbsearch --url=/usr/local/samba/private/idmap.ldb 'xidnumber=70012' objectSid then search for this sid in sam.ldb # ldbsearch --url=/usr/local/samba/private/sam.ldb objectsid=<returned sid> objectSid uinumber gidnumber in my installati...
2015 Jan 28
0
[SOLVED] (kinda) Re: Can't get idmap_ad to work with winbind (only idmap_rid)
On 28/01/15 19:56, "Andreas Braml (B?rgerEnergie Berlin)" wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi! > > After a night of sleeping it over, I just started from scratch today. > > So I re-did all the client setups, starting with Ubuntu, this time > 14.04, not 12.04 as when I first tried. Again I did what it says in > the Wiki and -
2019 Mar 01
1
uidNumber=RID allowed or not recommended?
Hi, the samba documentation concerning the migration of a Samba NT4 domain to AD (https://wiki.samba.org/index.php/Migrating_a_Samba_NT4_Domain_to_Samba_AD_(Classic_Upgrade)) mentions in section "Important Notes": It used to be thought that using Windows RIDs for Unix IDs was acceptable, time has proven otherwise. But unfortunately no reasoning is given. I am wondering why this is not
2018 May 08
2
Verifying idmap.ldb consistency across domain controllers
On 5/8/2018 9:07 AM, Rowland Penny via samba wrote: > On Tue, 8 May 2018 08:59:52 -0400 > lingpanda101 via samba <samba at lists.samba.org> wrote: > >> Hello, >> >>     Is there a command or quick way to verify idmap.ldb is >> consistent across domain controllers? Similar to using samba-tool to >> compare two ldap databases? Thanks. >> > No,
2020 Nov 03
1
Get last uidNumber
Am 03.11.20 um 17:46 schrieb Rowland penny via samba: > On 03/11/2020 16:24, basti via samba wrote: >> Hello, >> is there a way to get the last uidNumber from ldap. >> >> I can do a ldapsearch like: >> >> ldapsearch -h samdom.example.com -D "administrator at samdom.example.com" >> -w "changeit"? -b
2020 Oct 30
3
Samba as AD member & without winbind...
...> A bit ? 'while using allocation to create new mappings' I have never used this backend, but what you are saying is that it will use the SID from AD? and map this to a Unix user or group. For the OP this would probably entail creating Unix users & groups with the uidNumber or gidNumbers from LDAP. If this is the case, you might just as well add these *idNumbers to AD and use the winbind 'ad' backend. Rowland
2015 Apr 09
3
How can I have new users/groups to include posixAccount/posixGroup schema automatically?
...machine, this involves creating a user and then adding the > required attributes with the UNIX attributes tab. You could create your > users with samba-tool, but you will need the latest samba 4 to get all > the required attributes and you will still have to keep a record of the > uidNumbers & gidNumbers you have used, samba-tool will not do this. > Other than this, you can write your own scripts in your favourite > computer language. That's kind of not what I would expect from Linux system. smbldap-tools were crude, but an order of magnitude more effective, as they al...
2020 Nov 03
6
Get last uidNumber
Hello, is there a way to get the last uidNumber from ldap. I can do a ldapsearch like: ldapsearch -h samdom.example.com -D "administrator at samdom.example.com" -w "changeit" -b "DC=samdom,DC=example,DC=com" -x -LLL "(uidNumber=*)" uidNumber | grep -Po "(?<=uidNumber: )([0-9]{4})" | sort | tail -n1 But there is no guarantee that the last
2018 Aug 08
1
RFC2307 on AD DC
Em 08/08/2018 11:15, Rowland Penny via samba escreveu: > On Wed, 8 Aug 2018 10:18:51 -0300 > Marcio Vogel Merlone dos Santos via samba <samba at lists.samba.org> wrote: > >> I am deploying a new AD DC for our network using Ubuntu 18.04 and >> BIND_DLZ. Al lis fine but the RFC2307 attributes on DC. What's the >> recommended/correct way to use RFC2307 attributes
2016 May 25
0
Hard drives being renamed
>> I've run into this with ZFS on Linux. The 'blkid' is useful to identify the >> target device and then add that to your fstab. I don't use device names >> at all anymore, too ambiguous (depending on the circumstance) in my >> opinion. Right. And there are other ways to identify disks unequivocally. Under CentOS, for example, I find the following
2016 May 25
0
Hard drives being renamed
>> I've run into this with ZFS on Linux. The 'blkid' is useful to identify the >> target device and then add that to your fstab. I don't use device names >> at all anymore, too ambiguous (depending on the circumstance) in my >> opinion. Right. And there are other ways to identify disks unequivocally. Under CentOS, for example, I find the following
2015 Apr 09
0
How can I have new users/groups to include posixAccount/posixGroup schema automatically?
...is involves creating a user and then adding the >> required attributes with the UNIX attributes tab. You could create your >> users with samba-tool, but you will need the latest samba 4 to get all >> the required attributes and you will still have to keep a record of the >> uidNumbers & gidNumbers you have used, samba-tool will not do this. >> Other than this, you can write your own scripts in your favourite >> computer language. > That's kind of not what I would expect from Linux system. > smbldap-tools were crude, but an order of magnitude more effect...
2015 Apr 22
0
Samba 4.1 Member Server and Winbind
Greetings, Peter Ross! > for a while I am running a Samba 4.1 AD server under FreeBSD (from the > FreeBSD ports). At thw moment the domain has ca. 20 Windows 7 desktops. > I wanted to add a Samba 4.1 file server as a member server, was able to > joint the domain and see AD users via "winbind -u" > but "getent password" or "id <user>" does not
2018 May 08
0
Verifying idmap.ldb consistency across domain controllers
On Tue, 8 May 2018 09:23:42 -0400 lingpanda101 via samba <samba at lists.samba.org> wrote: > My concern is with human error and built in groups. I'm using RFC2307 > on all DC's so all UID's and GID's for manually created user & groups > I should be good. I'm pretty confident for all DC's I have added to > the domain, I took the step to copy and