Changing a User’s Password on FreeBSD
Before getting into how to change a user’s password on FreeBSD, let’s have a quick revision on how that can be done on a Linux system. As a user we can change the password by typing: $ passwd Changing password for user kenno. Changing password for kenno. Current password: ... Or with a root account, we can change/set the password for another user: # passwd kenno Changing password for user kenno. New password: ... How about a FreeBSD? It should be the same way as how it’s done on Linux right? Right? Well, not quite. ...