Day 1

On unix/linux machines, the file /etc/passwd contains a list of all the users on a system. Each line looks like:
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:
daemon:x:2:2:daemon:/sbin:
nobody:x:99:99:Nobody:/:
Each line contains a user name, password (all x here), user id, group id, Name, home directory, and shell. The fields are separated by colons.

Day 1 Answers