2
votes
7answers
298 views
What API do I call to set a user’s password on linux?
I know about passwd(1) and crypt(3). What I'm looking for is a C API to call which will set the user's password in the passwd/shadow files, without having to programatically walk the files and …
1
vote
3answers
84 views
Unix programming. Not sure how to use the passwd struct
I've done some research and I'm still struggling with the passwd structure.
http://www.opengroup.org/onlinepubs/000095399/basedefs/pwd.h.html
I need to obtain the user ID however I dont think I'm …
1
vote
0answers
21 views
Diskless login with Linux/OpenSolaris [closed]
Is it possible to enable a Linux or OpenSolaris based server to process standard unix login requests without spinning up the hard drive holding the root partition?
I have a Nexenta-based (1) server …
1
vote
3answers
2k views
Resetting a user’s password in Ubuntu [closed]
I've grokked Unix for years (20), and I certainly feel comfortable in the shell/vi.
Unfortunately, I've stumbled into a WTF. I created a new user (foobar) on the Ubuntu 7.1 environment of VPS, but …
1
vote
7answers
1k views
PHP - shell_execute -change user password
Hi,
I need to be able to change the users' password through a web page (in a controlled environment).
So, for that, I'm using this code:
<?php
$output = shell_exec("sudo -u dummy passwd testUser …
0
votes
2answers
624 views
Useradd using crypt password generation
Hello,
I am working on what I thought was a very simple script to dynamically create an FTP user using 'useradd' There are several parts of this process I am unfamiliar with, and an entire day's …
0
votes
2answers
569 views
Problem with an expect script
Hi,
I'm trying to create a script to update a password in a
non-interactive way. It's working on my laptop but fails on my server.
Both are running the same configuration, using Etch.
This is the …
0
votes
4answers
359 views
php - proc_open (or other function that works)
I need to do some command lines through a browser.
What I need to do in a command-line would be:
$login
<login name>
<password>
$passwd
<old password>
<new password>
…
