Tagged Questions
-1
votes
2answers
42 views
Manage local user accounts
Assuming node is running as root, how do I:
Add a new local (OS) user account and get its uid?
Delete an account by name?
The accounts will be used for daemon processes, so they needn't be ...
0
votes
0answers
577 views
Will the Offline Windows Password & Registry Editor Boot Disk work with Windows 8? [closed]
I may be completely misunderstanding my interpretation of the upcoming Windows 8 release - but supposedly all new Windows 8 machines manufactured by Dell, HP, Microsoft, etc. will always ship with ...
0
votes
1answer
145 views
How to grant access without setup account in CentOS
I have a sudo account (not root) on several CentOS servers. We would like to share the cluster with other uses who do not have an account for research purpose. (By share I mean users can reserve a ...
3
votes
1answer
342 views
security concerns regarding accessing shadow password file from php
I wrote this function in php to check user/pass against account on linux server. It works fine, but I am concerned a little about security.
/* Need to add www-data to group shadow (and restart ...
-1
votes
1answer
3k views
Use of /etc/passwd-, /etc/shadow-, /etc/group- [closed]
In addition to the files : /etc/group, /etc/passwd and /etc/shadow, I could see three files in my linux machine.
/etc/group-
/etc/passwd-
/etc/shadow-
I cannot see these files in my root ...
0
votes
1answer
83 views
user_id and group_id always starts from a unique value
When i used useradd command in linux, the user_id and group_id for the account is automatically chosen as 500. Now if i delete the account and create it again, then also the user_id and group_id is ...
14
votes
8answers
9k views
What's the easiest way to get a user's full name on a Linux/POSIX system?
I could grep through /etc/passwd but that seems onerous. 'finger' isn't installed and I'd like to avoid that dependency. This is for a program so it would be nice if there was some command that let ...