4

What would be FreeBSD password file equivalent of linux /etc/shadow and /etc/passwd? Is it the same?

According to what I heard /etc/passwd exists in FreeBSD, but not sure in case of /etc/shadow.

2 Answers2

6

In freeBSD password and user related information are stored as blow.

 /etc/master.passwd  the user database. Its equivalent for /etc/shadow of Linux
 /etc/passwd         a Version 7 format password file. Same as /etc/passwd of Linux
 /etc/passwd.XXXXXX  temporary copy of the password file
Kannan Mohan
  • 458
  • 2
  • 6
-2

This information should be explained under the Files section of man passwd

p_strand
  • 725