=================================================================== RCS file: /home/cvs/OpenXM/doc/OpenXM-FAQ.oxweave,v retrieving revision 1.4 retrieving revision 1.12 diff -u -p -r1.4 -r1.12 --- OpenXM/doc/OpenXM-FAQ.oxweave 2000/11/30 12:45:13 1.4 +++ OpenXM/doc/OpenXM-FAQ.oxweave 2002/03/06 23:47:58 1.12 @@ -1,19 +1,188 @@ -% $OpenXM: OpenXM/doc/OpenXM-FAQ.oxweave,v 1.3 2000/09/28 00:57:06 takayama Exp $ +% $OpenXM: OpenXM/doc/OpenXM-FAQ.oxweave,v 1.11 2001/12/27 08:45:55 takayama Exp $ -//&C Nov 30, 2000 +//&C March 7, 2002 (for developer) +//&ja Q. HEAD にタグをつけるには? +//&en Q. How to attach a tag to the head branch + +//&C cvs rtag -r HEAD RELEASE_1_2_1 OpenXM OpenXM_contrib OpenXM_contrib2 + +//&C December 27, 2001 (Windows) +//&ja Q. asirgui で engine.exe の位置が registry に登録されています. これを消すには? +//&en Q. The path for engine.exe is written in the registry. How to remove the data from the registry? + +/*&ja + MSDOS コマンドプロンプトより regedit を立ち上げて, + HKEY_LOCAL_MACHINE->SOFTWARE->FUJITSU + のなかの ASIR を全て消す. +*/ + +/*&en + start "regedit" from MSDOS command prompt and + remove HKEY_LOCAL_MACHINE->SOFTWARE->FUJITSU->ASIR +*/ + +//&C December 24, 2001 (Windows) +//&ja Q. OpenXM/misc/packages/Windows/asirgui2.bat を起動しようとすると, "環境変数領域がたりませんとエラーがでます. +//&en Q. OpenXM/misc/packages/Windows/asirgui2.bat stops with an error "Not enough area for environmental variables". + +/*&ja + Windows 95/98/ME でこの問題がおきます. + 環境変数領域を増やします. + command /e:5000 + で command.com を立ち上げるのは一番簡単な方法. + msconfig (win98/ME) または sysedit (win95) を用いて, + 環境変数 shell + 値 c:\windows\command.com /p /e:5000 + とする. +*/ + +/*&en + This trouble happens on Windows 95/98/ME. + Increase the area for environmental variables. + (1) Staring the command prompt with + command /e:5000 + is the simplest way. + (2) By msconfig (win98/ME) or sysedit (win95), + set the value of the environmental variable + shell + to the value + c:\windows\command.com /p /e:5000 +*/ + +//&C August 10, 2001 (Windows, developer) +//&ja Q. cygwin 環境で : から始まる sh ファイルが動かないことがあります.(開発者向け) +//&en Q. Shell scripts which start with ":" does not sometimes work on cygwin (for developers). + +/*&ja + Login shell が csh 系の場合この現象がおきるようです. + OpenXM/src/kan96xx/Kan/cat0, OpenXM/src/kan96xx/Kan/ar-decomp + の : を #!/bin/sh に置き換えてください. +*/ + +/*&en + It seems that this trouble happens when the login shell is csh. + Please replace :'s in + OpenXM/src/kan96xx/Kan/cat0, OpenXM/src/kan96xx/Kan/ar-decomp + by #!/bin/sh +*/ + +//&C May 6, 2001 (developer) +//&ja Q. tab をスペースで置き換えたい. (開発者向け) +//&en Q. I want to replace tabs by spaces. (for developers) + +/*&C A. (For emacs). + Esc x mark-whole-buffer + Esc x indent-region + Esc x untabify +*/ + +//&C May 6, 2001 (developer) +/*&ja Q. gcc が定義するシンボル名を知りたい. (開発者向け) +*/ +/*&en Q. I want to know symbol names that gcc defines. (for developers) +*/ + +/*&ja A. ダミーのファイル foo.c を作成して, + gcc -v -c foo.c +*/ +/*&en A. Generate a dummy file foo.c and type in + gcc -v -c foo.c +*/ + +//&C Jan 18, 2001 (user, developer) +/*&ja Q. Debian potato で OpenXM/src/ox_math (Mathematica の OpenXM サポート) のソースがコンパイル, 実行 + できません. +*/ +/*&en Q. I cannot compile and execute OpenXM/src/ox_math (OpenXM support of +Mathematica) on Debian potato. +*/ + +/*&ja +A (by Ohara). +1. Mathlink は glibc2.1 では正しく動作しません. +http://support.wolfram.com/MathLink/Linux/glibc21.html +をみて, libML.a を取り換えます. +2. apt-get install libc5 +で libc5 をインストールする. +*/ + +/*&en +A (by Ohara). +1. Mathlink does now work properly under glibc2.1. +See http://support.wolfram.com/MathLink/Linux/glibc21.html +and replace libML.a +2. Install libc5 by + apt-get install libc5 +*/ + +//&C Dec 17, 2000 (user) +//&ja Q. Debian potato で OpenXM server 用の xterm がひらかず, OpenXM server が起動できません. +//&en Q. I cannot start xterm for some OpenXM servers on Debian potato. + +/*&ja +A (by Ohara). +(原因) Debian 2.2 で xterm -e a.out でプロセスを起動した場合、 +a.out には環境変数 LD_LIBRARY_PATH が伝達されません!! + +(結果) oxc は $OpenXM_HOME/lib/libgmp.so とリンクしているので、リンカ +がダイナミックリンクを解決できずに、起動すらできなかったわけです。 + +(解決) /lib に libgmp.so にシンボリックリンクをつくる。 +例: root になって + cd /lib + ln -s $OpenXM_HOME/lib/libgmp.so . + ln -s $OpenXM_HOME/lib/libpari.so . + などを実行. + +*/ +/*&en +A (by Ohara). +Reason: If you start a.out by "xterm -e a.out" on Debian 2.2, +the value of the environmental variable is not given to a.out. + +Troubles: "oxc" is dynamically linked with$OpenXM_HOME/lib/libgmp.so, +so oxc could not be started with "xterm -e oxc". + +A solution: Generate a symbolic link from libgmp.so to /lib + For example, become the super user and input the follows: + cd /lib + ln -s $OpenXM_HOME/lib/libgmp.so . + ln -s $OpenXM_HOME/lib/libpari.so . + +*/ + +//&C Nov 30, 2000 (user) //&ja Q. Redhat Linux を利用しています. libgd がないので RPM パッケージのインストールが失敗します. //&en Q. I'm using Redhat Linux. Installation of the RPM package of openxm fails because libgd does not exists. /*&ja (A) http://www.redhat.com/downloads より, libgd をサーチします. (B) libgd 1.3 を download して, rpm でインストールします. + + www.redhat.com では, 最新版の Redhat 用の libgd しかみつからないかも + しれません. その場合は http://rpmfind.net で探して下さい. + たとえば Redhat 6.2 用の libgd は + http://rpmfind.net/linux/RPM/redhat/6.2/i386////gd-1.3-6.i386.html + にあります. + ネットスケープの場合ならここにアクセスし, + gd-1.3-6 RPM for i386 + を shift+click して gd-1.3-6.i386.rpm をダウンロードします. */ /*&en (A) Search libgd at http://www.redhat.com/downloads (B) Download libgd 1.3 and install it by rpm. + + You might find only the latest version of libgd at www.redhat.com. + If you need to find older versions, try to find them at http://rpmfind.net + For example, libgd for Redhat 6.2 is at + http://rpmfind.net/linux/RPM/redhat/6.2/i386////gd-1.3-6.i386.html + If you are using netscape, access to this site and + shift+click + gd-1.3-6 RPM for i386 + Then, you can download gd-1.3-6.i386.rpm */ -//&C Sep 28, 2000 +//&C Sep 28, 2000 (user) //&ja Q. asir より ssh を用いて remote の ox サーバを起動できません. //&en Q. I cannot start remote ox servers with ssh. @@ -73,7 +242,7 @@ A. //&C -//&C April 12, 2000. +//&C April 12, 2000. (user) //&ja Q. openxm*.rpm を利用しているのですが, asir と入力すると, //&en Q. I installed OpenXM package by RPM (openxm*.rpm). Asir command returns //&C /var/tmp/openxm-root/OpenXM/bin/asir is not found