以下哪条命令将以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.
以下哪条命令将不允许用户通过password登录,但不阻止用户以其他形式登录(例如ssh免密登录)?
A. usermod -L
B. userdel -r
C. useradd -h
D. userlock
useradd的哪个选项将会为用户设置附加组?
A. -g
B. -x
C. -l
D. -G
useradd的哪个选项可以设置密码过期和账户失效之间的天数?
A. -n
B. -f
C. -e
D. -g