Widziałem wiele postów na blogu, które mówią, że wystarczy
aptitude install sudo
su root
adduser USERNAME sudo
Ale to tylko chroni aptitude
, innymi słowy:
aptitude install sendmail
poprosi o hasło, musisz byćsudo
uruchomionyaptitude
apt-get install sendmail
nie poprosi o hasło, niesudo
potrzebujesz żadnych uprawnieńJeśli edytujesz pliki chronione, tak jak pliki w
etc
nim nie pytają o hasło, niesudo
potrzebujesz żadnych uprawnieńMożesz uruchamiać i zatrzymywać usługi, takie jak:
apache
nie prosi o hasło, niesudo
potrzebujesz żadnych uprawnień
Jak to naprawić? To jest mój plik 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
To jest wynik 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
jesteś zalogowany jakoroot
użytkownik, więc masz pełny dostęp do wszystkiego. Aby powrócić do regularnego używania, który musi używaćsudo
do operacji uprzywilejowanych, wyloguj się z powłoki działającej jakoroot
.