当前位置: 技术问答>linux和unix
linux新建超级用户
来源: 互联网 发布时间:2016-06-17
本文导语: 1、我想在linux下新建一个像root一样的超级用户可以吗? 2、我是否可以新建一个用户,而不新建它的主目录呢? | root用户只有一个,root组用户可以有多个;属于root组的用户也有root用户的权...
1、我想在linux下新建一个像root一样的超级用户可以吗?
2、我是否可以新建一个用户,而不新建它的主目录呢?
2、我是否可以新建一个用户,而不新建它的主目录呢?
|
root用户只有一个,root组用户可以有多个;属于root组的用户也有root用户的权限,你可以新建一个用户并且将它加入到 root组中。
以单用户模式(init 1)进入到系统,进入了单用户进程,然后使用命令:useradd -g root user1 新建一个用户user1 并且将它加入到root组中.
以单用户模式(init 1)进入到系统,进入了单用户进程,然后使用命令:useradd -g root user1 新建一个用户user1 并且将它加入到root组中.
|
1、可以的,创建一个用户,编辑 /etc/passwd,将其 uid 及 gid 改为 0
具体可以参考 /etc/passwd 文件中 root 那一行
具体可以参考 /etc/passwd 文件中 root 那一行
|
还有一种方式,不过的给我分啊!
1 直接visudo
2 将你的一个用户修改为如下的格式
[root@linux ~]# visudo
# sudoers file.
# This file MUST be edited with the 'visudo' command as root.
# See the sudoers man page for the details on how to write a sudoers file.
#
# Host alias specification
# User alias specification
# Cmnd alias specification
# Defaults specification
# Runas alias specification
# User privilege specification
root ALL=(ALL) ALL
yay ALL=(ALL) ALL
1 直接visudo
2 将你的一个用户修改为如下的格式
[root@linux ~]# visudo
# sudoers file.
# This file MUST be edited with the 'visudo' command as root.
# See the sudoers man page for the details on how to write a sudoers file.
#
# Host alias specification
# User alias specification
# Cmnd alias specification
# Defaults specification
# Runas alias specification
# User privilege specification
root ALL=(ALL) ALL
yay ALL=(ALL) ALL