hot questions tagged passwd - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:34:23Z http://stackoverflow.com/feeds/tag?tagnames=passwd&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1610203/unix-programming-not-sure-how-to-use-the-passwd-struct 1 Unix programming. Not sure how to use the passwd struct Bryan Harrington 2009-10-22T21:55:16Z 2009-10-22T22:25:33Z <p>I've done some research and I'm still struggling with the passwd structure.</p> <p><a href="http://www.opengroup.org/onlinepubs/000095399/basedefs/pwd.h.html" rel="nofollow">http://www.opengroup.org/onlinepubs/000095399/basedefs/pwd.h.html</a></p> <p>I need to obtain the user ID however I dont think I'm using understanding it at all.</p> <p>int getpwuid_r(uid_t, struct passwd *, char *, size_t, struct passwd **);</p> <p>This method call returns a point to a structure that will contain all the data I need. I'm fairly confused on the parameters.</p> <p>struct passwd. Do I need to declare this first? struct passwd passwd? </p> <p>I'm just totally lost on how to use this.</p> <p>Lastly, once I fill my pointer. What calls will I use to get the data? Thanks for any help.</p> http://stackoverflow.com/questions/1586972/diskless-login-with-linux-opensolaris 1 Diskless login with Linux/OpenSolaris [closed] HonoredMule 2009-10-19T04:34:46Z 2009-10-19T04:44:42Z <h2>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?</h2> <p>I have a Nexenta-based (1) server that uses a very old 40GB PATA drive for the root partition which could not reside in the main storage array (nor would I want it to, though it does back up to it). It performs well because everything that actively accesses storage uses the SATA raid2z array. This means that the root partition itself is actually completely inactive and the 40GB disk is usually left asleep.</p> <p>Or rather, <em>almost</em> completely inactive. Login requests require the drive to spin up, causing both annoying login delays and unnecessary strain on this old drive which could otherwise remain completely dormant.</p> <p>As far as I can tell, the drive is only accessed to read the passwd and shadow files, and I'm surprised that these do not remain cached in memory after first being read and thereafter unmodified. Is it possible to explicitly keep them cached, relocate them elsewhere, or otherwise prevent the root partition from having to spin up? (2)</p> <p><hr /></p> <ol> <li>For those unfamiliar, Nexenta is a variant of Ubuntu that uses the OpenSolaris kernel and tool chain while supporting the Debian tool chain as much as possible. For the most part, I have access to the capabilities of both.</li> <li>Please note that I do not consider a suitable solution anything that breaks logins or bootup when the storage array is not present.</li> </ol> http://stackoverflow.com/questions/1020534/useradd-using-crypt-password-generation 0 Useradd using crypt password generation mediahoney 2009-06-19T23:57:27Z 2009-11-24T13:25:57Z <p>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 research has not gotten me too far. Here is what I have thus far:</p> <p>Notes: 1) HOME_DIR and GROUP are obviously erroneous, I have used these as placeholders for the sake of this example ... I am not having issues with the home/base_dir (-d, -b) or group (-g) functionality of 'useradd'</p> <pre><code>password="pass" pass=$(perl -e 'print crypt($ARGV[0], "wtf")' $password) useradd -d HOME_DIR -s /bin/bash -g GROUP -p $pass -f -1 testing </code></pre> <p>Topics:</p> <ol> <li>Why are my password generation efforts not working?</li> <li>is /bin/bash the correct shell to use for a purely FTP user, or would I use /bin/false or a different shell?</li> <li>By default, useradd disables an account until they provide their own password, how do I bypass this?</li> <li>I do not want to use the passwd utility as it cripples my ability to automagically generate FTP accounts, I found a solution to this <a href="http://stackoverflow.com/questions/714915/using-the-passwd-command-from-within-a-shell-script">here</a>, but I do not understand the solution</li> </ol> <p>Let me know if I am going about this all wrong, or if what I am trying to do is not possible or if I am misinformed about anything I have stated herein. Thank you for any help you can provide. :D</p> http://stackoverflow.com/questions/799325/what-api-do-i-call-to-set-a-users-password-on-linux 2 What API do I call to set a user's password on linux? Stéphane 2009-04-28T18:44:13Z 2009-04-29T09:06:43Z <p>I know about <code>passwd(1)</code> and <code>crypt(3)</code>. 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 overwrite the entry for the user in question. Application runs as root.</p> <p>Does such an API exist?</p> <p>EDIT: Guess I should specify, the password is being synced between different systems, so we cannot simply call system("passwd") and allow the user to enter whatever password they want when passwd prompts them. We need to know the password so we can programatically update the other systems with the same password.</p> http://stackoverflow.com/questions/385980/problem-with-an-expect-script 0 Problem with an expect script Pooly 2008-12-22T10:50:06Z 2009-05-26T15:00:03Z <p>Hi,</p> <p>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.</p> <p>This is the script:</p> <pre><code>#!/usr/bin/expect -f # Change user passwd set timeout 30 strace 4 set password [lindex $argv 1] set old_password [lindex $argv 2] spawn passwd [lindex $argv 0] sleep 1 expect "(current) UNIX password: $" send "$old_password\r" expect "Enter new UNIX password: $" send "$password\r" expect "Retype new UNIX password: $" send "$password\r" expect eof </code></pre> <p>On the server the output looks like this:</p> <pre><code>myuser@server:~$ /home/myuser/adm/chpasswd myuser NewPasswd OldPasswd 2 lindex $argv 0 1 set username [lindex $argv 0] 2 lindex $argv 1 1 set password [lindex $argv 1] 2 lindex $argv 2 1 set old_password [lindex $argv 2] 1 spawn passwd $username spawn passwd myuser 1 sleep 1 1 expect "(current) UNIX password: $" Changing password for myuser (current) UNIX password: 1 send "$old_password\r" 1 expect "Enter new UNIX password: $" OldPasswd Enter new UNIX password: 1 send "$password\r" 1 expect "Retype new UNIX password: $" NewPasswd 1 send "$password\r" 1 expect eof Retype new UNIX password: 1 exit 0 </code></pre> <p>So is not working, as the couple expect-send seems unsync.</p> <p>But strangely enough, on my laptop it works:</p> <pre><code>test@mars:/home/test/adm$ ./chpasswd test NewPasswd OldPasswd 2 lindex $argv 1 1 set password [lindex $argv 1] 2 lindex $argv 2 1 set old_password [lindex $argv 2] 2 lindex $argv 0 1 spawn passwd [lindex $argv 0] spawn passwd test 1 sleep 1 1 expect "(current) UNIX password: $" Changing password for test (current) UNIX password: 1 send "$old_password\r" 1 expect "Enter new UNIX password: $" OldPasswd Enter new UNIX password: 1 send "$password\r" 1 expect "Retype new UNIX password: $" NewPasswd Retype new UNIX password: 1 send "$password\r" 1 expect eof NewPasswd passwd: password updated successfully 1 exit 0 </code></pre> <p>Any ideas why it's going wrong on the server ? Thanks</p> http://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu 1 Resetting a user's password in Ubuntu [closed] Alan 2008-10-14T04:29:47Z 2008-10-14T11:28:15Z <p>I've grokked Unix for years (20), and I certainly feel comfortable in the shell/vi.</p> <p>Unfortunately, I've stumbled into a WTF. I created a new user (foobar) on the Ubuntu 7.1 environment of VPS, but I've forgotten the password. Therefore, when I execute 'passwd', I cannot be authenticated as 'foobar'. I do know how to become root since that password has not changed.</p> <p>How do I reset foobar's password?</p> <p>EDIT: thanks! that was a real doh! I feel like:</p> <p><img src="http://neatorama.cachefly.net/images/2008-01/homer-simpson-brain-mri.jpg" alt="homer simpson" /></p> http://stackoverflow.com/questions/127459/php-shellexecute-change-user-password 1 PHP - shell_execute -change user password Armadillo 2008-09-24T14:20:37Z 2008-12-20T19:36:03Z <p>Hi,</p> <p>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:</p> <pre><code>&lt;?php $output = shell_exec("sudo -u dummy passwd testUser testUserPassword"); $output2 = shell_exec("dummyPassword"); echo $output; echo $output2; echo "done"; ?&gt; </code></pre> <p>My problem is that this script is not changing the password for the user "testUser". What am I doing wrong?</p> <p>Thanks</p> http://stackoverflow.com/questions/132384/php-procopen-or-other-function-that-works 0 php - proc_open (or other function that works) Armadillo 2008-09-25T09:50:03Z 2008-09-25T15:49:49Z <p>I need to do some command lines through a browser. What I need to do in a command-line would be:</p> <pre><code>$login &lt;login name&gt; &lt;password&gt; $passwd &lt;old password&gt; &lt;new password&gt; &lt;retype new password&gt; </code></pre> <p>So, how can I do this using the <a href="http://www.php.net/manual/en/function.proc-open.php" rel="nofollow">proc_open</a> function? Or should I use another function to do this?</p> <p>Thanks</p>