Tagged Questions

1
vote
3answers
67 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 …
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 Nexent …
0
votes
1answer
521 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 a …
2
votes
7answers
291 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 …
0
votes
2answers
529 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 E …
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 enviro …
1
vote
7answers
952 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 du …
0
votes
4answers
336 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 pa …