linux用户组管理命令
This section contains Aptitude Questions and Answers on Linux User and Group Commands.
本节包含有关Linux用户和组命令的 Aptitude问答。
createuser
adduser
useradd
user
Correct answer: 3
useradd
The useradd command is used to create a new user in the Linux operating system.
创建用户
添加用户
用户添加
用户
正确答案:3
用户添加
useradd命令用于在Linux操作系统中创建新用户。
Creates a new home directory for the user
The ownership and permissions are assigned to the home directory
Both of the above
None of the above
Correct answer: 3
Both of the above
When we create a new user then a new home directory gets created with required ownership and permissions.
为用户创建一个新的主目录
所有权和权限分配给主目录
以上两者
以上都不是
正确答案:3
以上两者
当我们创建新用户时,将创建具有所需所有权和权限的新主目录。
/etc/group
/etc/shadow
/etc/gshadow
/etc/passwd
Options:
A and B
C and D
A, B, and C
A, B, C, and D
Correct answer: 4
A, B, C, and D
All given files get edited when we create a new in Linux operating system.
/ etc / group
/ etc / shadow
/ etc / gshadow
/ etc / passwd
选项:
A和B
C和D
A,B和C
A,B,C和D
正确答案:4
A,B,C和D
当我们在Linux操作系统中创建新文件时,所有给定的文件都会被编辑。
0
1
2
3
Correct answer: 1
0
The 0 UID is reserved for root users in Linux operating system.
0
1个
2
3
正确答案:1
0
0 UID为Linux操作系统中的root用户保留。
1-50
51-100
100-999
1000-9999
Correct answer: 3
100-999
The UIDs range 100-999 and are reserved for groups and system accounts.
1-50
51-100
100-999
1000-9999
正确答案:3
100-999
UID的范围为100-999,并且保留给组和系统帐户使用。
GID is a group identification number that is used it identify a group in Linux OS.
GID is provided by the Linux operating system to the newly created group.
GID is provided by the user who created the group in the Linux operating system.
GIDs are stored in /etc/group file.
Options:
A and B
A, B, and D
A, B, and C
B, C, and D
Correct answer: 2
A, B, and D
Statements A, B, and D are correct about GID in the Linux operating system.
GID是一个组标识号,用于在Linux OS中标识一个组。
GID由Linux操作系统提供给新创建的组。
GID由在Linux操作系统中创建组的用户提供。
GID存储在/ etc / group文件中。
选项:
A和B
A,B和D
A,B和C
B,C和D
正确答案:2
A,B和D
关于Linux操作系统中GID的语句A,B和D是正确的。
useradd -m /MyHome user1
useradd -m -d /MyHome user1
useradd -m -h /MyHome user1
useraddhome /MyHome user1
Correct answer: 2
useradd -m -d /MyHome user1
The 2nd option is an exact command to create a user user1 with home directory MyHome.
useradd -m / MyHome user1
useradd -m -d / MyHome user1
useradd -m -h / MyHome user1
useraddhome / MyHome user1
正确答案:2
useradd -m -d / MyHome user1
第二个选项是使用主目录MyHome创建用户user1的精确命令。
password
newpass
passwd
pwd
Correct answer: 3
passwd
The passwd command is used to assign a password to the created user.
密码
新通
密码
密码
正确答案:3
密码
passwd命令用于为创建的用户分配密码。
Yes
No
Correct answer: 1
Yes
Yes, we can create a new user with an expiry date; it means the user gets deleted automatically after a particular date.
是
没有
正确答案:1
是
是的,我们可以创建一个具有到期日期的新用户; 这意味着用户将在特定日期后自动删除。
who
whoami
who am i
w
Options:
A and B
C and D
A, B, and C
A, B, C, and D
Correct answer: 4
A, B, C, and D
All given commands are used to know about the current user.
WHO
我是谁
我是谁
w
选项:
A和B
C和D
A,B和C
A,B,C和D
正确答案:4
A,B,C和D
所有给定的命令用于了解当前用户。
This command describes the user id.
This command describes the group id.
This command describes the list of groups belongs to the user.
All the above
Options:
A and B
A and C
B and C
D
Correct answer: 4
D
All statements are correct about the id command.
此命令描述用户标识。
此命令描述组ID。
此命令描述属于用户的组列表。
以上全部
选项:
A和B
A和C
B和C
d
正确答案:4
d
所有关于id命令的语句都是正确的。
Using sudo command
Using su command
Using super command
None of the above
Correct answer: 2
Using su command
Using su command is used to change a normal user to root user.
使用sudo命令
使用su命令
使用超级命令
以上都不是
正确答案:2
使用su命令
使用su命令可将普通用户更改为root用户。
Yes
No
Correct answer: 1
Yes
Yes we can create a new user without becoming root user using the sudo command.
是
没有
正确答案:1
是
是的,我们可以使用sudo命令创建新用户而无需成为root用户。
/etc/passwords
/etc/shadow
/etc/pwd
/etc/pwds
Correct answer: 2
/etc/shadow
The /etc/shadow file contains encrypted user's passwords.
/ etc / passwords
/ etc / shadow
/ etc / pwd
/ etc / pwds
正确答案:2
/ etc / shadow
/ etc / shadow文件包含加密的用户密码。
Yes
No
Correct answer: 2
No
No, a non-root user cannot read /etc/shadow file.
是
没有
正确答案:2
没有
否,非root用户无法读取/ etc / shadow文件。
encrypt passwd
secure passwd
openssl passwd
All the above
Correct answer: 3
openssl passwd
The openssl password command is used to create an encrypted password.
加密密码
安全密码
openssl密码
以上全部
正确答案:3
openssl密码
openssl password命令用于创建加密密码。
In this file, we can define the maximum number of days a password may be used.
In this file, we can define the minimum number of days allowed between password changes.
In this file, we can also define the minimum and maximum length of the password.
There is no "/etc/login.defs" file exists in the Linux operating system.
Options:
A and B
A and C
A, B and C
D
Correct answer: 3
A, B and C
Statements A, B, and C are correct about /etc/login.defs file.
在此文件中,我们可以定义密码可以使用的最大天数。
在此文件中,我们可以定义两次密码更改之间允许的最少天数。
在此文件中,我们还可以定义密码的最小和最大长度。
Linux操作系统中不存在“ /etc/login.defs”文件。
选项:
A和B
A和C
A,B和C
d
正确答案:3
A,B和C
关于/etc/login.defs文件,语句A,B和C是正确的。
change
knowpass
passinf
info
Correct answer: 1
change
The change command is used to know password information.
更改
知识通
密码
信息
正确答案:1
更改
change命令用于了解密码信息。
usermod
userenable
userdisable
change
Correct answer: 1
usermod
The usermod command is used to enable and disable password for a particular user.
用户模组
用户可使用的
用户禁用
更改
正确答案:1
用户模组
usermod命令用于为特定用户启用和禁用密码。
usermod -D <user name>
usermod -d <user name>
usermod -l <user name>
usermod -L <user name>
Correct answer: 4
usermod -L <user name>
The 4th option is correct command to disable password for a particular user.
usermod -D <用户名>
usermod -d <用户名>
usermod -l <用户名>
usermod -L <用户名>
正确答案:4
usermod -L <用户名>
第四个选项是正确的命令,用于禁用特定用户的密码。
creategroup
addgroup
groupadd
groupcreate
Correct answer: 3
groupadd
The groupadd command is used to create a new group.
创建组
添加组
组添加
组创建
正确答案:3
组添加
groupadd命令用于创建新组。
grouplist
groups
groupinfo
groupinformation
Correct answer: 2
groups
The groups command is used to know about groups that below to current user.
群组清单
团体
组信息
组信息
正确答案:2
团体
groups命令用于了解当前用户下面的组。
rename
rengroup
groupmode
groupmod
Correct answer: 4
groupmod
The groupmod command is used to rename the existing group.
改名
人组
组模式
组mod
正确答案:4
组mod
groupmod命令用于重命名现有组。
removegroup
deletegroup
groupdel
grouprmv
Correct answer: 3
groupdel
The groupdel command is used to remove an existing group.
删除组
删除组
groupdel
组
正确答案:3
groupdel
groupdel命令用于删除现有组。
groupuser
gpasswd
grouppasswd
None of the above
Correct answer: 2
gpasswd
The gpasswd command is used to pass control of group membership to another user.
组用户
gpasswd
组密码
以上都不是
正确答案:2
gpasswd
gpasswd命令用于将组成员身份控制权传递给另一个用户。
翻译自: https://www.includehelp.com/linux/user-and-group-commands-commands-aptitude-questions-and-answers.aspx
linux用户组管理命令