Linux下用户/组的管理 博客分类: Linux LinuxBashCC++C#
程序员文章站
2024-03-16 10:40:58
...
对于Linux下用户/组的管理机制,以前有个大概的认识,没有进行相关方面的实际操作。今天怀疑一个执行命令的问题是因为sudo产生的,就对这方面的知识进行了学习。
Linux 用户(user)和用户组(group)管理概述
http://fedora.linuxsir.org/main/?q=node/91
useradd和groupadd的简单实例
给test1用户sudo权限
Linux 用户(user)和用户组(group)管理概述
http://fedora.linuxsir.org/main/?q=node/91
useradd和groupadd的简单实例
# groupadd -g 102 test # useradd -u 1003 -g 102 -d /home/test1 -s /bin/bash \ -c "Test 1" -m -k /etc/skel test1
给test1用户sudo权限
# chmod u+w /etc/sudoers # vi /etc/sudoers ## Next comes the main part: which users can run what software on ## which machines (the sudoers file can be shared between multiple ## systems). ## Syntax: ## ## user MACHINE=COMMANDS ## ## The COMMANDS section may have other options added to it. ## ## Allow root to run any commands anywhere root ALL=(ALL) ALL test1 ALL=(ALL) ALL # 执行sudo命令时需要输入密码 # test1 ALL=NOPASSWD: ALL # 不需要输入密码 ## Allows members of the 'sys' group to run networking, software, ## service management apps and more. # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS ## Allows people in group wheel to run all commands # %wheel ALL=(ALL) ALL ## Same thing without a password # %wheel ALL=(ALL) NOPASSWD: ALL
上一篇: Linux的基本命令
下一篇: Linux的基本命令
推荐阅读
-
Linux下用户/组的管理 博客分类: Linux LinuxBashCC++C#
-
Linux下用户/组的管理 博客分类: Linux LinuxBashCC++C#
-
[转] Linux下RPM软件包的安装及卸载 博客分类: linux linuxrpm
-
linux下日志占用空间过大的解决方法 博客分类: Linux linux
-
Linux 下git的安装 博客分类: 版本控制工具 LinuxGit安装
-
Linux下Mysql 5.7的安装及远程连接配置 博客分类: Linux linuxmysql
-
玩Linux五年积累的技巧(3) -- 系统(下) 博客分类: Linux linuxbash脚本技巧
-
玩Linux五年积累的技巧(3) -- 系统(下) 博客分类: Linux linuxbash脚本技巧
-
Linux 下zip包的压缩与解压 博客分类: Linux linuxzipunziptargz
-
在linux的用户空间读取侦听input的event事件(包括类型,键值,状态) 博客分类: linux_applinux_kernel