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