Linux 権限 sudo エラー
Q&A
解決したいこと
Linux(ubuntu)のsudoが使用できなくなったので、
使用できるように、したい
間違えて、sudo chmod -R 777 */
入力したら、sudoが使用できなくなった。
発生している問題・エラー
@FT:~$ sudo servvice apache2 stop
sudo: /etc/sudo.conf is world writable
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
sudo lsof -i :80
sudo: /etc/sudo.conf is world writable
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
自分で試したこと
/etc/sudo.conf ファイルの権限を元に戻すために以下のコマンドを実行。
@FT:~/home/test-laravel/mock-case$
sudo chmod 755 /etc/sudo.conf
sudo: /etc/sudo.conf is world writable
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
@FT:~/home/test-laravel/mock-case$
sudo chmod 644 /etc/sudo.conf
sudo: /etc/sudo.conf is world writable
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set