1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Mac sudo実行時にパスワードを問わなくする

Posted at

目的

  • sudoコマンド実行時にパスワードを聞かれなくする方法をまとめる
  • ※管理者の記載があるファイルを編集します。作業手順間違えなければ大丈夫ですが、万が一操作を間違えると二度とsudoコマンドが使用できなくなる可能性があります。この記事を参考に作業されて何かしらの不都合が生じても当方は責任を負いかねます。

絶対にしてはいけないこと!!

  • 直接システムファイルの権限系を司っているファイルを修正すること!!!絶対禁止!!!
  • /etc/sudoersが権限司っているファイルだけど、$ sudo vi /etc/sudoers絶対実行しない!!!!!!!
  • 起動はするけど一生sudoコマンドが打てなくなる可能性がある!!!!!!!

必要なもの

  • 管理者権限
  • ユーザ名

実施詳細

  1. 下記コマンドを実行して管理者になる。

    $ sudo su
    
  2. 下記コマンドを実行してvisudoを用いて権限を司っているファイルを修正する。

    $ visudo
    
  3. 下記の内容を末尾に記載する。

    {ユーザ名} ALL=(ALL) ALL
    
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?