以下哪条命令将基于从January 1, 1970开始的天数设置账户的有效期?
A. passwd -e
B. chage -E
C. usermod -l
D. chguser
以下哪条命令可以锁定用户账户?
A. usermod -L
B. usermod -l
C. passwdlock
D. lockacct
以下哪条命令将以tab为分隔符打印文件/etc/passwd中所有用户的username和comment field?
A. cut -d: -f 1,6 /etc/passwd
B. sed 's/://'/etc/passwd
C. awk -F: '{print $1,$5}'OFS="\t"/etc/passwd
D. cat -o "\t"/etc/passwd
你使用useradd创建了一个新用户,由于某种原因该用户的主目录并未被创建,则最可能的原因是什么?
A. The HOME directive is set to no.
B. You did not employ super user privileges.
C. The CREATE_HOME directive is not set.
D. The INACTIVE directive is set to -1.
E. The EXPIRE date is set and it is before today.