web-dev-qa-db-ja.com

「[Enterキーを押して続行]」をスキップするようにrkhunterを取得する方法

次のコマンドを使用して、rkhunterでマシンをスキャンするたびに:

Sudo rkhunter --checkall

特定のタイプのチェックが終了すると、次のように尋ねられます。

[Press <ENTER> to continue]

そして、これはかなり煩わしくなり、私がそれを実行したことを忘れ続けているので、数時間後、ずっとそのプロンプトにずっと座っていたことがわかりました。スキャンをしている間ずっとずっとじっと見つめていなければならないので、 ENTER 続行できるようにします。

だから本当にそれが私の質問です、私にそれを押すように促さないようにする方法がありますか ENTER しかし、スキャンを続行して、最初のコマンドを実行してスキャンを実行し、後で戻って結果を確認するだけですみますか?


OS情報:

Description:    Ubuntu 14.10
Release:    14.10

パッケージ情報:

rkhunter:
  Installed: 1.4.0-3
  Candidate: 1.4.0-3
  Version table:
 *** 1.4.0-3 0
        500 http://gb.archive.ubuntu.com/ubuntu/ utopic/universe AMD64 Packages
        100 /var/lib/dpkg/status
1
user364819

から man rkhunter

--sk, --skip-keypress
      When the --check command option is used, after certain  sections
      of  tests,  the user will be prompted to press the return key in
      order to  continue.  This  option  disables  that  feature,  and
      rkhunter will run until all the tests have completed.
      If  this  option has not been given, and the user is prompted to
      press the return key, a  single  's'  character,  in  upper-  or
      lowercase,  may  be  given  followed by the return key. rkhunter
      will then continue the tests without prompting  the  user  again
      (as if this option had been given).
6
muru

これは私のために働く

echo | Sudo rkhunter --checkall
1
A.B.