ablog

不器用で落着きのない技術者のメモ

サイレント・モードでインストールする際に完了するまでプロンプトが返ってこないようにする方法

サイレント・モードで Oracle Database をインストールすると、

$ ./runInstaller -silent ...
$

実行するとすぐにプロンプトが返ってくる。
完了するまでプロンプトが返ってこないようにしたい場合は、-waitforcompletion オプションをつけるとよい。

$ ./runInstaller -silent -waitforcompletion ...

参考

  • Oracle Universal Installer and OPatch User's Guide, 11g Release 2 (11.2) for Windows and UNIX (E12255-10)

-waitforcompletion The command console will wait for Oracle Universal Installer to exit if you specify this flag.

Understanding Oracle Universal Installer Commands