🖥

Mac の sudo コマンドでパスワードを聞かれるまでの時間を伸ばす

2023/08/26に公開
$ sudo visudo

Macにログインする時のパスワードを聞かれるので、入力する。

エディタが起動するので、以下の行を追加する。

+ Defaults timestamp_timeout = 1440 # 有効時間を分で指定

## sudoers file.
##
## This file MUST be edited with the 'visudo' command as root.

保存終了すると即時反映される様子。

操作がよく分からない場合

vimという特別なエディタが起動するので、次のとおりに操作する。

  • a キーを押す (入力モードに入る)
  • 何もない行に移動する。
  • Command + VDefaults timestamp_timeout = 1440 をコピペする。 (「右クリック」→「貼り付け」でも良い)
  • Esc キーを押す (入力モードを終える)
  • :x と入力する (保存終了)

環境

  • Mac OS X Sierra

参考

The timestamp_timeout:

The timestamp_timeout defines the number of minutes that can elapse before sudo will ask for a password again. To modify the timestamp_timeout, edit the /etc/sudoers file.
I recommand you to use visudo, when editing the /etc/sudoers file.

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2018-05-20

Discussion