Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
329 views

getpwnam on Ubuntu behaves differently if compiled in 32-bit

I'm setting up a ZABBIX agent (written in C) on a couple of Ubuntu 64-bit servers. I usually compile everything in 32-bit unless I specifically need 64-bit (such as database servers.) The servers in ...
0
votes
1answer
44 views

how to do getpwnam/getpwuid etc in tcl

does tcl have a standard way of doing NSS lookups (getpwnam, setpwent,...)
0
votes
2answers
1k views

User in passdb, but getpwnam() fails!

Attempting to set up Samba + OpenLDAP using nss_ldap. After joining Windows7 to Samba stand alone PDC, I can not login with a domain account unless that account is also added to the /etc/passwd file. ...
0
votes
1answer
163 views

list of uids / names of System Preferences > Accounts

How can I obtain an array with uid and names? I could iterate from 0 to 99999 and do a getpwnam(). However most machines have less than 5 accounts, so it's not optimal. I don't know what framework ...
0
votes
2answers
219 views

Does getpwnam respect /etc/nsswitch.conf?

Does getpwnam respect /etc/nsswitch.conf? The manpage for getpwnam states The getpwnam() function returns a pointer to a structure containing the broken-out fields of the record in the ...