在Linux系统中,可以使用以下命令来查看用户列表:
cat /etc/passwd
cut -d: -f1 /etc/passwd
getent passwd
awk -F: '{ print $1}' /etc/passwd
注意:以上命令需要在root权限下执行。