ฉันเคยเห็นบล็อกโพสต์มากมายที่บอกว่าเพียงพอที่จะทำ
aptitude install sudo
su root
adduser USERNAME sudo
แต่นั่นก็เป็นเพียงการปกป้องaptitude
ในคำอื่น ๆ :
aptitude install sendmail
จะขอรหัสผ่านคุณจะต้องsudo
เรียกใช้aptitude
apt-get install sendmail
จะไม่ขอรหัสผ่านไม่sudo
จำเป็นต้องใช้สิทธิ์หากคุณแก้ไขไฟล์ที่มีการป้องกันเช่นไฟล์ที่อยู่ใน
etc
นั้นจะไม่ถามรหัสผ่านไม่sudo
จำเป็นต้องใช้สิทธิ์คุณสามารถเรียกใช้และหยุดบริการเช่น
apache
นั้นจะไม่ขอรหัสผ่านไม่sudo
จำเป็นต้องใช้สิทธิ์
จะแก้ไขได้อย่างไร? นี่คือไฟล์ sudoers ของฉัน:
This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:$
# Host alias specification
# User alias specification
# Cmnd alias specification
นี่คือผลลัพธ์ของsudo -l
:
Matching Defaults entries for root on this host:
env_reset, mail_badpass,
secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin
User root may run the following commands on this host:
(ALL : ALL) ALL
(ALL : ALL) ALL
su root
คุณเข้าสู่ระบบในฐานะroot
ผู้ใช้ดังนั้นคุณจึงสามารถเข้าถึงทุกสิ่งได้อย่างเต็มที่ ที่จะได้รับกลับมาจะเป็นการใช้งานปกติที่มีการใช้สำหรับการดำเนินงานได้รับการยกเว้นออกจากระบบของเปลือกทำงานตามsudo
root