小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Linux用戶配置sudo權(quán)限(visudo)

 Kinetis 2014-08-29

sudo的工作過程如下:

1,當(dāng)用戶執(zhí)行sudo時(shí),系統(tǒng)會(huì)主動(dòng)尋找/etc/sudoers文件,判斷該用戶是否有執(zhí)行sudo的權(quán)限

2,確認(rèn)用戶具有可執(zhí)行sudo的權(quán)限后,讓用戶輸入用戶自己的密碼確認(rèn)

3,若密碼輸入成功,則開始執(zhí)行sudo后續(xù)的命令

4,root執(zhí)行sudo時(shí)不需要輸入密碼(eudoers文件中有配置root ALL=(ALL) ALL這樣一條規(guī)則)

5,若欲切換的身份與執(zhí)行者的身份相同,也不需要輸入密碼

 

visudo使用vi打開/etc/sudoers文件,但是在保存退出時(shí),visudo會(huì)檢查內(nèi)部語法,避免用戶輸入錯(cuò)誤信息

visudo需要root權(quán)限

  1. [hadoop@localhost ~]$ visudo  
  2. visudo:/etc/sudoers:權(quán)限不夠  
  3. visudo:/etc/sudoers:權(quán)限不夠  

使用visudo命令打開sudo配置文件

  1. ## Sudoers allows particular users to run various commands as  
  2. ## the root user, without needing the root password.  
  3. ## 該文件允許特定用戶像root用戶一樣使用各種各樣的命令,而不需要root用戶的密碼  
  4. ##  
  5. ## Examples are provided at the bottom of the file for collections  
  6. ## of related commands, which can then be delegated out to particular  
  7. ## users or groups.  
  8. ## 在文件的底部提供了很多相關(guān)命令的示例以供選擇,這些示例都可以被特定用戶或  
  9. ## 用戶組所使用   
  10. ##  
  11. ## This file must be edited with the 'visudo' command.  
  12. ## 該文件必須使用"visudo"命令編輯  
  13.   
  14. ## Host Aliases  
  15. ## Groups of machines. You may prefer to use hostnames (perhaps using   
  16. ## wildcards for entire domains) or IP addresses instead.  
  17. ## 對(duì)于一組服務(wù)器,你可能會(huì)更喜歡使用主機(jī)名(可能是全域名的通配符)  
  18. ## 、或IP地址,這時(shí)可以配置主機(jī)別名  
  19. # Host_Alias     FILESERVERS = fs1, fs2  
  20. # Host_Alias     MAILSERVERS = smtp, smtp2  
  21.   
  22. ## User Aliases  
  23. ## These aren't often necessary, as you can use regular groups  
  24. ## (ie, from files, LDAP, NIS, etc) in this file - just use %groupname   
  25. ## rather than USERALIAS  
  26. ## 這并不很常用,因?yàn)槟憧梢酝ㄟ^使用組來代替一組用戶的別名  
  27. # User_Alias ADMINS = jsmith, mikem  
  28.   
  29. ## Command Aliases  
  30. ## These are groups of related commands...  
  31. ## 指定一系列相互關(guān)聯(lián)的命令(當(dāng)然可以是一個(gè))的別名,通過賦予該別名sudo權(quán)限,  
  32. ## 可以通過sudo調(diào)用所有別名包含的命令,下面是一些示例  
  33.   
  34. ## Networking 網(wǎng)絡(luò)操作相關(guān)命令別名  
  35. # Cmnd_Alias NETWORKING = /sbin/route, /sbin/ifconfig, /bin/ping, /sbin/dhclient  
  36. , /usr/bin/net, /sbin/iptables, /usr/bin/rfcomm, /usr/bin/wvdial, /sbin/iwconfig  
  37. , /sbin/mii-tool  
  38.   
  39. ## Installation and management of software 軟件安裝管理相關(guān)命令別名  
  40. # Cmnd_Alias SOFTWARE = /bin/rpm, /usr/bin/up2date, /usr/bin/yum  
  41.   
  42. ## Services 服務(wù)相關(guān)命令別名  
  43. # Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig  
  44.   
  45. ## Updating the locate database 本地?cái)?shù)據(jù)庫(kù)升級(jí)命令別名  
  46. # Cmnd_Alias LOCATE = /usr/bin/updatedb  
  47.   
  48. ## Storage 磁盤操作相關(guān)命令別名  
  49. # Cmnd_Alias STORAGE = /sbin/fdisk, /sbin/sfdisk, /sbin/parted, /sbin/partprobe  
  50. , /bin/mount, /bin/umount  
  51.   
  52. ## Delegating permissions 代理權(quán)限相關(guān)命令別名  
  53. # Cmnd_Alias DELEGATING = /usr/sbin/visudo, /bin/chown, /bin/chmod, /bin/chgrp   
  54.   
  55. ## Processes 進(jìn)程相關(guān)命令別名  
  56. # Cmnd_Alias PROCESSES = /bin/nice, /bin/kill, /usr/bin/kill, /usr/bin/killall  
  57.   
  58. ## Drivers 驅(qū)動(dòng)命令別名  
  59. # Cmnd_Alias DRIVERS = /sbin/modprobe  
  60.   
  61. # Defaults specification  
  62.   
  63. #  
  64. # Disable "ssh hostname sudo <cmd>", because it will show the password in clear.   
  65. #         You have to run "ssh -t hostname sudo <cmd>".  
  66. # 一些環(huán)境變量的相關(guān)配置,具體情況可見man soduers  
  67. Defaults    requiretty  
  68.   
  69. Defaults    env_reset  
  70. Defaults    env_keep =  "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS"  
  71. Defaults    env_keep += "MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE"  
  72. Defaults    env_keep += "LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES"  
  73. Defaults    env_keep += "LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE"  
  74. Defaults    env_keep += "LC_TIME LC_ALL LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY"  
  75.   
  76. Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin  
  77.   
  78. ## Next comes the main part: which users can run what software on   
  79. ## which machines (the sudoers file can be shared between multiple  
  80. ## systems).  
  81. ## 下面是規(guī)則配置:什么用戶在哪臺(tái)服務(wù)器上可以執(zhí)行哪些命令(sudoers文件可以在多個(gè)系統(tǒng)上共享)  
  82. ## Syntax(語法):  
  83. ##  
  84. ##  user    MACHINE=COMMANDS 用戶 登錄的主機(jī)=(可以變換的身份) 可以執(zhí)行的命令  
  85. ##  
  86. ## The COMMANDS section may have other options added to it.  
  87. ## 命令部分可以附帶一些其它的選項(xiàng)  
  88. ##  
  89. ## Allow root to run any commands anywhere   
  90. ## 允許root用戶執(zhí)行任意路徑下的任意命令  
  91. root    ALL=(ALL)   ALL  
  92.   
  93. ## Allows members of the 'sys' group to run networking, software,   
  94. ## service management apps and more.  
  95. ## 允許sys中戶組中的用戶使用NETWORKING等所有別名中配置的命令  
  96. # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE  
  97. , DRIVERS  
  98.   
  99. ## Allows people in group wheel to run all commands  
  100. ## 允許wheel用戶組中的用戶執(zhí)行所有命令  
  101. %wheel  ALL=(ALL)   ALL  
  102.   
  103. ## Same thing without a password  
  104. ## 允許wheel用戶組中的用戶在不輸入該用戶的密碼的情況下使用所有命令  
  105. # %wheel    ALL=(ALL)   NOPASSWD: ALL  
  106.   
  107. ## Allows members of the users group to mount and unmount the   
  108. ## cdrom as root  
  109. ## 允許users用戶組中的用戶像root用戶一樣使用mount、unmount、chrom命令  
  110. # %users  ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom  
  111.   
  112. ## Allows members of the users group to shutdown this system  
  113. ## 允許users用戶組中的用戶關(guān)閉localhost這臺(tái)服務(wù)器  
  114. # %users  localhost=/sbin/shutdown -h now  
  115.   
  116. ## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)  
  117. ## 讀取放置在/etc/sudoers.d/文件夾中的文件(此處的#不意味著這是一個(gè)聲明)  
  118. #includedir /etc/sudoers.d  

特別要注意的是別名一定要使用大寫

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多