[BACK]Return to OpenXM-FAQ.oxweave CVS log [TXT][DIR] Up to [local] / OpenXM / doc

Annotation of OpenXM/doc/OpenXM-FAQ.oxweave, Revision 1.6

1.6     ! takayama    1: %  $OpenXM: OpenXM/doc/OpenXM-FAQ.oxweave,v 1.5 2000/12/05 23:14:40 takayama Exp $
        !             2:
        !             3: //&C Dec 17, 2000
        !             4: //&ja Q. Debian potato で OpenXM server 用の xterm がひらかず, OpenXM server が起動できません.
        !             5: //&en Q. I cannot start xterm for some OpenXM servers on Debian potato.
        !             6:
        !             7: /*&ja
        !             8: A (by Ohara).
        !             9: (原因) Debian 2.2 で xterm -e a.out でプロセスを起動した場合、
        !            10: a.out には環境変数 LD_LIBRARY_PATH が伝達されません!!
        !            11:
        !            12: (結果) oxc は $OpenXM_HOME/lib/libgmp.so とリンクしているので、リンカ
        !            13: がダイナミックリンクを解決できずに、起動すらできなかったわけです。
        !            14:
        !            15: (解決) /lib に libgmp.so にシンボリックリンクをつくる。
        !            16: 例:  root になって
        !            17:      cd /lib
        !            18:      ln -s $OpenXM_HOME/lib/libgmp.so .
        !            19:      ln -s $OpenXM_HOME/lib/libpari.so .
        !            20:    などを実行.
        !            21:
        !            22: */
        !            23: /*&en
        !            24: A (by Ohara).
        !            25: Reason: If you start a.out by "xterm -e a.out" on Debian 2.2,
        !            26: the value of the environmental variable is not given to a.out.
        !            27:
        !            28: Troubles:  "oxc" is dynamically linked with$OpenXM_HOME/lib/libgmp.so,
        !            29: so oxc could not be started with "xterm -e oxc".
        !            30:
        !            31: A solution: Generate a symbolic link from libgmp.so  to /lib
        !            32:  For example, become the super user and input the follows:
        !            33:      cd /lib
        !            34:      ln -s $OpenXM_HOME/lib/libgmp.so .
        !            35:      ln -s $OpenXM_HOME/lib/libpari.so .
        !            36:
        !            37: */
1.4       takayama   38:
                     39: //&C Nov 30, 2000
                     40: //&ja Q. Redhat Linux を利用しています. libgd がないので RPM パッケージのインストールが失敗します.
                     41: //&en Q. I'm using Redhat Linux. Installation of the RPM package of openxm fails because libgd does not exists.
                     42:
                     43: /*&ja
                     44:  (A)  http://www.redhat.com/downloads より,  libgd をサーチします.
                     45:  (B)  libgd 1.3 を download して, rpm でインストールします.
1.5       takayama   46:
                     47:   www.redhat.com では, 最新版の Redhat 用の libgd しかみつからないかも
                     48:   しれません.  その場合は http://rpmfind.net で探して下さい.
                     49:   たとえば Redhat 6.2 用の libgd は
                     50:   http://rpmfind.net/linux/RPM/redhat/6.2/i386////gd-1.3-6.i386.html
                     51:   にあります.
                     52:   ネットスケープの場合ならここにアクセスし,
                     53:            gd-1.3-6 RPM for i386
                     54:   を shift+click して gd-1.3-6.i386.rpm をダウンロードします.
1.4       takayama   55: */
                     56: /*&en
                     57:  (A) Search libgd at http://www.redhat.com/downloads
                     58:  (B) Download libgd 1.3 and install it by rpm.
1.5       takayama   59:
                     60:   You might find only the latest version of libgd at www.redhat.com.
                     61:   If you need to find older versions, try to find them at http://rpmfind.net
                     62:   For example, libgd for Redhat 6.2 is at
                     63:   http://rpmfind.net/linux/RPM/redhat/6.2/i386////gd-1.3-6.i386.html
                     64:   If you are using netscape, access to this site and
                     65:   shift+click
                     66:            gd-1.3-6 RPM for i386
                     67:   Then, you can download gd-1.3-6.i386.rpm
1.4       takayama   68: */
1.2       takayama   69:
                     70: //&C Sep 28, 2000
                     71: //&ja Q. asir より ssh を用いて remote の ox サーバを起動できません.
                     72: //&en Q. I cannot start remote ox servers with ssh.
                     73:
1.3       takayama   74: /*&ja
                     75: A.
                     76:   (A) ssh がただしく動作しているかまずしらべます.
                     77:         ssh -f -X -A remote-machine-name  xterm
                     78:       で xterm が起動しますか?
                     79:       ssh の version によっては -X -A などの option をうけつけません.
                     80:       シェルスクリプト /usr/local/bin/asir の ASIR_RSH を変更して下さい.
                     81:       command not found の時は, .cshrc,  .bashrc に xterm を起動できるように
                     82:       パスを加えます.
                     83:       例:
                     84:         set path=(/usr/X11R6/bin $path)      (.cshrc)
                     85:         export PATH=/usr/X11R6/bin:$PATH     (.bashrc)
                     86:
                     87:    (B) 1.1.3 では, remote machine の login shell が bash, sh の時は
                     88:        remote server を起動できません. この bug は, 次の version で変更されます.
                     89:
                     90:    (C) asir より,
                     91:          ox_launch(remote-host-name,"/usr/local/OpenXM/lib/asir","ox_asir");
                     92:        で ox_asir server を起動できるか試して下さい.
                     93:        起動できないときは,
                     94:          ASIR_RSH に -v option を加えて
                     95:        (例: ASIR_RSH='ssh -v -f -X -A ' )
                     96:        ssh を debug mode で起動し, 原因を探します.
                     97:
                     98: */
                     99:
                    100: /*&en
                    101: A.
                    102:   (A) Check if ssh works properly. For example, can you start xterm by the
                    103:       command
                    104:         ssh -f -X -A remote-machine-name  xterm
                    105:       ?
                    106:       Some old versions of ssh do not accept options -X and -A.
                    107:       If you have such versions, change the value of ASIR_RSH
                    108:       in the shell script /usr/local/bin/asir.
                    109:       Example:  ASIR_RSH='ssh -f '
                    110:       If you cannot start xterm with the error "command not found",
                    111:       you need to add a path to .cshrc or .bashrc.
                    112:       Example:
                    113:         set path=(/usr/X11R6/bin $path)    (.cshrc)
                    114:         export PATH=/usr/X11R6/bin:$PATH   (.bashrc)
                    115:
                    116:    (B) Asir of openXM version 1.1.3 cannot start remove ox servers by ssh
                    117:        if the login shell of the remote server is sh or bash.
                    118:        This bug will be fixed in the next release.
                    119:
                    120:    (C) Now, try to start the ox_asir server from asir by the command:
                    121:          ox_launch(remote-host-name,"/usr/local/OpenXM/lib/asir","ox_asir");
                    122:        If you couldn't add -v option to ASIR_RSH,
                    123:        and start ssh with the debug mode.  It will help you.
                    124:        (Example: ASIR_RSH='ssh -v -f -X -A ' )
                    125:
                    126: */
1.2       takayama  127:
                    128: //&C
1.1       takayama  129:
1.3       takayama  130: //&C April 12, 2000.
1.2       takayama  131: //&ja Q. openxm*.rpm を利用しているのですが, asir と入力すると,
1.3       takayama  132: //&en Q. I installed OpenXM package by RPM (openxm*.rpm). Asir command returns
1.1       takayama  133: //&C   /var/tmp/openxm-root/OpenXM/bin/asir  is not found
1.2       takayama  134: //&ja とエラーがでて起動できません.
                    135: //&en and I cannot start asir.
                    136:
1.1       takayama  137: /*&C A.
1.3       takayama  138:      Become root and type in the following command sequences:
                    139:
1.1       takayama  140:      cd /usr/local/OpenXM/rc
                    141:      make clean; make install
                    142: */
                    143:
1.3       takayama  144: /*&C
                    145:
                    146: -------------------------------------------------------------------
                    147:
                    148:
                    149: */
1.1       takayama  150:
                    151:
1.3       takayama  152: /*&ja
1.1       takayama  153: Q.  1999, 11/10:
                    154:     " (file) run  " を ox_sm1 に送って executeStringByLocalParser しても
                    155:     ファイルをロードしてくれません.
                    156:
                    157: A.  "[(parse) (file) pushfile] extension " で読み込んでください.
                    158:     ox_asir も load("file") を executeStringByLocalParser しても
                    159:     だめです.  "file", 1, "load" をスタックへ積んでから execute します.
                    160:     ox_math も "<< file"  executeStringByLocalParser しても
                    161:     だめです.
                    162:
                    163: Q. 1999, 11/10:
                    164:     OX サーバを起動しようとしても起動しません.
                    165:     asir を起動したあと, ox_launch したら, segmentation fault した.
                    166:
                    167: A. OpenXM は home directory の直下にあり, また OpenXM/rc/bashrc で環境
                    168:    変数を正しく設定しましたか?
                    169:
                    170: Q. 1999, 11/10:
                    171:    sm1 は * をつかえないのですか?
                    172:
                    173: A. *もつかえます.  x*y も x y も同じいみです.
                    174:
                    175:
                    176: Q. 1999, 11/12:
                    177:    sm1 は 有理数を係数とする多項式を扱えないのですか?
                    178:
                    179: A. いまのところ扱えません.
                    180:    OpenXM/lib/asir/xm の 関数 sm1_rat_to_p() は有理数係数の多項式を
                    181:    sm1 が扱いやすいような 整数係数の多項式に変換してくれます.
                    182:
                    183: Q. 1999, 11/12:
                    184:    Solaris 2.5.1 で pari のコンパイルがうまくできません.
                    185:
                    186: A.
                    187: | Solaris 2.5.1 ですが, いきなり pari の make でこけますね.
                    188: |
                    189: | /usr/local/bin/as  -o kernel.o kernel1.s
                    190: | kernel1.s: Assembler messages:
                    191: | kernel1.s:1: Error: Rest of line ignored. First ignored character is `/'.
                    192: | make[2]: *** [kernel.o] Error 1
                    193: | make[2]: Leaving directory `/home/taka/OpenXM/src/pari-2.0.17.beta/Osolaris-spar
                    194: | cv9'
                    195: | make[1]: *** [install] Error 2
                    196:
                    197: これは私も以前はまりました. Osolaris-sparcv?/Makefile で
                    198:
                    199: AS=/usr/local/bin/as
                    200:
                    201: となっているせいです. これは
                    202:
                    203: AS=/usr/ccs/bin/as
                    204:
                    205: でなければ make に失敗します. Solaris の場合には /usr/ccs/bin が
                    206: /usr/local/binより先にサーチされるように path を設定する必要があります.
                    207:
                    208: このように設定しておくと configure の時自動的にAS=/usr/ccs/bin/as
                    209: としてくれる.
                    210:
1.3       takayama  211: */
                    212:
                    213: //&ja Q. pari で, LLL algorithm をつかうのにはどうしますか?
                    214: //&en Q. How to use functions for LLL algorithm in pari?
1.1       takayama  215: /*&C
                    216:
                    217: A. gp                         (Starting pari)
                    218:    x = [1,0 ; 0,1]            (Define a matrix. Do not use [[1,0],[0,1]].)
                    219:    qflll(x)
                    220:
                    221: */
                    222:
1.3       takayama  223: //&C
                    224:
                    225: //&ja Q. Asir より pari をよびだして, LLL algorithm をつかうのにはどうしますか?
                    226: //&en Q. How to use functions for LLL algorithm in asir by calling pari?
1.1       takayama  227: /*&C
                    228:
                    229: A. asir
                    230:    X = newmat(2,2,[[1,0],[0,1]]);
                    231:    pari(lll,X);
                    232:
                    233: */
                    234:
                    235:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>