首页 > 其他分享 >su和sudo不需要输入密码

su和sudo不需要输入密码

时间:2024-05-15 08:57:21浏览次数:19  
标签:hcss sudo su 密码 ecs joe c16f root

Linux 中使普通用户使用Sudo不需要输入密码


[root@hcss-ecs-c16f ~]# useradd lzj
[root@hcss-ecs-c16f ~]# echo 1234|passwd --stdin lzj
更改用户 lzj 的密码 。
passwd:所有的身份验证令牌已经成功更新。
[root@hcss-ecs-c16f ~]# vim /etc/sudoers
lzj   ALL=(ALL)  NOPASSWD:ALL

[root@hcss-ecs-c16f ~]# su lzj
[lzj@hcss-ecs-c16f root]$ su root
密码:
[lzj@hcss-ecs-c16f root]$ sudo su root 
[root@hcss-ecs-c16f ~]# 


userdel -f lzj 


vi /etc/sudoers.d/lzj 

lzj   ALL=(ALL)  NOPASSWD:ALL

su不用输入密码
groupadd wheel
usermod -G wheel joe
head -3 /etc/pam.d/su
#%PAM-1.0
auth       sufficient pam_wheel.so trust use_uid
auth        sufficient    pam_rootok.so
[root@hcss-ecs-c16f ~]# 

 
vim /etc/pam.d/su
[root@hcss-ecs-c16f ~]# su joe
[joe@hcss-ecs-c16f root]$ su joe
[joe@hcss-ecs-c16f root]$ su joe
[joe@hcss-ecs-c16f root]$ su joe
[joe@hcss-ecs-c16f root]$ exit
exit
[joe@hcss-ecs-c16f root]$ exit
exit
[joe@hcss-ecs-c16f root]$ exit
exit
[joe@hcss-ecs-c16f root]$ exit
exit


userdel -rf lzj
userdel -rf joe 
ls /home 

 

   

标签:hcss,sudo,su,密码,ecs,joe,c16f,root
From: https://www.cnblogs.com/lzjloveit/p/18192667

相关文章

  • 64 - Minimum Path Sum 最小路径和
    64-MinimumPathSum最小路径和问题描述Givenamxngridfilledwithnon-negativenumbers,findapathfromtoplefttobottomright,whichminimizesthesumofallnumbersalongitspath.Note:Youcanonlymoveeitherdownorrightatanypointinti......
  • Linux错误:-bash: Su: command not found
     问题:使用su命令出错:-bash:Su:commandnotfound 解决:先查看/etc/sudoers.d文件是否存在find/etc/sudoers.d说明系统已经安装了sudo,只不过没有配置环境。解决一:使用vi或vim以下命令打开/etc/sudoers文件。vim/etc/sudoers esc-->:......
  • CodeGeeX 智能编程助手 6 项功能升级,在Visual Studio插件市场霸榜2周!
    CodeGeeX是支持适配VisualStudio2019的唯一一款国产智能辅助编程工具,已经在VisualStudio趋势上霸榜2周!CodeGeeXv1.0.4版本上线VisualStudio插件市场,带来了多项新功能和性能优化,提升编程体验。新功能亮点速览:一、侧边栏工具箱功能v1.0.4版本中,CodeGeeX新增了侧边栏工具箱......
  • AtCoder Beginner Contest 351 E - Jump Distance Sum
    题目链接Hint1:只能斜着走,容易想到黑白棋盘,\((x+y)\%2==0\)位于一个团,\((x+y)\%2==1\)位于另一个团,分别求和。Hint2:\(dist=max(|x1-x2|,|y1-y2|)\),这是切比雪夫距离,将坐标系倾斜\(45^{\circ}\),改为曼哈顿距离\(dist=|x1-x2|+|y1-y2|\),即\(X=x+y,Y=x-y\),这样就可以将横纵坐标......
  • 时钟server 时钟质量等级--PRC、PRS、SSU
    PRC(PrimaryReferenceClock,基准参考时钟):G.811时钟信号SSU-A(primarylevelSSU,转接局时钟):G.812转接节点时钟信号SSU-B(secondlevelSSU,本地局时钟):G.812本地节点时钟信号SEC(SDHEquipmentClock,设备时钟):SDH设备时钟源信号DNU(DoNotUseforsynchronization,不应用作......
  • 密码方案的应用
    密码方案可以应用于多种场景,包括但不限于以下几个方面:1.个人账户保护:密码方案可以用于保护个人账户的安全,例如电子邮箱、社交媒体账户、在线银行账户等。用户可以设置强密码,并定期更改密码,以防止黑客入侵。2.企业网络安全:密码方案可以用于保护企业内部网络的安全,确保只有授权......
  • The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. T
    numba无法支持nopython错误解决错误:The'nopython'keywordargumentwasnotsuppliedtothe'numba.jit'decorator.TheimplicitdefaultvalueforthisargumentiscurrentlyFalse,butitwillbechangedtoTrueinNumba0.59.0.Seehttps://numb......
  • 凯撒密码1
    一、常规凯撒1.原理:它是一种替换加密的技术,明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。例如,当偏移量是3的时候,所有的字母A将被替换成D,B变成E,以此类推。 2.代码实现凯撒#include<stdio.h>#include<stdlib.h>intmain(){charsmall......
  • LeetCode 1915. Number of Wonderful Substrings
    原题链接在这里:https://leetcode.com/problems/number-of-wonderful-substrings/description/题目:A wonderful stringisastringwhere atmostone letterappearsan odd numberoftimes.Forexample, "ccjjc" and "abab" arewonderful,but "ab&......
  • 七牛云OSSUtil
    主要依赖<!--https://mvnrepository.com/artifact/com.qiniu/qiniu-java-sdk--><dependency> <groupId>com.qiniu</groupId> <artifactId>qiniu-java-sdk</artifactId> <version>7.14.0</version></dependency>&......