| ARToolKit | Mailing List Archive |
|
| From: | "Mischa Schaub" <msc@h ...........> | Received: | Jun 11, 2001 |
| To | artoolkit@h .................. | ||
| Subject: | Installation difficulties on Linux - HELP | ||
Dear ARtists I was able to "make" the toolkit on my Linux Redhat 7.0 without any difficulties, but when I try to start any of the programs, the X-server (XFree86, Version 4) crashes after about a tenth of a second after having shown very quickly the camerawindow with some video on it. This is what I get as the last message in the /var/log/XFree86.log logfile: AUDIT: Mon Jun 11 10:15:40 2001: 1702 X: client 10 rejected from local host Fatal server error Caught signal 11. Server aborting Any ideas, what I will have to change? I would love to be able to work with this toolkit, the docu reads great! Many thanx Mischa ( http://www.hyperwerk.ch) |
|||
| From: | Hirokazu Kato <kato@s ........................> | Received: | Jun 12, 2001 |
| To | "Mischa Schaub" <msc@h ...........> | ||
| Subject: | Re: Installation difficulties on Linux - HELP | ||
At 8:28 AM +0900 01.6.12, Hirokazu Kato wrote:
>I was able to "make" the toolkit on my Linux Redhat 7.0 without any
>difficulties, but when I try to start any of the programs, the X-server
> (XFree86, Version 4) crashes after about a tenth of a second after
>having shown very quickly the camerawindow with some video on it.
What graphics card and driver are you using?
If you have a nVidia card and their driver,
There might be the problem in use of AGP.
Please try not to use AGP or use the latest driver.
nVidia web site: http://www.nvidia.com/view.asp?PAGE=linux
Or
There might be the problem in use of texture mapping.
Please try to use glDrawPixels instead of texture mapping.
include/AR/config.h:
#define DEFAULT_FITTING_MODE AR_FITTING_TO_IDEAL
#define DEFAULT_DRAW_MODE AR_DRAW_BY_TEXTURE_MAPPING
------>
#define DEFAULT_FITTING_MODE AR_FITTING_TO_INPUT
#define DEFAULT_DRAW_MODE AR_DRAW_BY_GL_DRAW_PIXELS
--
------------------------------------------------------------------
Hirokazu Kato
Faculty of Information Sciences
Hiroshima City University Phone: 082-830-1705
Email: kato@s ........................ Fax: 082-830-1435
URL: http://www.sys.im.hiroshima-cu.ac.jp/people/kato/
|
|||