मैंने कई ब्लॉग पोस्ट देखे हैं जो कहते हैं, यह करना पर्याप्त है
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
।