su命令详解

Posted machangwei-8

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了su命令详解相关的知识,希望对你有一定的参考价值。

 

基础命令学习目录首页

 

原文链接:https://www.cnblogs.com/ftl1012/p/su.html

su switch user,用于切换用户用

su常见命令参数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
用法:su [选项]... [-] [用户 [参数]... ]
Change the effective user id and group id to that of USER.
 
  -, -l, --login               make the shell a login shell
  -c, --command=COMMAND        pass a single COMMAND to the shell with -c
  --session-command=COMMAND    pass a single COMMAND to the shell with -c
                               and do not create a new session
  -f, --fast                   pass -f to the shell (for csh or tcsh)
  -m, --preserve-environment   do not reset environment variables
  -p                           same as -m
  -s, --shell=SHELL            run SHELL if /etc/shells allows it
      --help            显示此帮助信息并退出
      --version         显示版本信息并退出
 
单独的"-"选项隐含了-l。如果不指定用户,则假设其为root。

常用的命令展示

切换omd用户

1
su – omd    # root切换其他用户不用输密码,普通用户直接切换密码需要知道那个用户的登录密码

不切换用户而直接执行命令:

1
omd用户下:su - root -c "ifconfig"  需要输入密码

以上是关于su命令详解的主要内容,如果未能解决你的问题,请参考以下文章

Linux中的sudoer详解

sudo 详解

runuser 命令详解

linux su和sudo命令的区别

Linux命令详解-文件权限管理

linux su和sudo命令的区别