System requirement

  • Solaris 7/8
  • Perl 5.005_03 or later

  • Orca
  • SE Toolkit
    wget http://www.orcaware.com/orca/pub/orca-0.27.tar.gz
    wget http://www.orcaware.com/orca/pub/orcallator.se-1.37.txt
    wget http://www.orcaware.com/orca/pub/orcallator.cfg-1.36.txt
    wget http://www.wundermoosen.com/Downloads/Caribou/3.4/RICHPse34.tar.gz

gzip -dc RICHPse.tar.gz | tar xvf -
pkgadd -d . RICHPse


gzip -dc orca-0.27.tar.gz | tar xvf -
cd orca-0.27
./configure --with-html-dir=/export/home/nuzou/public_html/orca
make


su


  • /usr/local/bin/start_orcallator
  • #!/bin/sh
    
    prefix=/usr/local
    exec_prefix=${prefix}
    bindir=${exec_prefix}/bin 
    
    case "$1" in
    'start')
            if [ -x $bindir/start_orcallator ]; then
                    umask 022
                    $bindir/start_orcallator
            else
                    echo "$0: $bindir/start_orcallator does not exist or is not executable."
            fi
            ;; 
    
    'stop')
            if [ -x $bindir/stop_orcallator ]; then
                    $bindir/stop_orcallator
            fi
            ;;
    
    *)
            echo "Usage: $0 { start | stop }"
            exit 1
            ;;
    
    esac
    exit 0
  • cd /etc/rc0.d
    ln -s ../init.d/orcallarot K01orcallator
    cd /etc/rc1.d
    ln -s ../init.d/orcallarot K01orcallator
    cd /etc/rc3.d
    ln -s ../init.d/orcallarot S99orca
    

  • cd /usr/local
    ./bin/orca -once lib/orcallator.cfg
  • cd /usr/local
    ./bin/orca -v lib/orcallator.cfg

  • cd /usr/local
    ./bin/orca -d lib/orcallator.cfg
  • 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/local/bin/orca -once /usr/local/lib/orcallator.cfg > /dev/null 2>&1

FAQ





トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: Tue, 12 Oct 2021 00:59:45 JST (921d)