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