[XFree86] Error in Compiling XFree86 for ARM

2007-07-12 Thread Himanshu Singh Chauhan

Hello,

I am trying to compile the XFree86 for ARM. My only requirement is build
standalone XPCOM. So I don't need to build fonts and all and my
host.deflooks like this

#define BuildFontsNO
#define CrossCompiling YES

I tried compiling the source but the compilation ends up in an error. Below
is the full error description.
Can anyone please help me out. The google search doesn't return much pages.

Regards
--Himanshu

==ERROR===

/bin/sh: ./config/util/printver.exe: cannot execute binary file
Building XFree86.

I hope you checked the configuration parameters in ./config/cf
to see if you need to pass BOOTSTRAPCFLAGS.

Fri Jul 13 11:02:04 IST 2007

cd ./config/imake  make  -f Makefile.ini BOOTSTRAPCFLAGS= CC=cc clean
make[1]: Entering directory `/home/heman/xc/config/imake'
rm -f ccimake imake.o imake
rm -f *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a tags TAGS make.log \#*
rm -f -r Makefile.proto Makefile Makefile.dep bootstrap
rm -f imakemdep_cpp.h
make[1]: Leaving directory `/home/heman/xc/config/imake'
make  Makefile.boot
make[1]: Entering directory `/home/heman/xc'
cd ./config/imake  make -w -f Makefile.ini BOOTSTRAPCFLAGS= CC=cc
make[2]: Entering directory `/home/heman/xc/config/imake'
making imake with BOOTSTRAPCFLAGS= and
CROSSCOMPILEFLAGS=-DCROSSCOMPILEDIR=/home/heman/Desktop/Development/AT91-EK-Linux/tools/bin
in config/imake
cc -o ccimake
-DCROSSCOMPILEDIR=\/home/heman/Desktop/Development/AT91-EK-Linux/tools/bin\
-O -I../../include ccimake.c
if [ -n /home/heman/Desktop/Development/AT91-EK-Linux/tools/bin ] ; then \
   /home/heman/Desktop/Development/AT91-EK-Linux/tools/bin/cc -E
`./ccimake` \
   -DCROSSCOMPILE_CPP imakemdep.h  imakemdep_cpp.h; \
   else touch imakemdep_cpp.h; fi
/bin/sh: line 1: ./ccimake: cannot execute binary file
cc -c  -O -I../../include `./ccimake` imake.c
/bin/sh: ./ccimake: cannot execute binary file
cc -o imake  -O -I../../include imake.o
make[2]: Leaving directory `/home/heman/xc/config/imake'
rm -f ./config/makedepend/Makefile.proto
./config/imake/imake -I./config/cf  -s ./config/makedepend/Makefile.proto -f
./config/makedepend/Imakefile -DTOPDIR=../.. -DCURDIR=./config/makedepend
./config/imake/imake: ./config/imake/imake: cannot execute binary file
make[1]: *** [config/makedepend/Makefile.proto] Error 126
make[1]: Leaving directory `/home/heman/xc'
make: *** [World] Error 2


[XFree86] error about compiling Xorg7.1

2006-08-23 Thread cckuo

Dear X friends:
I download the Xserver7.1 from the http://ftp.x.org/pub/X11R7.1/src/xserver/
After producing Makefile by typing configure, I found the error message
says 
extension.c:234: error: UntrustedProcVector undeclared (first use in this
function)
extension.c:234: error: (Each undeclared identifier is reported only once
extension.c:234: error: for each function it appears in.)
extension.c:235: error: SwappedUntrustedProcVectorundeclared (first use in
this function)
make[1]: *** [extension.lo] Error 1
make[1]: Leaving directory `/mnt/hdc/cckuo/Xorg/7.1/xserver/dix'
make: *** [all-recursive] Error 1

I grep both the UntrustedProcVector and  SwappedUntrustedProcVector, and
I found it was defined in Xext/Security.c.
Should I add some compiling options or download additional files to compile?
Sincerely Yours,
cckuo


make.log
Description: Binary data


RE: Spam[XFree86] error about compiling Xorg7.1

2006-08-23 Thread cckuo
Dear All:
I try to turn off XCSECURITY which is defined in
xserver/include/dix-config.h. 
But whenever I change #define XCSECURITY 1 to  #define XCSECURITY 0, I
found the value will go back to #define XCSECURITY 1 after running
build.sh in util/modular/build.sh.
Is any other macro or some options I could add in configure file or Makefile
such that I can turn the XCSECURITY off and go through the compile error I
encounter before?
Sincerely Yours,
cckuo
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of cckuo
Sent: Wednesday, August 23, 2006 3:41 PM
To: xfree86@XFree86.Org
Subject: Spam[XFree86] error about compiling Xorg7.1


Dear X friends:
I download the Xserver7.1 from the http://ftp.x.org/pub/X11R7.1/src/xserver/
After producing Makefile by typing configure, I found the error message
says 
extension.c:234: error: UntrustedProcVector undeclared (first use in this
function)
extension.c:234: error: (Each undeclared identifier is reported only once
extension.c:234: error: for each function it appears in.)
extension.c:235: error: SwappedUntrustedProcVectorundeclared (first use in
this function)
make[1]: *** [extension.lo] Error 1
make[1]: Leaving directory `/mnt/hdc/cckuo/Xorg/7.1/xserver/dix'
make: *** [all-recursive] Error 1

I grep both the UntrustedProcVector and  SwappedUntrustedProcVector, and
I found it was defined in Xext/Security.c.
Should I add some compiling options or download additional files to compile?
Sincerely Yours,
cckuo

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


RE: SpamRE: Spam[XFree86] error about compiling Xorg7.1

2006-08-23 Thread cckuo
Dear All:
It seems we can turn off XCSECURITY by setting  /*#undef XCSECURITY*/ in
dix-config.h.in.
But I have other compile errors while turning of XCSECURITY, like function
SecurityDeleteAuthorization in xserver/Xent/security.c using the
clients[i]-authId (about line# 174) that will not be compiled if we
undefined XCSECURITY, the definition of struct clients is in
xserver/include/Dixstruct.h. But in this function,
SecurityDeleteAuthorization, it seems not use #ifdef to separate such
coincidence.

If anybody both successful download the xorg7.x from git and compile it,
please give me some hint to run through these problems.

Appreciate your help in advance,
cckuo
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of cckuo
Sent: Wednesday, August 23, 2006 5:42 PM
To: xfree86@XFree86.Org
Subject: SpamRE: Spam[XFree86] error about compiling Xorg7.1

Dear All:
I try to turn off XCSECURITY which is defined in
xserver/include/dix-config.h. 
But whenever I change #define XCSECURITY 1 to  #define XCSECURITY 0, I
found the value will go back to #define XCSECURITY 1 after running
build.sh in util/modular/build.sh.
Is any other macro or some options I could add in configure file or Makefile
such that I can turn the XCSECURITY off and go through the compile error I
encounter before?
Sincerely Yours,
cckuo
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of cckuo
Sent: Wednesday, August 23, 2006 3:41 PM
To: xfree86@XFree86.Org
Subject: Spam[XFree86] error about compiling Xorg7.1


Dear X friends:
I download the Xserver7.1 from the http://ftp.x.org/pub/X11R7.1/src/xserver/
After producing Makefile by typing configure, I found the error message
says 
extension.c:234: error: UntrustedProcVector undeclared (first use in this
function)
extension.c:234: error: (Each undeclared identifier is reported only once
extension.c:234: error: for each function it appears in.)
extension.c:235: error: SwappedUntrustedProcVectorundeclared (first use in
this function)
make[1]: *** [extension.lo] Error 1
make[1]: Leaving directory `/mnt/hdc/cckuo/Xorg/7.1/xserver/dix'
make: *** [all-recursive] Error 1

I grep both the UntrustedProcVector and  SwappedUntrustedProcVector, and
I found it was defined in Xext/Security.c.
Should I add some compiling options or download additional files to compile?
Sincerely Yours,
cckuo

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Xfree86 error while Xcompile for ARM

2006-08-22 Thread harshavardhanreddy mandeepala
Hi All,

I am trying to Cross compile Xfree86 for my ARM11 processor.

I have Cross tool chain built for ARM11 with gcc-3.4.3 ,glibc-2.3.4



When i try to cross compile Xfree86-.4.4 and also Xfree86-4.5 

both of them giving error like







slicer.cc: In function `void triangulateRect(Arc*, Backend, int, int, int)':

slicer.cc:382: internal compiler error: in verify_local_live_at_start, at flow.c:546

Please submit a full bug report,

with preprocessed source if appropriate.

See URL:http://gcc.gnu.org/bugs.html for instructions.

make[5]: *** [slicer.o] Error 1

make[5]: Leaving directory `/home/harsha/XFREE86_4.4
/build/lib/GLU/libnurbs/internals'

Any ideas to solve the problem?

Thanks in advance.

Regards,
Harsha


[XFree86] error arranque servidor x

2006-05-17 Thread John Figuero
buen dia desde hace mas de un año estoy trabajando con RedHat 9.0 sin problema. pero el dia de hoy cuando inicie la computadora no me cargo el servicio X y este es el mensaje de error reportado.  XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)Release Date: 27 February 2003X Protocol Version 11, Revision 0, Release 6.6Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] Build Date: 27 February 2003Build Host: porky.devel.redhat.comBefore reporting problems, check http://www.XFree86.Org/to make sure that you have the latest version.Module Loader presentOS Kernel:  Linux version 2.4.20-8 ([EMAIL PROTECTED])  (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003 PFMarkers: (--) probed,
 (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown.  (++) Log file: "/dev/null", Time: Wed May 17 10:56:57 2006(++) Using config file: "/tmp/@4039.1xf86config"(EE) Failed to load module "bitmap" (module does not exist, 0)  Fatal server error:Unable to load required base modules, Exiting...When reporting a problem related to a server crash, please sendthe full server output, not just the last messages.This can be found in the log file "/dev/null".Please report problems to xfree86@xfree86.org.  Espero su gentil colaboracion .   
 Gracias.__Correo Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.espanol.yahoo.com/ 

Re: [XFree86] error arranque servidor x

2006-05-17 Thread Mark Vojkovich
   This seems to happen on RedHat systems for reasons unknown.
Something in the system appears to have deleted crucial XFree86
modules.  The only solution I know of is to reintstall XFree86,
or at least reinstall the modules.


Mark.

On Wed, 17 May 2006, John Figuero wrote:

 buen dia desde hace mas de un a?o estoy trabajando con RedHat 9.0 sin 
 problema. pero el dia de hoy cuando inicie la computadora no me cargo el 
 servicio X y este es el mensaje de error reportado.


   XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
 Release Date: 27 February 2003
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
 Build Date: 27 February 2003
 Build Host: porky.devel.redhat.com
  Before reporting problems, check http://www.XFree86.Org/
  to make sure that you have the latest version.
 Module Loader present
 OS Kernel:
 Linux version 2.4.20-8 ([EMAIL PROTECTED])
 (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 
 17:54:28 EST 2003 PF
 Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
   (++) Log file: /dev/null, Time: Wed May 17 10:56:57 2006
 (++) Using config file: /tmp/@4039.1xf86config
 (EE) Failed to load module bitmap (module does not exist, 0)
   Fatal server error:
 Unable to load required base modules, Exiting...
 When reporting a problem related to a server crash, please send
 the full server output, not just the last messages.
 This can be found in the log file /dev/null.
 Please report problems to [EMAIL PROTECTED]


   Espero su gentil colaboracion .

   Gracias.

 __
 Correo Yahoo!
 Espacio para todos tus mensajes, antivirus y antispam ?gratis!
 Reg?strate ya - http://correo.espanol.yahoo.com/

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error report

2006-04-20 Thread Juan CHEN
I failed in run startx on VMware,
%startx
The message printed on the screen as follows. And the
log file is derived from /var/log/XFree86.0.log is
attached.

Build Host: porky.devel.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.20-8
([EMAIL PROTECTED]) (gcc version 3.2.2
20030222) (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13
17:54:28 EST 2003
Markers: (--) probed, (**) from config file, (==)
default setting,
 (++) from command line, (!!) notice, (II)
informational,
 (WW) warning, (EE) error, (NI) not
implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Apr
20 00:58:03 2006
(==) Using config file: /etc/X11/XF86Config
(EE) No devices detected.

Fatal server error:
no screens found

When reporting a problem related to a server crash,
please send the full server output, not just the last
messages. This can be found in the log file
/var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]

XIO:  fatal IO error 104 (Connection reset by peer) on
X server :0.0 after 0 requests (0 known processed)
with 0 events remaining.

Thank you for your reply!

Best regards,
Juan Chen






___ 
雅虎1G免费邮箱百分百防垃圾信 
http://cn.mail.yahoo.com/

XFree86.0.log
Description: 2509467945-XFree86.0.log


Re: [XFree86] Error report

2006-04-20 Thread Marc Aurele La France

On Thu, 20 Apr 2006, Juan CHEN wrote:


I failed in run startx on VMware,
%startx
The message printed on the screen as follows. And the
log file is derived from /var/log/XFree86.0.log is
attached.



Build Host: porky.devel.redhat.com
Module Loader present
OS Kernel: Linux version 2.4.20-8
([EMAIL PROTECTED]) (gcc version 3.2.2
20030222) (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13
17:54:28 EST 2003
Markers: (--) probed, (**) from config file, (==)
default setting,
(++) from command line, (!!) notice, (II)
informational,
(WW) warning, (EE) error, (NI) not
implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Apr
20 00:58:03 2006
(==) Using config file: /etc/X11/XF86Config
(EE) No devices detected.

Fatal server error:
no screens found



When reporting a problem related to a server crash,
please send the full server output, not just the last
messages. This can be found in the log file
/var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]



XIO:  fatal IO error 104 (Connection reset by peer) on
X server :0.0 after 0 requests (0 known processed)
with 0 events remaining.


When running under VMWare, you need to use the vmware driver, not the driver 
for your actual card.  Modify /etc/X11/XF86Config accordingly.


Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Academic Information and|  fax:1-780-492-1729   |
|Communications Technologies   |  email:  [EMAIL PROTECTED]  |
|  352 General Services Building   +---+
|  University of Alberta   |   |
|  Edmonton, Alberta   | Standard disclaimers apply|
|  T6G 2H1 |   |
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error report

2006-04-20 Thread Mark Vojkovich
On Thu, 20 Apr 2006, Juan CHEN wrote:


  When running under VMWare, you need to use the
  vmware driver, not the driver
  for your actual card.  Modify /etc/X11/XF86Config
  accordingly.
 
  Marc.

 But I really don't know how to modify
 /etc/X11/XF86Config :(

  In the Section Device, change Driver nv to Driver vmware.

Mark.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Xfree86 error

2006-03-27 Thread Marc Aurele La France

On Sun, 26 Mar 2006, jp kn wrote:


when I am using buildroot with package X11R6.8.2-src.tar.bz2
 and target as mipsel wat r the  additional steps i have to do..?
 i got so many error when i build without any change ..


Don't know.  Ask on a freedesktop.org list.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Academic Information and|  fax:1-780-492-1729   |
|Communications Technologies   |  email:  [EMAIL PROTECTED]  |
|  352 General Services Building   +---+
|  University of Alberta   |   |
|  Edmonton, Alberta   | Standard disclaimers apply|
|  T6G 2H1 |   |
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Xfree86 error

2006-03-26 Thread jp kn
when I am using buildroot with package X11R6.8.2-src.tar.bz2  and target as mipsel wat r the additional steps i have to do..?  i got so many error when i build without any change ..  
	

	
		 
Jiyo cricket on Yahoo! India cricket
Yahoo! Messenger Mobile Stay in touch with your buddies all the time.

[XFree86] error messages

2006-03-14 Thread [EMAIL PROTECTED] Davis
Can someone point me to some materials that document the error messages given by the Xfree86 server? For instance, device not found? 


Re: [XFree86] error messages

2006-03-14 Thread Mark Vojkovich
On Tue, 14 Mar 2006, [EMAIL PROTECTED] Davis wrote:

 Can someone point me to some materials that document the error messages
 given by the Xfree86 server?  For instance, device not found?

 If the documentation for the X server says that the nv driver supports
 pci and agp, does this include pci express video cards with the nv
 chipset?

  The current nv driver from CVS supports all known NVIDIA graphics
chips.  The one you have only supports chips that came out before it
was released.  Device not found is the typical response a driver gives
when it doesn't recognize a chip that it supports.

  If you can tell me which card you have, I can tell you when it
was first supported in the nv driver.

Mark.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error

2006-03-02 Thread umesh deshpande

Log file : /var/log/XFree86.0.log.
Backup file contains output of this file.

XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 
20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:18:24 EST 2003 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Mar  2 19:13:42 2006
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 9

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3189 card 1106,3189 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b168 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 14f1,2f00 card 14f1,2004 rev 01 class 07,80,00 hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3104 card 1106,3104 rev 82 class 0c,03,20 hdr 00
(II) PCI: 00:11:0: chip 1106,3177 card 1106,3177 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1106,0571 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 1565,f614 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1565,2200 rev 74 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0182 card , rev a2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xd400 - 0xd5ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd000 - 0xd3ff (0x400) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV18 [GeForce4 MX 440SE AGP 8x] rev 162, 
Mem @ 0xd400/24, 0xd000/26
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0   0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0   0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
[2] -1  0   0x000f - 0x000f (0x1) MX[B]
[3] -1  0   0x000c - 0x000e (0x3) MX[B]
[4] -1  0   0x - 0x0009 (0xa) MX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
[6] -1  0   0x - 0x00ff (0x100) IX[B]
(II) PCI Memory 

[XFree86] Error

2006-03-02 Thread Carlos_Alzate

Buenas tardes .

Solicito su amable colaboraicion con lo siguiente:

Al ejecutar el comando startx tengo el siguiente error:

Xlib: connection to 0:0 refused by server
Xlib: Invalid MIT_MAGIC_Cookie_1 key giving up
Xinit: nable to connect to x server
Xinit: No Such process(errno3):Server error


Cualquier ayuda que me puedan prestar es de gran valor.



[XFree86] error bind(6) failed errror 98 ..

2006-02-12 Thread kiran parmar
hello..
 

i have problem using openldap 

like ..whenever i try command ../usr/lib/slapd -f /var/tmp/slapd.conf -d 255

it give error 

error : daemon : bind (6) failed error :98 (address alredy in use ) 
 connection destroy nothig to destroy..

__

another error : is ldapsearch -b ou=people dc=subnet ,dc=at  -LLL -d cn=manager,dc=subnet,dc=at -W -x  (uid=maxsmb) 

ldap: invalid credential (49)


[XFree86] error due to change in runlevel.....

2005-11-18 Thread Sandeep Bharadwaj L
Hello,

I have Redhat 9 running on my system and 
i changed the runlevel in the file /etc/inittab to 3 and reboot the system and 
tried to run the command startx to start the GUI, but i got an error

I am send the log file that it genetated, please advice.-- CheersSandeep Bharadwaj 


XFree86.0.log
Description: Binary data


[XFree86] error

2005-10-06 Thread kuroda
Dir Sir or Madam

I have got error when starting Red Hat.
The error log is following below.
How can I solve it? Please give a solution for this problem.

Thank you
--

XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com

Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 
20030222 (Re
d Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Fri Oct  7 10:44:41 2005
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel jp106
(**) XKB: model: jp106
(**) Option XkbLayout jp
(**) XKB: layout: jp
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(++) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(WW) Warning, couldn't open module bitmap
(II) UnloadModule: bitmap
(EE) Failed to load module bitmap (module does not exist, 0)
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6

Fatal server error:
Unable to load required base modules, Exiting...

--

***
kotaro [EMAIL PROTECTED]

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error while doing make World

2005-09-30 Thread Nupur
Hi,

I am installing X server on my linux machine.

Following are the steps I followed:
1. downloaded the XFree86-4.5.0-src-1.tgz to XFree86-4.5.0-src-7.tgz files
2. Untar them.
3. made directory build at xc level.
4. cd build
5. lndir ../xc
6. make World World.log 21

After completion of this command, I checked World.log and got the
following errors:

/exports/lib/libXfont.so : undefined reference to 'ssh_z_inflateEnd'
/exports/lib/libXfont.so : undefined reference to 'ssh_z_inflateInit2_'
/exports/lib/libXfont.so : undefined reference to 'ssh_z_inflate'
collect2: ld returned 1 exit status
make[4]: *** [bdftopcf] Error1
make[4]: Leaving Directory ~/build/programs/bdftopcf
make [3]: ***[all] Error 2
make [3]: Leaving Directory ~/build/programs/
make [2]: ***[all] Error 2
make [2]: Leaving Directory ~/build/programs/
make [2]: ***[World] Error 2
make [2]: Leaving Directory ~/build/programs/
make [1]: ***[World] Error 2
make [1]: Leaving Directory ~/build/programs/

Do I need to install zlilb? But zlib is already installed in /lib.

Searching on google also did not help.

Can anyone of you please help me?

Regards,
nupur

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error: X11 lost?

2005-09-25 Thread hypermail

Hello

I got an fatal error. X11 folder seems to be corrupt somehow. 
What should I do now?


Information:

- When I start Linux (IT Linux 2002, Red Hat), output is [Ok], [Ok], ... 
but then: xfs [Failed] can't open configuration file 
usr/X11R6/lib/X11/fs/config


- I checked the folder, and there is error:
- ls /usr/X11R6/lib - listing shows also X11
- [b]ls /usr/X11R6/lib/X11 - Error message: Input/output error[/b]

When I start Linux, it also gives:
- Starting sendmail: make: Entering '/etc/mail'
make: ***warning: File 'virtusertable.db' has modification time in the 
future (2005-09-25 15:28:18  2005-09-25 13:42:17)

make: warning: Clock skew detected. Your build may be incomplete.
make: leaving directory '/etc/mail' [ok]
- xfs error: fatal: couldn't read config file [Failed]
- Starting Wine: [Failed]

I tried to check disk, it looked clean:
- umount /dev/hda2
- fsck /dev/hda2 
: version 

: clean, ... files ... blocks
- mount /dev/hda2
: already mounted or / busy
: according to mtab dev/root is already mounted on /

Log /var/log/XFree86.0.log has the following:
- ...
- Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
- PEXExtensionInit: Couldn't open default PEX font file Roman_M
- ...
- Couldn't load XKB keymap, falling back to pre-XKB keymap
- Could not init font path element unix/:7100, removing from list

startx outputs still error messages and also this message:
- Fatal Server Error: could not open default font 'fixed'

So X is not working. Should I install Linux again and format /-partition?
Or should I ask X11-folder with contents from somebody?


Best Regards

M. Foxman

__
Saunalahti Xtra - Uusi GSM-vuokrapuhelin ja edistykselliset Xtra-palvelut 
käyttöösi alk. 4,95 e/kk! http://saunalahti.fi/xtra/


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error: X11 lost?

2005-09-25 Thread krisna
Hello foxman,
This is normally taken care of by commenting out the line that starts with 
fonts in your xf86config file.
I am not sure until you send the whole file.
Satej

- Original Message -
From: [EMAIL PROTECTED]
Date: Sunday, September 25, 2005 9:02 pm
Subject: [XFree86] Error: X11 lost?

 Hello
 
 I got an fatal error. X11 folder seems to be corrupt somehow. 
 What should I do now?
 
 Information:
 
 - When I start Linux (IT Linux 2002, Red Hat), output is [Ok], 
 [Ok], ... 
 but then: xfs [Failed] can't open configuration file 
 usr/X11R6/lib/X11/fs/config
 
 - I checked the folder, and there is error:
 - ls /usr/X11R6/lib - listing shows also X11
 - [b]ls /usr/X11R6/lib/X11 - Error message: Input/output error[/b]
 
 When I start Linux, it also gives:
 - Starting sendmail: make: Entering '/etc/mail'
 make: ***warning: File 'virtusertable.db' has modification time in 
 the 
 future (2005-09-25 15:28:18  2005-09-25 13:42:17)
 make: warning: Clock skew detected. Your build may be incomplete.
 make: leaving directory '/etc/mail' [ok]
 - xfs error: fatal: couldn't read config file [Failed]
 - Starting Wine: [Failed]
 
 I tried to check disk, it looked clean:
 - umount /dev/hda2
 - fsck /dev/hda2 
 : version 
 : clean, ... files ... blocks
 - mount /dev/hda2
 : already mounted or / busy
 : according to mtab dev/root is already mounted on /
 
 Log /var/log/XFree86.0.log has the following:
 - ...
 - Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
 - PEXExtensionInit: Couldn't open default PEX font file Roman_M
 - ...
 - Couldn't load XKB keymap, falling back to pre-XKB keymap
 - Could not init font path element unix/:7100, removing from list
 
 startx outputs still error messages and also this message:
 - Fatal Server Error: could not open default font 'fixed'
 
 So X is not working. Should I install Linux again and format /-
 partition?Or should I ask X11-folder with contents from somebody?
 
 
 Best Regards
 
 M. Foxman
 
 __
 Saunalahti Xtra - Uusi GSM-vuokrapuhelin ja edistykselliset Xtra-
 palvelut käyttöösi alk. 4,95 e/kk! http://saunalahti.fi/xtra/
 
 
 ___
 XFree86 mailing list
 XFree86@XFree86.Org
 http://XFree86.Org/mailman/listinfo/xfree86
 


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error: X11 lost?

2005-09-25 Thread Mark Vojkovich
   Your font server isn't running.  See the man page on 'xfs'.
Also, RedHat probably has some utility to configure and start the
font server.  It used to be you could enable it via ntsysv.

Mark.

On Sun, 25 Sep 2005 [EMAIL PROTECTED] wrote:

 Hello

 I got an fatal error. X11 folder seems to be corrupt somehow.
 What should I do now?

 Information:

 - When I start Linux (IT Linux 2002, Red Hat), output is [Ok], [Ok], ...
 but then: xfs [Failed] can't open configuration file
 usr/X11R6/lib/X11/fs/config

 - I checked the folder, and there is error:
 - ls /usr/X11R6/lib - listing shows also X11
 - [b]ls /usr/X11R6/lib/X11 - Error message: Input/output error[/b]

 When I start Linux, it also gives:
 - Starting sendmail: make: Entering '/etc/mail'
 make: ***warning: File 'virtusertable.db' has modification time in the
 future (2005-09-25 15:28:18  2005-09-25 13:42:17)
 make: warning: Clock skew detected. Your build may be incomplete.
 make: leaving directory '/etc/mail' [ok]
 - xfs error: fatal: couldn't read config file [Failed]
 - Starting Wine: [Failed]

 I tried to check disk, it looked clean:
 - umount /dev/hda2
 - fsck /dev/hda2
  : version 
  : clean, ... files ... blocks
 - mount /dev/hda2
  : already mounted or / busy
  : according to mtab dev/root is already mounted on /

 Log /var/log/XFree86.0.log has the following:
 - ...
 - Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
 - PEXExtensionInit: Couldn't open default PEX font file Roman_M
 - ...
 - Couldn't load XKB keymap, falling back to pre-XKB keymap
 - Could not init font path element unix/:7100, removing from list

 startx outputs still error messages and also this message:
 - Fatal Server Error: could not open default font 'fixed'

 So X is not working. Should I install Linux again and format /-partition?
 Or should I ask X11-folder with contents from somebody?


 Best Regards

 M. Foxman

 __
 Saunalahti Xtra - Uusi GSM-vuokrapuhelin ja edistykselliset Xtra-palvelut 
 k?ytt??si alk. 4,95 e/kk! http://saunalahti.fi/xtra/


 ___
 XFree86 mailing list
 XFree86@XFree86.Org
 http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error starting X

2005-09-09 Thread Faraz Ahmed












Please help.





Faraz Ahmed

Network Administrator

PakShaheen Container Services

24/27 Reclaimed Area,Timber Pond

Keamari, Karachi.

Telco: 0092-21-285-1800

111-725-742


Fax: 0092-21-561-2230










XFree86.0.log
Description: Binary data


[XFree86] error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPolicy

2005-07-28 Thread Lior Maron
Hello,
I am using Red Hat Enterprise release 3, with the vncserver and vncclient that 
came with it in /usr/bin directory.
Running 
 vncserver
Gives me the following log file in ~/.vnc directory

Xvnc version 4.0b4 - built Sep  5 2003 13:04:00
Underlying X server release 4030, The XFree86 Project, Inc
 
 
Thu Jul 28 11:37:21 2005
 vncext:  VNC extension running!
 vncext:  Listening for VNC connections on port 5901
 vncext:  Listening for HTTP connections on port 5801
 vncext:  created VNC server for screen 0
error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPolicy
Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from 
list!
SESSION_MANAGER=local/funx77:/tmp/.ICE-unix/22500
Option given which is no longer supported in this version of gnome-terminal; 
you might want to create a profile with the desired setting,
and use the new --window-with-profile option

I have several questions:
1. The directory xserver does not exist under  /usr/X11R6/lib/X11/, why is 
that, and what do I have to do inorder to have it?
2. What is this kind of error, and is it the reason why my client VNC 
connection to the server crashed after a short while?
3. Is fixing question 1 will sort out the font message? (e.g Could not init 
font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list!)
Thanks


Lior Maron
Hardware Engineer
Saifun Semiconductors Ltd. 
Tel: +972-9-8928-444 Ext-882
Fax: +972-9-8928-445
Mobile: +972-528-635-391 (Not available during office hours)
E-mail: [EMAIL PROTECTED]
Web: [EMAIL PROTECTED] 


***
The information transmitted is intended only for the person or entity to
which it is addressed. 
This transmission may contain proprietary and confidential information of 
Saifun Semiconductors and/or its affiliates.
Receipt of this transmission does not provide any right to reproduce it or 
disclose its contents. 
Reproduction, disclosure, or use of transmitted materials without written 
authorization of Saifun Semiconductor is strictly forbidden.


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPolicy

2005-07-28 Thread Andrzej Popielewicz
* Lior Maron [EMAIL PROTECTED] [2005-07-28 11:55:12]:

 Hello,
 error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPolicy
Create xserver directory with mkdir and copy SecurityPolicy to it.This files
exists somewhere in the system , it is supplied with XFree86

 Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from 
 list!
Can be ignored, unless You need CID fonts

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error-fatal server erroe

2005-07-05 Thread satheeshmc
Fatal server error:
Server is already active for display 0
If this server is no longer running, remove /tmp/.X0-lock
and start again.

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error

2005-06-16 Thread langelo



XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.24 i686 [ELF] 
Build Date: 11 February 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Jun 16 08:40:16 2005
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device VESA Framebuffer
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(==) Keyboard: CustomKeycode disabled
(WW) `fonts.dir' not found (or not valid) in /usr/X11R6/lib/X11/fonts/100dpi.
Entry deleted from font path.
(Run 'mkfontdir' on /usr/X11R6/lib/X11/fonts/100dpi).
(WW) `fonts.dir' not found (or not valid) in 
/usr/X11R6/lib/X11/fonts/cyrillic.
Entry deleted from font path.
(Run 'mkfontdir' on /usr/X11R6/lib/X11/fonts/cyrillic).
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/local,/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/Type1,/usr/X11R6/lib/X11/fonts/CID,/usr/X11R6/lib/X11/fonts/Speedo,/usr/X11R6/lib/X11/fonts/TTF
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8002680c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1043,8070 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 12 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 12 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,244b card 1043,8028 rev 12 class 01,01,80 hdr 00
(II) PCI: 00:1f:2: chip 8086,2442 card 1043,8028 rev 12 class 0c,03,00 hdr 00
(II) PCI: 00:1f:4: chip 8086,2444 card 1043,8028 rev 12 class 0c,03,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2445 card 1043,8072 rev 12 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,002d card , rev 15 class 03,00,00 hdr 00
(II) PCI: 02:0d:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xf400 - 0xf5df (0x1e0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xf5f0 - 0xf7ff (0x210) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0   0xd000 - 0xd0ff (0x100) IX[B]
[1] -1  0   0xd400 - 0xd4ff (0x100) IX[B]
[2] -1  0   0xd800 - 0xd8ff (0x100) IX[B]
[3] -1  0   0xdc00 - 0xdcff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1  0   0xf380 - 0xf3ff (0x80) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1  0   0xf5e0 - 0xf5ef (0x10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] 
rev 21, Mem @ 0xf400/24, 0xf600/25, BIOS @ 0xf5ff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  

[XFree86] error message

2005-05-27 Thread Prodromos Zanis
Dear Madam
Dear Sir


I use XFree86 Version 4.3.0 with Red Hat Linux 9. Yesterday I got the
following error message related to a server crash when I tryed to switch
on my PC.

**
Could not init font path element unix/:7100, removing from list!
Fatal server error:
could not open default font 'fixed'
*

In the problem report it was suggested to contact you and send you the
whole XFree86.0.log file, which I attach.

I look forward for your hints.
Prodromos Zanis
-- 

Dr. Prodromos Zanis
Centre for Atmospheric Physics and Climatology
Academy of Athens
3rd September 131, Athens 11251, Greece
Tel. +30 210 8832048
Fax: +30 210 8832048
e-mail: [EMAIL PROTECTED]
Web address: http://users.auth.gr/~zanis/
*


XFree86.0.log
Description: Binary data


[XFree86] error message

2005-05-27 Thread Prodromos Zanis

Dear Madam
Dear Sir


I use XFree86 Version 4.3.0 with Red Hat Linux 9. Yesterday I got the
following error message related to a server crash when I tryed to switch
on my PC.

**
Could not init font path element unix/:7100, removing from list!
Fatal server error:
could not open default font 'fixed'
*

In the problem report it was suggested to contact you and send you the
whole XFree86.0.log file, which I attach.

I look forward for your hints.
Prodromos Zanis
-- 

Dr. Prodromos Zanis
Centre for Atmospheric Physics and Climatology
Academy of Athens
3rd September 131, Athens 11251, Greece
Tel. +30 210 8832048
Fax: +30 210 8832048
e-mail: [EMAIL PROTECTED]
Web address: http://users.auth.gr/~zanis/
*



-- 

Dr. Prodromos Zanis
Centre for Atmospheric Physics and Climatology
Academy of Athens
3rd September 131, Athens 11251, Greece
Tel. +30 210 8832048
Fax: +30 210 8832048
e-mail: [EMAIL PROTECTED]
Web address: http://users.auth.gr/~zanis/
*


XFree86.0.log
Description: Binary data


RE: [XFree86] error message

2005-05-27 Thread Veikko Werner
please attach also the XF86Config you are using.

Veikko

 -Original Message-
 From: Prodromos Zanis [mailto:[EMAIL PROTECTED]
 Sent: Friday, May 27, 2005 10:41 AM
 To: XFree86@XFree86.Org
 Cc: [EMAIL PROTECTED]
 Subject: [XFree86] error message
 
 
 
 Dear Madam
 Dear Sir
 
 
 I use XFree86 Version 4.3.0 with Red Hat Linux 9. Yesterday I got the
 following error message related to a server crash when I 
 tryed to switch
 on my PC.
 
 **
 Could not init font path element unix/:7100, removing from list!
 Fatal server error:
 could not open default font 'fixed'
 *
 
 In the problem report it was suggested to contact you and send you the
 whole XFree86.0.log file, which I attach.
 
 I look forward for your hints.
 Prodromos Zanis
 -- 
 
 Dr. Prodromos Zanis
 Centre for Atmospheric Physics and Climatology
 Academy of Athens
 3rd September 131, Athens 11251, Greece
 Tel. +30 210 8832048
 Fax: +30 210 8832048
 e-mail: [EMAIL PROTECTED]
 Web address: http://users.auth.gr/~zanis/
 *
 
 
 
 -- 
 
 Dr. Prodromos Zanis
 Centre for Atmospheric Physics and Climatology
 Academy of Athens
 3rd September 131, Athens 11251, Greece
 Tel. +30 210 8832048
 Fax: +30 210 8832048
 e-mail: [EMAIL PROTECTED]
 Web address: http://users.auth.gr/~zanis/
 *
 

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] error message

2005-05-27 Thread Prodromos Zanis
Dear Veiko

I attach the XF86Config as you suggested.

regards
Prodromos

 please attach also the XF86Config you are using.

 Veikko

 -Original Message-
 From: Prodromos Zanis [mailto:[EMAIL PROTECTED]
 Sent: Friday, May 27, 2005 10:41 AM
 To: XFree86@XFree86.Org
 Cc: [EMAIL PROTECTED]
 Subject: [XFree86] error message



 Dear Madam
 Dear Sir


 I use XFree86 Version 4.3.0 with Red Hat Linux 9. Yesterday I got the
 following error message related to a server crash when I
 tryed to switch
 on my PC.

 **
 Could not init font path element unix/:7100, removing from list!
 Fatal server error:
 could not open default font 'fixed'
 *

 In the problem report it was suggested to contact you and send you the
 whole XFree86.0.log file, which I attach.

 I look forward for your hints.
 Prodromos Zanis
 --
 
 Dr. Prodromos Zanis
 Centre for Atmospheric Physics and Climatology
 Academy of Athens
 3rd September 131, Athens 11251, Greece
 Tel. +30 210 8832048
 Fax: +30 210 8832048
 e-mail: [EMAIL PROTECTED]
 Web address: http://users.auth.gr/~zanis/
 *



 --
 
 Dr. Prodromos Zanis
 Centre for Atmospheric Physics and Climatology
 Academy of Athens
 3rd September 131, Athens 11251, Greece
 Tel. +30 210 8832048
 Fax: +30 210 8832048
 e-mail: [EMAIL PROTECTED]
 Web address: http://users.auth.gr/~zanis/
 *


 ___
 XFree86 mailing list
 XFree86@XFree86.Org
 http://XFree86.Org/mailman/listinfo/xfree86



-- 

Dr. Prodromos Zanis
Centre for Atmospheric Physics and Climatology
Academy of Athens
3rd September 131, Athens 11251, Greece
Tel. +30 210 8832048
Fax: +30 210 8832048
e-mail: [EMAIL PROTECTED]
Web address: http://users.auth.gr/~zanis/
*
# XFree86 4 configuration created by pyxf86config

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection

Section Files
# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

RgbPath  /usr/X11R6/lib/X11/rgb
FontPath unix/:7100
EndSection

Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
Load  dri
EndSection

Section InputDevice
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option  Xleds 1 2 3

# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option  XkbDisable

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option  XkbModel  pc102
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  XkbModel  microsoft
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option  XkbLayout de
# or:
#   Option  XkbLayout de
#   Option  XkbVariantnodeadkeys
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option  XkbOptionsctrl:swapcaps
# Or if you just want both to be control, use:
#   Option  XkbOptionsctrl:nocaps
#
Identifier  Keyboard0
Driver  keyboard
Option  XkbRules xfree86
Option  XkbModel pc105
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/psaux
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section InputDevice
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier  DevInputMice
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNamePhilips Brilliance 109(PRODUCT ID 19A58...)
DisplaySize  360270
HorizSync30.0 - 95.0
VertRefresh  50.0

RE: [XFree86] error message

2005-05-27 Thread Veikko Werner
Prodomos,

I found this sentence in the COnfig file:

# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

so this is redhat specific. Maybe your font server isn't running. But for that 
I cant help.

Veikko


 -Original Message-
 From: Prodromos Zanis [mailto:[EMAIL PROTECTED]
 Sent: Friday, May 27, 2005 12:02 PM
 To: xfree86@XFree86.Org
 Subject: RE: [XFree86] error message
 
 
 Dear Veiko
 
 I attach the XF86Config as you suggested.
 
 regards
 Prodromos
 
  please attach also the XF86Config you are using.
 
  Veikko
 
  -Original Message-
  From: Prodromos Zanis [mailto:[EMAIL PROTECTED]
  Sent: Friday, May 27, 2005 10:41 AM
  To: XFree86@XFree86.Org
  Cc: [EMAIL PROTECTED]
  Subject: [XFree86] error message
 
 
 
  Dear Madam
  Dear Sir
 
 
  I use XFree86 Version 4.3.0 with Red Hat Linux 9. 
 Yesterday I got the
  following error message related to a server crash when I
  tryed to switch
  on my PC.
 
  **
  Could not init font path element unix/:7100, removing from list!
  Fatal server error:
  could not open default font 'fixed'
  *
 
  In the problem report it was suggested to contact you and 
 send you the
  whole XFree86.0.log file, which I attach.
 
  I look forward for your hints.
  Prodromos Zanis
  --
  
  Dr. Prodromos Zanis
  Centre for Atmospheric Physics and Climatology
  Academy of Athens
  3rd September 131, Athens 11251, Greece
  Tel. +30 210 8832048
  Fax: +30 210 8832048
  e-mail: [EMAIL PROTECTED]
  Web address: http://users.auth.gr/~zanis/
  *
 
 
 
  --
  
  Dr. Prodromos Zanis
  Centre for Atmospheric Physics and Climatology
  Academy of Athens
  3rd September 131, Athens 11251, Greece
  Tel. +30 210 8832048
  Fax: +30 210 8832048
  e-mail: [EMAIL PROTECTED]
  Web address: http://users.auth.gr/~zanis/
  *
 
 
  ___
  XFree86 mailing list
  XFree86@XFree86.Org
  http://XFree86.Org/mailman/listinfo/xfree86
 
 
 
 -- 
 
 Dr. Prodromos Zanis
 Centre for Atmospheric Physics and Climatology
 Academy of Athens
 3rd September 131, Athens 11251, Greece
 Tel. +30 210 8832048
 Fax: +30 210 8832048
 e-mail: [EMAIL PROTECTED]
 Web address: http://users.auth.gr/~zanis/
 *
 

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error message

2005-05-27 Thread Andrzej Popielewicz
* Prodromos Zanis [EMAIL PROTECTED] [2005-05-27 11:40:45]:

 
 I use XFree86 Version 4.3.0 with Red Hat Linux 9. Yesterday I got the
 following error message related to a server crash when I tryed to switch
 on my PC.
 
 **
 Could not init font path element unix/:7100, removing from list!
 Fatal server error:
 could not open default font 'fixed'

You could give up using font server and simply set FontPath in
XConfigFile to the corresponding paths containing fonts.

Andrzej

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error comando startx

2005-05-19 Thread Fredy I. Mendoza Cely
Language spanish 

Buenas tardes

Escribo el presente e-mail para pedirles el favor si
me pueden ayudar con un error que esta presentando el
computador donde tengo instalado RedHat 9, el equipo
venia trabajando normalmente y tuvimos que cambiar de
direccionamiento IP, inicialmente trabajabamos con la
192.9.201.xxx con mascara de red 255.255.255.0,
cambiamos a 10.0.x.xxx con mascara 255.255.252.0.
Luego de hacer este cambio en el computador pidio que
se reiniciara y cuando volvio a cargar sistema
operativo presenta el mesaje de error que adjunto al
email y no carga la parte grafica. Afortunadamente
tenia instalado el Webmin y por ahi estoy
administrandolo pero hay que cosas que no puedo hacer
por este modulo y necesito que vuelva cargar la parte
grafica el servidor.

Muchas gracias

Anexo mensaje error.

XFree86.0.log




_
Do You Yahoo!?
Información de Estados Unidos y América Latina, en Yahoo! Noticias.
Visítanos en http://noticias.espanol.yahoo.comXFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 
20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu May 19 15:15:37 2005
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout es
(**) XKB: layout: es
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card , rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 05 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 05 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,244b card 0e11,2411 rev 05 class 01,01,80 hdr 00
(II) PCI: 00:1f:2: chip 8086,2442 card 0e11,2411 rev 05 class 0c,03,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2445 card 0e11,008a rev 05 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,002c card 10de,0072 rev 15 class 03,00,00 hdr 00
(II) PCI: 02:08:0: chip 8086,2449 card 0e11,0012 rev 03 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000e (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xfd00 - 0xfe1f (0x120) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xf5e0 - 0xf7ff (0x220) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0   0x1000 - 0x10ff (0x100) 

Re: [XFree86] Error

2005-04-27 Thread Mark Vojkovich
 In the /etc/X11/XF86Config file, replace Driver vesa with Driver mga.

Mark.

On Tue, 26 Apr 2005, Jorge Alejandro Adell wrote:

 Slackware 9.1
 Kernel 2.4.30.

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error

2005-04-26 Thread Jorge Alejandro Adell
Slackware 9.1
Kernel 2.4.30.


XFree86.0.log
Description: Binary data


[XFree86] Error configuring the client.

2005-03-22 Thread Amin Sakarwala








Dear Sir,



I am using your product of Xwindows
remote booting bios with Win2003 Server. I dont know much about the
product. I have two clients, one get connected. But on the other client
following error occurs : Error X is not Running Check Config Press Enter to continues.

Pl provide helpful tip to configure.



Regards

Amin Sakarwala








[XFree86] Error starting RedHat

2005-03-15 Thread Aleem Muhammad
Hi,
I am installing RedHat linux AS but running into few problems. During
the installation if I click on 'test settings' for the Display it's
just blank screen. Below are the errors in log files

(EE) R128(0) ChipID 0*5050 is not recognized
(EE) Screen(s) Found, but none have a usable configuration

Fatal Server error 
no screens found.

Any help would be appreciated.
Note: I can use same machine and install RedHat 8.0 and everything
will work but AS is causing issues.
Thanks, aleem
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error !!! help

2005-02-27 Thread
xfree86
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 

20030222 (Red Hat Linux
 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: /dev/null, Time: Mon Feb 28 08:40:53 2005
(++) Using config file: /tmp/@31776.0xf86config
(WW) ATI(0): Failed to set up write-combining range (0xfc00,0x40)
(WW) ATI(0): Failed to set up write-combining range (0xfc00,0x40)
Could not init font path element unix/:7100, removing from list!

Fatal server error:
could not open default font 'fixed'

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /dev/null.
Please report problems to [EMAIL PROTECTED]







[EMAIL PROTECTED]
2005-02-28



___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error need solution

2005-02-08 Thread janaki raman
Red Hat Linux release 9 (Shrike)Kernel 2.4.20-8smp on an i686login: vjrtrmPassword:[EMAIL PROTECTED] vjrtrm]# startx
Fatal server error:Server is already active for display 0 If this server is no longer running, remove /tmp/.X0-lock and start again.
When reporting a problem related to a server crash, please sendthe full server output, not just the last messages.Please report problems to xfree86@xfree86.org.
[EMAIL PROTECTED] vjrtrm]# remove /tmp/.X0-lockbash: remove: command not found[EMAIL PROTECTED] vjrtrm]# ping xfree86@xfree86.orgping: unknown host xfree86@xfree86.org[EMAIL PROTECTED] vjrtrm]#
		Do you Yahoo!? 
Yahoo! Search presents - Jib Jab's 'Second Term'

[XFree86] error while compiling xfree86 4.4.0

2005-01-02 Thread James Thogmartin








After about an hour or so of installing xfree86 4.4.0, I get
an error that says:



c++ -c -I../nurbtess
-I../../libutil
-I../../include
-I../../../../include -I../../../../include/GL -I../../../..
-I../../../../exports/include -Dlinux -D__i386__
-D_POSIX_C_SOURCE=199309L -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE -D_EXTENSIONS_
-DLIBRARYBUILD -DNDEBUG -O2 -fno-strength-reduce arc.cc -o
unshared/arc.o

/bin/sh: c++: command not found

make[5]: *** [arc.o] Error 127

make[5]: Leaving directory
`/root/xc/lib/GLU/libnurbs/internals'

make[4]: *** [libnurbs/internals] Error 2

make[4]: Leaving directory `/root/xc/lib/GLU'

make[3]: *** [all] Error 2

make[3]: Leaving directory `/root/xc/lib'

make[2]: *** [all] Error 2

make[2]: Leaving directory `/root/xc'

make[1]: *** [World] Error 2

make[1]: Leaving directory `/root/xc'

make: *** [World] Error 2

cryptic-networks:~/xc#



I am running debian 3.0, with the 2.2.20 kernel, and after
doing a search for c++ I found that I dont have it. However,
when I looked for it using apt-get, c++ brought up thousands of results.. does
anyone know what debian package I need to get in order for c++ to work? I heard
its a compiler, and that cpp will do the same thing, (and I have cpp) so
I tried making an alias for cpp by doing alias c++=cpp 
but that didnt work, because after I ran make World, I got the same
exact error.



I would rather compile the source for xfree86, because I am
running it on a dell latitude c610, and I think itd be easier to get it
to work if it were compiled on the same system its going to be run on.



Any help with this would be greatly appreciated.



Thanks,



James





Computers are like air conditioners. They don't work
properly if you open Windows.










Re: [XFree86] error while compiling xfree86 4.4.0

2005-01-02 Thread Grant Sewell
On Sun, 2 Jan 2005 20:12:09 -0800
James Thogmartin wrote:

 /bin/sh: c++: command not found
 
 I am running debian 3.0, with the 2.2.20 kernel, and after doing a search
 for 'c++' I found that I don't have it. However, when I looked for it using
 apt-get, c++ brought up thousands of results.. does anyone know what debian
 package I need to get in order for c++ to work? I heard it's a compiler, and
 that cpp will do the same thing, (and I have cpp) so I tried making an alias
 for cpp by doing 'alias c++='cpp' ' but that didn't work, because after I
 ran make World, I got the same exact error.
 

Since we're talking about C++ here, I can presume that what's on my plain ol' 
Debian Sid should be the same as what you're looking for on your Debian stable.

[EMAIL PROTECTED]:~$ whereis c++
c++: /usr/bin/c++ /usr/include/c++ /usr/share/man/man1/c++.1.gz

[EMAIL PROTECTED]:~$ ll /usr/bin/c++
lrwxrwxrwx  1 root root 21 2004-10-20 17:49 /usr/bin/c++ - 
/etc/alternatives/c++

[EMAIL PROTECTED]:~$ ll /etc/alternatives/c++
lrwxrwxrwx  1 root root 12 2004-11-14 23:20 /etc/alternatives/c++ - 
/usr/bin/g++

[EMAIL PROTECTED]:~$ apt-cache --names-only search g++|grep -i g++
g++ - The GNU C++ compiler
g++-2.95 - The GNU C++ compiler
g++-3.2 - The GNU C++ compiler
g++-3.3 - The GNU C++ compiler
g++-3.4 - The GNU C++ compiler
gcc-2.95-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.3-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.4-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-doc - Documentation for the GNU C compilers (gcc, gobjc, g++)
libg++2.8.1.3-dbg - The GNU C++ extension library - debugging files
libg++2.8.1.3-dev - The GNU C++ extension library - development files
libg++2.8.1.3-glibc2.2 - The GNU C++ extension library - runtime version
libg++27 - The GNU C++ libraries (libc5 version)
libg++27-altdev - The GNU C++ libraries (libc5 version)
pocketpc-g++ - The GNU C++ compiler for Pocket PC

The programme /usr/bin/c++ is a symbolic link to /etc/alternatives/c++, 
which is a symbolic link to /usr/bin/g++, which is provided by the package 
g++.  I am unsure of the current version in stable.

Hope this helps.

Grant.
-- 
Unix:  Some say the learning curve is steep, but you only have to climb it once.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] error while compiling xfree86 4.4.0

2005-01-02 Thread James Thogmartin
I think it is going to work now :) even made sure c++ showed up in
/etc/alternatives

Thanks man :)

Although I'm sorry to say, I wont be of much help to you with your game pad
issue :/

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Grant Sewell
Sent: Sunday, January 02, 2005 6:45 PM
To: xfree86@XFree86.Org
Subject: Re: [XFree86] error while compiling xfree86 4.4.0

On Sun, 2 Jan 2005 20:12:09 -0800
James Thogmartin wrote:

 /bin/sh: c++: command not found
 
 I am running debian 3.0, with the 2.2.20 kernel, and after doing a search
 for 'c++' I found that I don't have it. However, when I looked for it
using
 apt-get, c++ brought up thousands of results.. does anyone know what
debian
 package I need to get in order for c++ to work? I heard it's a compiler,
and
 that cpp will do the same thing, (and I have cpp) so I tried making an
alias
 for cpp by doing 'alias c++='cpp' ' but that didn't work, because after I
 ran make World, I got the same exact error.
 

Since we're talking about C++ here, I can presume that what's on my plain
ol' Debian Sid should be the same as what you're looking for on your Debian
stable.

[EMAIL PROTECTED]:~$ whereis c++
c++: /usr/bin/c++ /usr/include/c++ /usr/share/man/man1/c++.1.gz

[EMAIL PROTECTED]:~$ ll /usr/bin/c++
lrwxrwxrwx  1 root root 21 2004-10-20 17:49 /usr/bin/c++ -
/etc/alternatives/c++

[EMAIL PROTECTED]:~$ ll /etc/alternatives/c++
lrwxrwxrwx  1 root root 12 2004-11-14 23:20 /etc/alternatives/c++ -
/usr/bin/g++

[EMAIL PROTECTED]:~$ apt-cache --names-only search g++|grep -i g++
g++ - The GNU C++ compiler
g++-2.95 - The GNU C++ compiler
g++-3.2 - The GNU C++ compiler
g++-3.3 - The GNU C++ compiler
g++-3.4 - The GNU C++ compiler
gcc-2.95-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.3-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.4-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-doc - Documentation for the GNU C compilers (gcc, gobjc, g++)
libg++2.8.1.3-dbg - The GNU C++ extension library - debugging files
libg++2.8.1.3-dev - The GNU C++ extension library - development files
libg++2.8.1.3-glibc2.2 - The GNU C++ extension library - runtime version
libg++27 - The GNU C++ libraries (libc5 version)
libg++27-altdev - The GNU C++ libraries (libc5 version)
pocketpc-g++ - The GNU C++ compiler for Pocket PC

The programme /usr/bin/c++ is a symbolic link to /etc/alternatives/c++,
which is a symbolic link to /usr/bin/g++, which is provided by the package
g++.  I am unsure of the current version in stable.

Hope this helps.

Grant.
-- 
Unix:  Some say the learning curve is steep, but you only have to climb it
once.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error in manual Building XFree86 from a Source Distribution

2004-12-31 Thread borisdusek
Hello,

I wanted to install XFree 4.4.0 from source and followed the Building XFree86 
from a Source Distribution manual at http://www.xfree.org/4.4.0/BUILD.html. In 
section 3. Using a shadow directory of symbolic links for the build, you 
discuss the usage of lndir. I followed the instructions step by step (using 
lndir already installed on my system - Debian unstable) and I found an error 
occuring - you should not have specified this:
cd the directory containing the xcdirectory
 mkdir build
 lndir ../xc

, which returns ../xc: No such file or directory, but you should have added 
line cd build before lndir command:

cd the directory containing the xcdirectory
 mkdir build
 cd build
 lndir ../xc


The problem was fixed by this modification.

Yours sincerely,

Boris Dusek
-
Pipojte se pes RazDva a vyberte si jednu z novch cen v Bonus Clubu. Vce na 
http://club.razdva.cz.


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error in manual Building XFree86 from a Source Distribution

2004-12-31 Thread Marc Aurele La France
On Fri, 31 Dec 2004 [EMAIL PROTECTED] wrote:
I wanted to install XFree 4.4.0 from source and followed the Building 
XFree86 from a Source Distribution manual at 
http://www.xfree.org/4.4.0/BUILD.html. In section 3. Using a shadow 
directory of symbolic links for the build, you discuss the usage of 
lndir. I followed the instructions step by step (using lndir already 
installed on my system - Debian unstable) and I found an error occuring - 
you should not have specified this:
cd the directory containing the xcdirectory
mkdir build
lndir ../xc

, which returns ../xc: No such file or directory, but you should have 
added line cd build before lndir command:

cd the directory containing the xcdirectory
mkdir build
cd build
lndir ../xc


The problem was fixed by this modification.
Quite right.  I have just committed a change to rectify this.  Thanks for 
pointing it out.

Marc.
+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re:[XFree86] ERROR startx fonts

2004-12-09 Thread [EMAIL PROTECTED]
 I'm having a problem starting X, I haven't done anything special and now it 
 doesn't start X any way.
 
 Fatal server error:
 could not open default font 'fixed'


I have the same problem,
I already read 
http://xfree86.linuxwiki.org/FAQ
but the solution method is not clear as it can appear,
I'm still facing to this problem :-(
Please post here if you find a solution.

/ken




Libero ADSL: 3 mesi gratis e navighi a 1.2 Mega, senza costi di attivazione.
Abbonati subito su http://www.libero.it



___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] ERROR startx fonts

2004-12-08 Thread miguel goyena gracia
I'm having a problem starting X, I haven't done anything special and now it 
doesn't start X any way.

My log archive is:
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).
XFree86 Version 4.3.0.1
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.3-3mdkenterprise i686 [ELF]
Build Date: 24 March 2004
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Dec  8 12:47:31 2004
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor monitor1
(**) |   |--Device device1
(**) |--Input Device Keyboard1
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout es
(**) XKB: layout: es
(WW) Option XkbOptions requires an string value
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Mouse1
(**) FontPath set to 
/usr/local/share/fonts,/usr/share/fonts,/usr/X11R6/lib/X11/fonts
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
Using vt 7
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.6
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8080, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3099 card 1043,807f rev 00 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 1106,b099 card , rev 00 class 06,04,00 hdr 
01
(II) PCI: 00:05:0: chip 13f6,0111 card 1043,80e2 rev 10 class 04,01,00 hdr 
00
(II) PCI: 00:09:0: chip 1106,3038 card 1043,8080 rev 50 class 0c,03,00 hdr 
80
(II) PCI: 00:09:1: chip 1106,3038 card 1043,8080 rev 50 class 0c,03,00 hdr 
80
(II) PCI: 00:09:2: chip 1106,3104 card 1043,8080 rev 51 class 0c,03,20 hdr 
80
(II) PCI: 00:0c:0: chip 127a,1025 card 127a,1025 rev 01 class 07,80,00 hdr 
00
(II) PCI: 00:0d:0: chip 1113,1216 card 10b8,1255 rev 11 class 02,00,00 hdr 
00
(II) PCI: 00:0e:0: chip 1274,5880 card 1274,8001 rev 04 class 04,01,00 hdr 
00
(II) PCI: 00:10:0: chip 109e,036e card 1461,0004 rev 11 class 04,00,00 hdr 
80
(II) PCI: 00:10:1: chip 109e,0878 card 1461,0004 rev 11 class 04,80,00 hdr 
80
(II) PCI: 00:11:0: chip 1106,3147 card 1043,808c rev 00 class 06,01,00 hdr 
80
(II) PCI: 00:11:1: chip 1106,0571 card 1043,808c rev 06 class 01,01,8a hdr 
00
(II) PCI: 00:11:2: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 
00
(II) PCI: 00:11:3: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 
00
(II) PCI: 01:00:0: chip 1002,4966 card 12ab,4966 rev 01 class 03,00,00 hdr 
00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xee00 - 0xee7f (0x80) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xeff0 - 0xf7ff (0x810) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI: (0:16:0) Brooktree Corporation Bt878 Video Capture rev 17, Mem @ 
0xef00/12
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon R250 If [Radeon 9000] rev 1, 
Mem @ 0xf000/27, 0xee00/16, I/O @ 0xd800/8, BIOS @ 0xeffe/17
(II) Addressable bus resource ranges are
	[0] -1	0	0x - 0x (0x0) MX[B]
	[1] -1	0	0x - 

Re: [XFree86] ERROR startx fonts

2004-12-08 Thread Mark Vojkovich
On Wed, 8 Dec 2004, miguel goyena gracia wrote:

 could not open default font 'fixed'


   This is answered in the FAQ:

http://xfree86.linuxwiki.org/FAQ


Mark.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error, XFree86.0.log enclosed

2004-12-05 Thread Meryll Larkin
12/5/04
My old computer (1999?) was showing signs of hardware failure (power 
supply weak - was turning itself off - happened 3 times - after first 
time I dusted, changed power cord - happened again).

So I transferred my hard drive to a Lindows machine my husband bought 
and determined he couldn't use (I added more RAM while I had the box open).

RedHat7.2 appeared to detect all my new hardware and all the services 
came up okay (the mouse and keyboard worked).  But I couldn't get 
XWindows to start.  I read the error message which said to upgrade to 
the correct version before sending in the logfile.  I did that.  I still 
can't get XWindows to start.  Here's the logfile.

BTW, I also ran fsck due to unclean shutdowns and fixed inode errors.
thank you for checking!
--
Meryll Larkin
(425) 823-1689
http://www.alwanza.com
Linux Apache Admin - Perl Programmer - Web Developer
WA, USA
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/Rattletooth:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
XFree86 Version 4.4.0
Release Date: 29 February 2004
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.18-14 i686 [ELF]
Current Operating System: Linux Rattletooth 2.4.18-14 #1 Wed Sep 4 
13:35:50 EDT 2002 i686
Build Date: 27 February 2004
Changelog Date: 29 February 2004
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Sun Dec  5 13:17:04 2004
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Intel 810
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel dell101
(**) XKB: model: dell101
(**) Option XkbLayout us
(**) XKB: layout: us
(**) Option XkbVariant basic
(**) XKB: variant: basic
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(II) Open APM successful
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.7
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
	compiled for 4.4.0, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
	compiled for 4.4.0, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.7
(--) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x80008864, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3116 card 1106, rev 00 class 06,00,00 
hdr 00
(II) PCI: 00:01:0: chip 1106,b091 card , rev 00 class 06,04,00 
hdr 01
(II) PCI: 00:10:0: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 
hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 
hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 
hdr 80
(II) PCI: 00:10:3: chip 1106,3104 card 1106,3104 rev 82 class 0c,03,20 
hdr 00
(II) PCI: 00:11:0: chip 1106,3177 card 1106, rev 00 class 06,01,00 
hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1106,0571 rev 06 class 01,01,8a 
hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 1106,4161 rev 50 class 04,01,00 
hdr 00
(II) PCI: 00:11:6: chip 1106,3068 card 1543,4c21 rev 80 class 07,80,00 
hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1106,0102 rev 74 class 02,00,00 
hdr 00
(II) PCI: 01:00:0: chip 5333,8d04 card 5333,8d04 rev 00 class 03,00,00 
hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xdfd0 - 0xdfef (0x20) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xcfc0 - 0xdfbf (0x1000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is 

Re: [XFree86] error, XFree86.0.log enclosed

2004-12-05 Thread Mark Vojkovich
  You appear to be trying to use the i810 driver (for integrated
Intel graphics) while you actually have an S3 Savage graphics chip.
I believe there is a dedicated savage driver.

Mark.

On Sun, 5 Dec 2004, Meryll Larkin wrote:

 12/5/04

 My old computer (1999?) was showing signs of hardware failure (power
 supply weak - was turning itself off - happened 3 times - after first
 time I dusted, changed power cord - happened again).

 So I transferred my hard drive to a Lindows machine my husband bought
 and determined he couldn't use (I added more RAM while I had the box open).

 RedHat7.2 appeared to detect all my new hardware and all the services
 came up okay (the mouse and keyboard worked).  But I couldn't get
 XWindows to start.  I read the error message which said to upgrade to
 the correct version before sending in the logfile.  I did that.  I still
 can't get XWindows to start.  Here's the logfile.

 BTW, I also ran fsck due to unclean shutdowns and fixed inode errors.

 thank you for checking!

 --
 Meryll Larkin
 (425) 823-1689
 http://www.alwanza.com
 Linux Apache Admin - Perl Programmer - Web Developer
 WA, USA


 _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
 _XSERVTransOpen: transport open failed for inet6/Rattletooth:0
 _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

 XFree86 Version 4.4.0
 Release Date: 29 February 2004
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: Linux 2.4.18-14 i686 [ELF]
 Current Operating System: Linux Rattletooth 2.4.18-14 #1 Wed Sep 4
 13:35:50 EDT 2002 i686
 Build Date: 27 February 2004
 Changelog Date: 29 February 2004
   Before reporting problems, check http://www.XFree86.Org/
   to make sure that you have the latest version.
 Module Loader present
 Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/XFree86.0.log, Time: Sun Dec  5 13:17:04 2004
 (==) Using config file: /etc/X11/XF86Config
 (==) ServerLayout Anaconda Configured
 (**) |--Screen Screen0 (0)
 (**) |   |--Monitor Monitor0
 (**) |   |--Device Intel 810
 (**) |--Input Device Mouse0
 (**) |--Input Device Keyboard0
 (**) Option XkbRules xfree86
 (**) XKB: rules: xfree86
 (**) Option XkbModel dell101
 (**) XKB: model: dell101
 (**) Option XkbLayout us
 (**) XKB: layout: us
 (**) Option XkbVariant basic
 (**) XKB: variant: basic
 (==) Keyboard: CustomKeycode disabled
 (**) FontPath set to unix/:7100
 (**) RgbPath set to /usr/X11R6/lib/X11/rgb
 (==) ModulePath set to /usr/X11R6/lib/modules
 (II) Open APM successful
 (II) Module ABI versions:
   XFree86 ANSI C Emulation: 0.2
   XFree86 Video Driver: 0.7
   XFree86 XInput driver : 0.4
   XFree86 Server Extension : 0.2
   XFree86 Font Renderer : 0.4
 (II) Loader running on linux
 (II) LoadModule: bitmap
 (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
 (II) Module bitmap: vendor=The XFree86 Project
   compiled for 4.4.0, module version = 1.0.0
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
 (II) Loading font Bitmap
 (II) LoadModule: pcidata
 (II) Loading /usr/X11R6/lib/modules/libpcidata.a
 (II) Module pcidata: vendor=The XFree86 Project
   compiled for 4.4.0, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.7
 (--) using VT number 7

 (II) PCI: Probing config type using method 1
 (II) PCI: Config type is 1
 (II) PCI: stages = 0x03, oldVal1 = 0x80008864, mode1Res1 = 0x8000
 (II) PCI: PCI scan (all values are in hex)
 (II) PCI: 00:00:0: chip 1106,3116 card 1106, rev 00 class 06,00,00
 hdr 00
 (II) PCI: 00:01:0: chip 1106,b091 card , rev 00 class 06,04,00
 hdr 01
 (II) PCI: 00:10:0: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00
 hdr 80
 (II) PCI: 00:10:1: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00
 hdr 80
 (II) PCI: 00:10:2: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00
 hdr 80
 (II) PCI: 00:10:3: chip 1106,3104 card 1106,3104 rev 82 class 0c,03,20
 hdr 00
 (II) PCI: 00:11:0: chip 1106,3177 card 1106, rev 00 class 06,01,00
 hdr 80
 (II) PCI: 00:11:1: chip 1106,0571 card 1106,0571 rev 06 class 01,01,8a
 hdr 00
 (II) PCI: 00:11:5: chip 1106,3059 card 1106,4161 rev 50 class 04,01,00
 hdr 00
 (II) PCI: 00:11:6: chip 1106,3068 card 1543,4c21 rev 80 class 07,80,00
 hdr 00
 (II) PCI: 00:12:0: chip 1106,3065 card 1106,0102 rev 74 class 02,00,00
 hdr 00
 (II) PCI: 01:00:0: chip 5333,8d04 card 5333,8d04 rev 00 class 03,00,00
 hdr 00
 (II) PCI: End of PCI scan
 (II) Host-to-PCI bridge:
 (II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
 (II) Bus 0 I/O range:
   [0] -1  0   0x - 0x (0x1) IX[B]
 (II) Bus 0 non-prefetchable memory range:
   [0] -1  0   0x - 0x (0x0) MX[B]
 (II) Bus 0 

Re: [XFree86] Error while starting the x server in suse linux 9.0

2004-11-29 Thread Anshaj Mathur
Thanks for looking into it. What do you thing could be the cutprit on
my box. Is it a suse linux bug.

Thanks 
Anshaj

On Fri, 26 Nov 2004 12:53:03 -0800 (PST), Mark Vojkovich
[EMAIL PROTECTED] wrote:
I see no error in that logfile.  The X-server itself seems to
 be starting fine.  There are alot of warnings, and the one about
 failure to setup the write combining range has serious performance
 consequences, but none of the warnings are fatal.
 
 Mark.
 
 
 
 On Fri, 26 Nov 2004, Anshaj Mathur wrote:
 
  Dear group
 
   I am getting the following error while starting x server on my suse
  linux 9.0. It was working till yesterday and I didn't change any
  configuration file. It is working for other users on my box. I am
  attaching the XFree86.0.log file with this mail.
 
  This is a pre-release version of XFree86, and is not supported in any
  way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
  to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
  please check the latest version in the XFree86 CVS repository
  (http://www.XFree86.Org/cvs).
 
  XFree86 Version 4.3.99.902 (4.4.0 RC 2)
  Release Date: 18 December 2003
  X Protocol Version 11, Revision 0, Release 6.6
  Build Operating System: SuSE Linux [ELF] SuSE
  Current Operating System: Linux sumit 2.6.5-7.111-default #1 Wed Oct
  13 15:45:13 UTC 2004 i686
  Build Date: 06 April 2004
  Changelog Date: 29 February 2004
  Before reporting problems, check http://www.XFree86.Org/
  to make sure that you have the latest version.
  Module Loader present
  Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
  (==) Log file: /var/log/XFree86.0.log, Time: Fri Nov 26 14:36:12 2004
  (==) Using config file: /etc/X11/XF86Config
  (WW) I810(0): Failed to set up write-combining range (0xf000,0x800)
  Could not init font path element /usr/X11R6/lib/X11/fonts/local,
  removing from list!
  Could not init font path element /usr/X11R6/lib/X11/fonts/CID,
  removing from list!
  waiting for X server to shut down
 
  Thanks for your help
 
  Anshaj
  --
  Normal people believe that if it ain't broke, don't fix it. Engineers
  believe that if it ain't broke, it doesn't have enough features yet.
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 


-- 
Normal people believe that if it ain't broke, don't fix it. Engineers
believe that if it ain't broke, it doesn't have enough features yet.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error

2004-11-29 Thread Mark Vojkovich
On Mon, 29 Nov 2004, serkan eminoglu wrote:

 (EE) FIREGL2(0): Given depth (16) is not supported by this driver

   The answer was in the logfile.  Try depth 24 instead.


Mark.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error while starting the x server in suse linux 9.0

2004-11-26 Thread Mark Vojkovich
   I see no error in that logfile.  The X-server itself seems to
be starting fine.  There are alot of warnings, and the one about
failure to setup the write combining range has serious performance
consequences, but none of the warnings are fatal.


Mark.

On Fri, 26 Nov 2004, Anshaj Mathur wrote:

 Dear group

  I am getting the following error while starting x server on my suse
 linux 9.0. It was working till yesterday and I didn't change any
 configuration file. It is working for other users on my box. I am
 attaching the XFree86.0.log file with this mail.

 This is a pre-release version of XFree86, and is not supported in any
 way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
 to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
 please check the latest version in the XFree86 CVS repository
 (http://www.XFree86.Org/cvs).

 XFree86 Version 4.3.99.902 (4.4.0 RC 2)
 Release Date: 18 December 2003
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: SuSE Linux [ELF] SuSE
 Current Operating System: Linux sumit 2.6.5-7.111-default #1 Wed Oct
 13 15:45:13 UTC 2004 i686
 Build Date: 06 April 2004
 Changelog Date: 29 February 2004
 Before reporting problems, check http://www.XFree86.Org/
 to make sure that you have the latest version.
 Module Loader present
 Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/XFree86.0.log, Time: Fri Nov 26 14:36:12 2004
 (==) Using config file: /etc/X11/XF86Config
 (WW) I810(0): Failed to set up write-combining range (0xf000,0x800)
 Could not init font path element /usr/X11R6/lib/X11/fonts/local,
 removing from list!
 Could not init font path element /usr/X11R6/lib/X11/fonts/CID,
 removing from list!
 waiting for X server to shut down

 Thanks for your help

 Anshaj
 --
 Normal people believe that if it ain't broke, don't fix it. Engineers
 believe that if it ain't broke, it doesn't have enough features yet.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error for XFree

2004-11-03 Thread postravi
o.k.
There looks to be a problem with the mouse. Send the
/etc/X11/XF86Config to the list.
also try 
XFree86 -configure 
and test with the new configuration. 

I have installed Mandrake 10.0 official ,
at LILO i get graphics screen but after selecting
proper
devices also i am not getting graphics screen

Parameters given at installation time:
Monitor=Samsung Samtron 40Bn
Vendor=SiS
resolution=800 X 600 16bpp

Automatic X is alos not loading after booting
Errors=
1.No core pointer device specified
2.Unable to determine screen layout
3.Error from XF86HandleConfigFile()
4.Fatal server Error
  No screens found

attaching log and configuration file
/var/log/XFree86.0.log as sisxfreelog.txt
/etc/X11/XF86Config-4 as XF86Config-4
-- 


Odi is an imbecile untill further notice -Garfield.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error encountered while starting Linux

2004-11-03 Thread Jallapuram Srikanth-A21221
Title: Message



Encountered 
following error. Please help in debug.

thanks,
srikanth




$startx

XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window 
Syst(protocol Version 11, revision 0, vendor release 6600)Release Date: 
23 January 2002 If the server is 
older than 6-12 months, or if your card 
is newer than the above date, look 
for a newer version before 
reporting problems. (See http://www.XFree86.Org/)Build Operating 
System: Linux 2.4.18-11smp i686 [ELF]Build Host: daffy.perf.redhat.com

Module Loader presentOS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED]ersion 
3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDMarkers: 
(--) probed, (**) from config file, (==) default 
setting, (++) from command 
line, (!!) notice, (II) 
informational, (WW) warning, 
(EE) error, (NI) not implemented, (??) unknown.(==) Log file: 
"/var/log/XFree86.0.log", Time: Wed Nov 3 15:49:13 2004(==) Using 
config file: "/etc/X11/XF86Config"(EE) Screen(s) found, but none have a 
usable configuration.

Fatal server error:no screens found

When reporting a problem related to a server crash, please sendthe full 
server output, not just the last messages.This can be found in the log file 
"/var/log/XFree86.0.log".Please report problems to [EMAIL PROTECTED].

XIO: fatal IO error 104 (Connection reset by peer) on X server 
":0.0" after 0 requests (0 known processed) 
with 0 events remaining.


Re: [XFree86] Error encountered while starting Linux

2004-11-03 Thread Mark Vojkovich
   You need to send your /var/log/XFree86.0.log to this list as
the message says.

Mark.

On Wed, 3 Nov 2004, Jallapuram Srikanth-A21221 wrote:

 Encountered following error. Please help in debug.

 thanks,
 srikanth




 $startx


 XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window Syst
 (protocol Version 11, revision 0, vendor release 6600)
 Release Date: 23 January 2002
 If the server is older than 6-12 months, or if your card is
 newer than the above date, look for a newer version before
 reporting problems.  (See http://www.XFree86.Org/ http://www.XFree86.Org/ )
 Build Operating System: Linux 2.4.18-11smp i686 [ELF]
 Build Host: daffy.perf.redhat.com

 Module Loader present
 OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 ersion 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 ED
 Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/XFree86.0.log, Time: Wed Nov  3 15:49:13 2004
 (==) Using config file: /etc/X11/XF86Config
 (EE) Screen(s) found, but none have a usable configuration.

 Fatal server error:
 no screens found

 When reporting a problem related to a server crash, please send
 the full server output, not just the last messages.
 This can be found in the log file /var/log/XFree86.0.log.
 Please report problems to [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] .

 XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
   after 0 requests (0 known processed) with 0 events remaining.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error for XFree

2004-10-31 Thread vinit Agnihotri
I have installed Mandrake 10.0 official ,
at LILO i get graphics screen but after selecting
proper
devices also i am not getting graphics screen

Parameters given at installation time:
Monitor=Samsung Samtron 40Bn
Vendor=SiS
resolution=800 X 600 16bpp

Automatic X is alos not loading after booting
Errors=
1.No core pointer device specified
2.Unable to determine screen layout
3.Error from XF86HandleConfigFile()
4.Fatal server Error
  No screens found

attaching log and configuration file
/var/log/XFree86.0.log as sisxfreelog.txt
/etc/X11/XF86Config-4 as XF86Config-4



___
Do you Yahoo!?
Express yourself with Y! Messenger! Free. Download now. 
http://messenger.yahoo.com
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.3-3mdkenterprise i686 [ELF] 
Build Date: 24 March 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Jul 17 18:00:03 2001
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor monitor1
(**) |   |--Device device1
(**) |--Input Device Keyboard1
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us_intl
(**) XKB: layout: us_intl
(WW) Option XkbOptions requires an string value
(==) Keyboard: CustomKeycode disabled
(EE) No core pointer device specified
(EE) Unable to determine the screen layout
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]


Section Module
Load glx # 3D layer
EndSection

Section InputDevice
Identifier Keyboard1
Driver Keyboard
Option XkbModel pc105
Option XkbLayout us_intl
Option XkbOptions 
EndSection

Section Monitor
Identifier monitor1
VendorName Plug'n Play
ModelName Samsung Samtron 40Bn
HorizSync 30-55
VertRefresh 50-120

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine 1024x48065.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine 768x576 50.00  768  832  846 1000   576  590  595  630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine 768x576 63.07  768  800  960 1024   576  578  590  616
EndSection

Section Device
Identifier device1
BoardName SiS
Driver sis
Option DPMS
EndSection

Section Screen
Identifier screen1
Device device1
Monitor monitor1
DefaultColorDepth 16

Subsection Display
Depth 8
Virtual 800 600
EndSubsection

Subsection Display
Depth 15
Virtual 800 600
EndSubsection

Subsection Display
Depth 16
Virtual 800 600
EndSubsection

Subsection Display
Depth 24
Virtual 800 600
EndSubsection
EndSection

Section ServerLayout
Identifier layout1
InputDevice Keyboard1 CoreKeyboard
Screen screen1
EndSection


[XFree86] Error for XFree

2004-10-31 Thread vinit Agnihotri






__
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail ---BeginMessage---
I have installed Mandrake 10.0 official ,
at LILO i get graphics screen but after selecting
proper
devices also i am not getting graphics screen

Parameters given at installation time:
Monitor=Samsung Samtron 40Bn
Vendor=SiS
resolution=800 X 600 16bpp

Automatic X is alos not loading after booting
Errors=
1.No core pointer device specified
2.Unable to determine screen layout
3.Error from XF86HandleConfigFile()
4.Fatal server Error
  No screens found

attaching log and configuration file
/var/log/XFree86.0.log as sisxfreelog.txt
/etc/X11/XF86Config-4 as XF86Config-4



___
Do you Yahoo!?
Express yourself with Y! Messenger! Free. Download now. 
http://messenger.yahoo.com
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.3-3mdkenterprise i686 [ELF] 
Build Date: 24 March 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Jul 17 18:00:03 2001
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor monitor1
(**) |   |--Device device1
(**) |--Input Device Keyboard1
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us_intl
(**) XKB: layout: us_intl
(WW) Option XkbOptions requires an string value
(==) Keyboard: CustomKeycode disabled
(EE) No core pointer device specified
(EE) Unable to determine the screen layout
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]


Section Module
Load glx # 3D layer
EndSection

Section InputDevice
Identifier Keyboard1
Driver Keyboard
Option XkbModel pc105
Option XkbLayout us_intl
Option XkbOptions 
EndSection

Section Monitor
Identifier monitor1
VendorName Plug'n Play
ModelName Samsung Samtron 40Bn
HorizSync 30-55
VertRefresh 50-120

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine 1024x48065.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine 768x576 50.00  768  832  846 1000   576  590  595  630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine 768x576 63.07  768  800  960 1024   576  578  590  616
EndSection

Section Device
Identifier device1
BoardName SiS
Driver sis
Option DPMS
EndSection

Section Screen
Identifier screen1
Device device1
Monitor monitor1
DefaultColorDepth 16

Subsection Display
Depth 8
Virtual 800 600
EndSubsection

Subsection Display
Depth 15
Virtual 800 600
EndSubsection

Subsection Display
Depth 16
Virtual 800 600
EndSubsection

Subsection Display
Depth 24
Virtual 800 600
EndSubsection
EndSection

Section ServerLayout
Identifier layout1
InputDevice Keyboard1 CoreKeyboard
Screen screen1
EndSection
---End Message---


[XFree86] error while loading shared libraries: libz.so.1

2004-10-25 Thread David
 



I am getting some errors while installing the xFree86 4.4. I ran the Xinstall.sh install script, all the .tgz packages were unpacked. However, I cannot run any of the utilities, even to create a config file.I have Debian 3.0 on my laptop (IBM T22, Savage-IX) Any hints will be massively appreciated?thanksErrors:*Running ldconfigUpdating the fonts.dir file in/usr/X11R6/lib/X11/fonts/local.../usr/X11R6/bin/mkfontscale:error while loading shared libraries: libz.so.1:cannot open shared object file: No such file ordirectoryUpdating the fonts.dir file in/usr/X11R6/lib/X11/fonts/misc.../usr/X11R6/bin/mkfontscale:error while loading shared libraries: libz.so.1:cannot open shared object file: No such file ordirectory*After the install, when running any newly installed X program (i.e. xf86cfg or XFree86 -configure )
  I get the same error:*X: error while loading shared libraries: libz.so.1:cannot open shared object file: No such file or directory*Join Excite! - http://www.excite.comThe most personalized portal on the Web!


[XFree86] error while loading shared libraries: libz.so.1

2004-10-25 Thread David
 I am getting some errors while installing the xFree86 4.4. I ran the Xinstall.sh install script, all the .tgz packages were unpacked. However, I cannot run any of the utilities, even to create a config file.I have Debian 3.0 on my laptop (IBM ThinkPad T22)The Video card on my laptop is Savage/IX-MVMy Linux distribution is Linux-ix86-glibc22 Any hints will be massively appreciated?Thanks a ton. David.Errors:*Running ldconfigUpdating the fonts.dir file in/usr/X11R6/lib/X11/fonts/local.../usr/X11R6/bin/mkfontscale:error while loading shared libraries: libz.so.1:cannot open shared object file: No such file ordirectoryUpdating the fonts.dir file in/usr/X11R6/lib/X11/fonts/misc.../usr/X11R6/bin/mkfontscale:error while loading shared libraries: libz.
 so.1:cannot open shared object file: No such file ordirectory*After the install, when running any newly installed X program (i.e. xf86cfg or XFree86 -configure ) I get the same error:*X: error while loading shared libraries: libz.so.1:cannot open shared object file: No such file or directory*Join Excite! - http://www.excite.comThe most personalized portal on the Web!


[XFree86] Error install RedHat 2.1 A.S.

2004-10-03 Thread jurads


I have install redhat 2.1. A.S. in vmware for windows. My video controller is GEForce 2MX. 
It follows attached error.

Thanks,
Jura

XFree86.0.log
Description: Binary data


Re: [XFree86] Error install RedHat 2.1 A.S.

2004-10-03 Thread Mark Vojkovich
  No NVIDIA devices are visible to XFree86.  I thought there was an XFree86
vmware driver just for this, though maybe not with such an old version
of XFree86.   Anyhow, get rid of Driver nv in the XF86Config file
and try Driver vmware.

Mark.

On Sun, 3 Oct 2004, jurads wrote:

 I have install redhat 2.1. A.S. in vmware for windows. My video controller is 
 GEForce 2MX.
 It follows attached error.

 Thanks,
 Jura
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error report ...

2004-09-25 Thread Girish H V
hello , 
attached wit hthis mail is the error report i got when i tried to
'xinit' on my system ..
can yu please give me directions to solve this problem?
it says font 'fixed' not found 

-- 
Take Care
Girish


XFree86.0.log
Description: Binary data


[XFree86] Error in Xserver

2004-09-17 Thread Anup Shah
Hi,
I face a problem in stating the xserver in my Linux9.0.
Please find attached report beloew to see the error at the end.

Please help me to resolve this issue.

Thanks and regards,
Anup
- Original Message - 
From: root [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 17, 2004 5:10 PM



 XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
 Release Date: 27 February 2003
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
 Build Date: 27 February 2003
 Build Host: porky.devel.redhat.com

 Before reporting problems, check http://www.XFree86.Org/
 to make sure that you have the latest version.
 Module Loader present
 OS Kernel: Linux version 2.4.20-6 ([EMAIL PROTECTED])
(gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Feb 27 10:01:19
EST 2003 P
 Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/XFree86.0.log, Time: Fri Sep 17 17:08:33 2004
 (==) Using config file: /etc/X11/XF86Config
 (==) ServerLayout Default Layout
 (**) |--Screen Screen0 (0)
 (**) |   |--Monitor Monitor0
 (**) |   |--Device Videocard0
 (**) |--Input Device Mouse0
 (**) |--Input Device Keyboard0
 (**) Option XkbRules xfree86
 (**) XKB: rules: xfree86
 (**) Option XkbModel pc105
 (**) XKB: model: pc105
 (**) Option XkbLayout us
 (**) XKB: layout: us
 (==) Keyboard: CustomKeycode disabled
 (**) |--Input Device DevInputMice
 (**) FontPath set to unix/:7100
 (**) RgbPath set to /usr/X11R6/lib/X11/rgb
 (==) ModulePath set to /usr/X11R6/lib/modules
 (--) using VT number 7

 (II) Open APM successful
 (II) Module ABI versions:
 XFree86 ANSI C Emulation: 0.2
 XFree86 Video Driver: 0.6
 XFree86 XInput driver : 0.4
 XFree86 Server Extension : 0.2
 XFree86 Font Renderer : 0.4
 (II) Loader running on linux
 (II) LoadModule: bitmap
 (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
 (II) Module bitmap: vendor=The XFree86 Project
 compiled for 4.3.0, module version = 1.0.0
 Module class: XFree86 Font Renderer
 ABI class: XFree86 Font Renderer, version 0.4
 (II) Loading font Bitmap
 (II) LoadModule: pcidata
 (II) Loading /usr/X11R6/lib/modules/libpcidata.a
 (II) Module pcidata: vendor=The XFree86 Project
 compiled for 4.3.0, module version = 1.0.0
 ABI class: XFree86 Video Driver, version 0.6
 (II) PCI: Probing config type using method 1
 (II) PCI: Config type is 1
 (II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
 (II) PCI: PCI scan (all values are in hex)
 (II) PCI: 00:00:0: chip 1002,cab0 card , rev 13 class 06,00,00 hdr
00
 (II) PCI: 00:01:0: chip 1002,700f card , rev 01 class 06,04,00 hdr
01
 (II) PCI: 00:07:0: chip 10b9,1533 card 10b9,1533 rev 00 class 06,01,00 hdr
00
 (II) PCI: 00:08:0: chip 10b9,5451 card 161f,2029 rev 02 class 04,01,00 hdr
00
 (II) PCI: 00:09:0: chip 10b9,5457 card 161f,2027 rev 00 class 07,03,00 hdr
00
 (II) PCI: 00:0a:0: chip 104c,ac41 card 4000, rev 02 class 06,07,00 hdr
82
 (II) PCI: 00:0a:1: chip 104c,8017 card 161f,2029 rev 02 class 0c,00,10 hdr
80
 (II) PCI: 00:0d:0: chip 1033,0035 card 161f,2029 rev 43 class 0c,03,10 hdr
80
 (II) PCI: 00:0d:1: chip 1033,0035 card 161f,2029 rev 43 class 0c,03,10 hdr
00
 (II) PCI: 00:0d:2: chip 1033,00e0 card 161f,2029 rev 04 class 0c,03,20 hdr
00
 (II) PCI: 00:0e:0: chip 14e4,4401 card 161f,2029 rev 01 class 02,00,00 hdr
00
 (II) PCI: 00:10:0: chip 10b9,5229 card 161f,2029 rev c4 class 01,01,fa hdr
00
 (II) PCI: 00:11:0: chip 10b9,7101 card 161f,2029 rev 00 class 06,80,00 hdr
00
 (II) PCI: 01:05:0: chip 1002,4336 card 161f,2029 rev 00 class 03,00,00 hdr
00
 (II) PCI: 02:00:0: chip 104c,9066 card 010e,16ec rev 00 class 02,80,00 hdr
00
 (II) PCI: End of PCI scan
 (II) Host-to-PCI bridge:
 (II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
 (II) Bus 0 I/O range:
 [0] -1 0 0x - 0x (0x1) IX[B]
 (II) Bus 0 non-prefetchable memory range:
 [0] -1 0 0x - 0x (0x0) MX[B]
 (II) Bus 0 prefetchable memory range:
 [0] -1 0 0x - 0x (0x0) MX[B]
 (II) PCI-to-PCI bridge:
 (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
 (II) Bus 1 I/O range:
 [0] -1 0 0x9000 - 0x90ff (0x100) IX[B]
 [1] -1 0 0x9400 - 0x94ff (0x100) IX[B]
 [2] -1 0 0x9800 - 0x98ff (0x100) IX[B]
 [3] -1 0 0x9c00 - 0x9cff (0x100) IX[B]
 (II) Bus 1 non-prefetchable memory range:
 [0] -1 0 0xd010 - 0xd01f (0x10) MX[B]
 (II) Bus 1 prefetchable memory range:
 [0] -1 0 0xe000 - 0xefff (0x1000) MX[B]
 (II) PCI-to-ISA bridge:
 (II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is
set)
 (II) PCI-to-CardBus bridge:
 (II) Bus 2: bridge is at (0:10:0), (0,2,5), BCTRL: 0x0500 (VGA_EN is
cleared)
 (II) Bus 2 I/O range:
 [0] -1 0 0x4000 - 0x40ff (0x100) IX[B]
 [1] -1 0 

Re: [XFree86] error in xinerama mode ?

2004-09-02 Thread Mark Vojkovich
On Thu, 2 Sep 2004, kiwi wrote:


 hello,

 i have probe all this things,
 and attatch the conconfig file, and xfree86 log.

   None of them made the problem go away?  Even the NoAccel ?


 on this testing, i found a other thing,
 to make the eagle software stable,
 then i switch the  use always vector fonts  on,
 works software normaly, and i can scroll, zoom, work with this.

 what is it ?

   Not sure.  Maybe they mean drawing text with lines.  Or maybe
that just means they avoid bitmap fonts.  If NoAccel didn't
do anything, this would imply a font renderer problem.

Mark.


 and have a motziller a similar option ?

 thanks

 michael




 On Saturday 28 August 2004 22:19, Mark Vojkovich wrote:
  On Sat, 28 Aug 2004, kiwi wrote:
   i have the same problem with more than one pc,
   from my 4 pc's with with xinerama is on one pc all ok in xinerama mode.
   on all other, i have the same problem,
   the application eagle or mozilla hangs after scrolling,
   and in one of 20 hangs of software crash , hangs the xserver or the
   window manager.
  
   yes, i habe the same problem, without any window manager.
  
   when i say in my xfree86config
   Option  Xinerama  false
   working all software without any hangs on all screens.
  
  
  
   can you test the eagle software with you xserver ?
   the eagle software is an electronic circuits drawing programm from
   cardsoft http://www.cadsoft.de
   you can download the software from:
   ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g.tgz or as rpm :
   ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g-1.i386.rpm
   and after start:
   open: Projects -- examples -- hexapod -- hexapod.prd -- EAGLE HANGS!
   -- killall eagle
 
 This works fine for me.  I get a circuit diagram and I can move the
  window around and resize it without any problem.  This is running with
  two NVIDIA GeForce4 MX cards (one AGP and one PCI) in Xinerama.  Both
  are in 1600x1200 making a 3200x1200 desktop.  I tried this with both
  NVIDIA's binary driver and the nv driver that comes with XFree86 4.4.
 
 I suspect an mga driver bug or some other obscure problem.  Here are
  some things you can try:
 
  1)  Don't load the dri or glx modules in the XF86Config.  This
  would rule out a dri problem.
 
  2)  Try Option NoAccel for all cards.  This would rule out a driver
  acceleration problem.
 
  3)  Don't load the freetype module.  This would rule out a font renderer
  problem.
 
  4)  I notice the driver didn't autodetect the amount of VideoRam on
  the cards and defaulted to only 4 kBytes.  You specify the correct
  amount in the device section (you should do this in any case since
  it will help performance).  See man XF86Config, section on VideoRam.
 
  5)  Try using a smaller resolution like 800x600 or 640x480 on each
  screen.  It may be that the app has some internal assumptions about
  the maximum desktop size and is broken in this respect.  Likewise
  you can see if just using two of the screens works, for example
  just:
 
Screen  Screen 00
# Screen  Screen 01 LeftOf  Screen 00
Screen  Screen 02 RightOf Screen 00
 
 
  Mark.
 
   thanks
  
 michael
  
   On Saturday 28 August 2004 02:01, Mark Vojkovich wrote:
   I don't know of any outstanding Xinerama bugs in XFree86
and I have no problems running Mozilla in Xinerama with two
NVIDIA cards so I think there's not a problem with the core
X-server.  You say Mozilla alone without a window manager will
cause the hang?  Is this just Mozilla that is hanging or the
whole X-server is hanging?  Are you sure this is specific to
Xinerama?  Ie. a single head, or two heads without Xinerama
do not cause the hang?
   
   If the X-server is hanging I suspect this is an mga driver
bug.
   
   
Mark.
   
On Fri, 27 Aug 2004, kiwi wrote:
  
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error in xinerama mode ?

2004-09-02 Thread Mark Vojkovich
   I notice from your config file that you are using a font server.
Can you try commenting out the unix/:7100 FontPath?

Mark.

On Thu, 2 Sep 2004, kiwi wrote:


 hello,

 i have probe all this things,
 and attatch the conconfig file, and xfree86 log.

 on this testing, i found a other thing,
 to make the eagle software stable,
 then i switch the  use always vector fonts  on,
 works software normaly, and i can scroll, zoom, work with this.

 what is it ?

 and have a motziller a similar option ?

 thanks

 michael




 On Saturday 28 August 2004 22:19, Mark Vojkovich wrote:
  On Sat, 28 Aug 2004, kiwi wrote:
   i have the same problem with more than one pc,
   from my 4 pc's with with xinerama is on one pc all ok in xinerama mode.
   on all other, i have the same problem,
   the application eagle or mozilla hangs after scrolling,
   and in one of 20 hangs of software crash , hangs the xserver or the
   window manager.
  
   yes, i habe the same problem, without any window manager.
  
   when i say in my xfree86config
   Option  Xinerama  false
   working all software without any hangs on all screens.
  
  
  
   can you test the eagle software with you xserver ?
   the eagle software is an electronic circuits drawing programm from
   cardsoft http://www.cadsoft.de
   you can download the software from:
   ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g.tgz or as rpm :
   ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g-1.i386.rpm
   and after start:
   open: Projects -- examples -- hexapod -- hexapod.prd -- EAGLE HANGS!
   -- killall eagle
 
 This works fine for me.  I get a circuit diagram and I can move the
  window around and resize it without any problem.  This is running with
  two NVIDIA GeForce4 MX cards (one AGP and one PCI) in Xinerama.  Both
  are in 1600x1200 making a 3200x1200 desktop.  I tried this with both
  NVIDIA's binary driver and the nv driver that comes with XFree86 4.4.
 
 I suspect an mga driver bug or some other obscure problem.  Here are
  some things you can try:
 
  1)  Don't load the dri or glx modules in the XF86Config.  This
  would rule out a dri problem.
 
  2)  Try Option NoAccel for all cards.  This would rule out a driver
  acceleration problem.
 
  3)  Don't load the freetype module.  This would rule out a font renderer
  problem.
 
  4)  I notice the driver didn't autodetect the amount of VideoRam on
  the cards and defaulted to only 4 kBytes.  You specify the correct
  amount in the device section (you should do this in any case since
  it will help performance).  See man XF86Config, section on VideoRam.
 
  5)  Try using a smaller resolution like 800x600 or 640x480 on each
  screen.  It may be that the app has some internal assumptions about
  the maximum desktop size and is broken in this respect.  Likewise
  you can see if just using two of the screens works, for example
  just:
 
Screen  Screen 00
# Screen  Screen 01 LeftOf  Screen 00
Screen  Screen 02 RightOf Screen 00
 
 
  Mark.
 
   thanks
  
 michael
  
   On Saturday 28 August 2004 02:01, Mark Vojkovich wrote:
   I don't know of any outstanding Xinerama bugs in XFree86
and I have no problems running Mozilla in Xinerama with two
NVIDIA cards so I think there's not a problem with the core
X-server.  You say Mozilla alone without a window manager will
cause the hang?  Is this just Mozilla that is hanging or the
whole X-server is hanging?  Are you sure this is specific to
Xinerama?  Ie. a single head, or two heads without Xinerama
do not cause the hang?
   
   If the X-server is hanging I suspect this is an mga driver
bug.
   
   
Mark.
   
On Fri, 27 Aug 2004, kiwi wrote:
  
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error in xinerama mode ?

2004-09-02 Thread kiwi
without this local fontserver works all fine,
with all acceleration options turned on.

the last problem it is, i have to less fonts, all programs used the default 
fonts

michael




On Thursday 02 September 2004 19:37, Mark Vojkovich wrote:
I notice from your config file that you are using a font server.
 Can you try commenting out the unix/:7100 FontPath?

   Mark.

 On Thu, 2 Sep 2004, kiwi wrote:
  hello,
 
  i have probe all this things,
  and attatch the conconfig file, and xfree86 log.
 
  on this testing, i found a other thing,
  to make the eagle software stable,
  then i switch the  use always vector fonts  on,
  works software normaly, and i can scroll, zoom, work with this.
 
  what is it ?
 
  and have a motziller a similar option ?
 
  thanks
 
  michael
 
  On Saturday 28 August 2004 22:19, Mark Vojkovich wrote:
   On Sat, 28 Aug 2004, kiwi wrote:
i have the same problem with more than one pc,
from my 4 pc's with with xinerama is on one pc all ok in xinerama
mode. on all other, i have the same problem,
the application eagle or mozilla hangs after scrolling,
and in one of 20 hangs of software crash , hangs the xserver or the
window manager.
   
yes, i habe the same problem, without any window manager.
   
when i say in my xfree86config
Option  Xinerama  false
working all software without any hangs on all screens.
   
   
   
can you test the eagle software with you xserver ?
the eagle software is an electronic circuits drawing programm from
cardsoft http://www.cadsoft.de
you can download the software from:
ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g.tgz or as rpm :
ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g-1.i386.rpm
and after start:
open: Projects -- examples -- hexapod -- hexapod.prd -- EAGLE
HANGS! -- killall eagle
  
  This works fine for me.  I get a circuit diagram and I can move the
   window around and resize it without any problem.  This is running with
   two NVIDIA GeForce4 MX cards (one AGP and one PCI) in Xinerama.  Both
   are in 1600x1200 making a 3200x1200 desktop.  I tried this with both
   NVIDIA's binary driver and the nv driver that comes with XFree86 4.4.
  
  I suspect an mga driver bug or some other obscure problem.  Here are
   some things you can try:
  
   1)  Don't load the dri or glx modules in the XF86Config.  This
   would rule out a dri problem.
  
   2)  Try Option NoAccel for all cards.  This would rule out a driver
   acceleration problem.
  
   3)  Don't load the freetype module.  This would rule out a font
   renderer problem.
  
   4)  I notice the driver didn't autodetect the amount of VideoRam on
   the cards and defaulted to only 4 kBytes.  You specify the correct
   amount in the device section (you should do this in any case since
   it will help performance).  See man XF86Config, section on
   VideoRam.
  
   5)  Try using a smaller resolution like 800x600 or 640x480 on each
   screen.  It may be that the app has some internal assumptions about
   the maximum desktop size and is broken in this respect.  Likewise
   you can see if just using two of the screens works, for example
   just:
  
 Screen  Screen 00
 # Screen  Screen 01 LeftOf  Screen 00
 Screen  Screen 02 RightOf Screen 00
  
  
 Mark.
  
thanks
   
michael
   
On Saturday 28 August 2004 02:01, Mark Vojkovich wrote:
    I don't know of any outstanding Xinerama bugs in XFree86
 and I have no problems running Mozilla in Xinerama with two
 NVIDIA cards so I think there's not a problem with the core
 X-server.  You say Mozilla alone without a window manager will
 cause the hang?  Is this just Mozilla that is hanging or the
 whole X-server is hanging?  Are you sure this is specific to
 Xinerama?  Ie. a single head, or two heads without Xinerama
 do not cause the hang?

    If the X-server is hanging I suspect this is an mga driver
 bug.


 Mark.

 On Fri, 27 Aug 2004, kiwi wrote:
   
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
  
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86

 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error: XFree86.0.log

2004-08-31 Thread Reklitis Georgios
I have installed Slackware 9.0 and when I try to run startx command I receive errors.
A log file has been generated (XFree86.0.log).

Could you help me please?



 XFree86.0.log 


XFree86.0.log
Description: XFree86.0.log


[XFree86] error in kxv.c need help

2004-08-31 Thread Oliveiros Peixoto
I am compiling kdrive to function with my plate i810.
However it presents me the following error

rm -f kxv.o
gcc -m32 -c -O2 -fno-strength-reduce-I.
-I../../../../exports/include/X11
-I../../../../include/fonts-I./../../fb
-I./../../mi -I./../../Xext 
-I./../../miext/shadow -I./../../miext/layer   
-I./../../include -I./../../os 
-I../../../../include/extensions
-I../../../../exports/include/X11 -I./../../render
-I./../../randr  -I../../../..
-I../../../../exports/include   -Dlinux -D__i386__
-D_POSIX_C_SOURCE=199309L   
-D_POSIX_SOURCE -D_XOPEN_SOURCE  -D_BSD_SOURCE
-D_SVID_SOURCE 
-D_GNU_SOURCE   -DSHAPE  
-DLBX -DTOGCUP  -DRENDER
-DRANDR -DKDRIVESERVER -DGCCUSESGAS -DDDXOSINIT
-DSMART_SCHEDULE -DNOFONTSERVERACCESS   -DPIXPRIV
-DNDEBUG   -DFUNCPROTO=15 -DNARROWPROTO  kxv.c
kxv.c: In function `KdXVUpdateCompositeClip':
kxv.c:618: error: structure has no member named
`pScreen'
kxv.c:619: error: structure has no member named
`pScreen'
kxv.c:620: error: structure has no member named
`pScreen'
kxv.c:623: error: structure has no member named
`pScreen'
kxv.c:629: error: structure has no member named
`pScreen'
kxv.c: In function `KdXVCopyClip':
kxv.c:654: error: `pWin' undeclared (first use in this
function)
kxv.c:654: error: (Each undeclared identifier is
reported only once
kxv.c:654: error: for each function it appears in.)
kxv.c: In function `KdXVRegetVideo':
kxv.c:684: error: `Screen' undeclared (first use in
this function)
kxv.c: In function `KdXVReputVideo':
kxv.c:748: error: `Screen' undeclared (first use in
this function)
kxv.c: In function `KdXVReputImage':
kxv.c:837: error: `Screen' undeclared (first use in
this function)
kxv.c: In function `KdXVPutStill':
kxv.c:1365: error: `Screen' undeclared (first use in
this function)
kxv.c: In function `KdXVPutImage':
kxv.c:1666: error: `Screen' undeclared (first use in
this function)
make: *** [kxv.o] Error 1
bash-2.05b#

my host.def
#define BuilServersOnly YES
#define KDriveXServer YES
#define TinyXServer YES
#define XvesaServer YES
#define Xi810Server YES
#define ProjectRoot /usr/X11R6
#define KdriveServerExtraDefines -DPIXPRIV
#undef RandR
#define BuildRandR YES
#define BuildXInputLib YES
#define Freetype2Dir  
$(TOP)/extras/freetype2
#define Freetype2LibDir$(TOP)/exports/lib
#define BuildXTrueType YES
#define ServerXdmcpDefines
#define BuildXF86DRINO
#define BuildXvLibrary  YES
#define BuildXvExt  YES
#define XVirtualFramebufferServer YES
#define HasShm  YES
#define GlxBuiltInI810  YES
#define GlxBuiltInVesa  YES

my gcc version
3.3.3
Xfree Version
4.4.0

anybody can help me?





___
Yahoo! Acesso Grátis - navegue de graça com conexão de qualidade! 
http://br.acesso.yahoo.com/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error in xinerama mode ?

2004-08-28 Thread Mark Vojkovich
On Sat, 28 Aug 2004, kiwi wrote:

 i have the same problem with more than one pc,
 from my 4 pc's with with xinerama is on one pc all ok in xinerama mode.
 on all other, i have the same problem,
 the application eagle or mozilla hangs after scrolling,
 and in one of 20 hangs of software crash , hangs the xserver or the window
 manager.

 yes, i habe the same problem, without any window manager.

 when i say in my xfree86config
 Option  Xinerama  false
 working all software without any hangs on all screens.



 can you test the eagle software with you xserver ?
 the eagle software is an electronic circuits drawing programm from cardsoft
 http://www.cadsoft.de
 you can download the software from:
 ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g.tgz or as rpm :
 ftp://ftp.cadsoft.de/pub/program/4.11/eagle-4.11g-1.i386.rpm
 and after start:
 open: Projects -- examples -- hexapod -- hexapod.prd -- EAGLE HANGS! --
 killall eagle

   This works fine for me.  I get a circuit diagram and I can move the
window around and resize it without any problem.  This is running with
two NVIDIA GeForce4 MX cards (one AGP and one PCI) in Xinerama.  Both
are in 1600x1200 making a 3200x1200 desktop.  I tried this with both
NVIDIA's binary driver and the nv driver that comes with XFree86 4.4.

   I suspect an mga driver bug or some other obscure problem.  Here are
some things you can try:

1)  Don't load the dri or glx modules in the XF86Config.  This
would rule out a dri problem.

2)  Try Option NoAccel for all cards.  This would rule out a driver
acceleration problem.

3)  Don't load the freetype module.  This would rule out a font renderer
problem.

4)  I notice the driver didn't autodetect the amount of VideoRam on
the cards and defaulted to only 4 kBytes.  You specify the correct
amount in the device section (you should do this in any case since
it will help performance).  See man XF86Config, section on VideoRam.

5)  Try using a smaller resolution like 800x600 or 640x480 on each
screen.  It may be that the app has some internal assumptions about
the maximum desktop size and is broken in this respect.  Likewise
you can see if just using two of the screens works, for example
just:

  Screen  Screen 00
  # Screen  Screen 01 LeftOf  Screen 00
  Screen  Screen 02 RightOf Screen 00


Mark.



 thanks

   michael



 On Saturday 28 August 2004 02:01, Mark Vojkovich wrote:
     I don't know of any outstanding Xinerama bugs in XFree86
  and I have no problems running Mozilla in Xinerama with two
  NVIDIA cards so I think there's not a problem with the core
  X-server.  You say Mozilla alone without a window manager will
  cause the hang?  Is this just Mozilla that is hanging or the
  whole X-server is hanging?  Are you sure this is specific to
  Xinerama?  Ie. a single head, or two heads without Xinerama
  do not cause the hang?
 
     If the X-server is hanging I suspect this is an mga driver
  bug.
 
 
  Mark.
 
  On Fri, 27 Aug 2004, kiwi wrote:
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error in xinerama mode ?

2004-08-27 Thread kiwi
hello,

i have a problem, with the xinerama mode on my pc.

if i scroll or zoom a window, the applcations self hangs or the kde hangs
together.

i test this with the eagle software, this is the fastes posibility to freze
the kde.
the other software is mozilla, with this can i work a few minutes, and then
hangs kde and mozilla.

i have a same bugs without any window managers, when i start the ~# X -ax
from command line, and start the application with ~# export DISPLAY=:0.0*
and then ~# mozilla or ~# eagle

my linux is a debian sarge distribution, with a maual installed XFree86 from
you site, but i have the same with all other XFree86 servers ( from
distribution )

the eagle software is from http://www.cadsoft.de/download.htm

my configuration of pc:

gummi:~#
gummi:~# lspci
:00:00.0 Host bridge: ALi Corporation M1541 (rev 04)
:00:01.0 PCI bridge: ALi Corporation M1541 PCI to AGP Controller (rev 04)
:00:02.0 USB Controller: ALi Corporation USB 1.1 Controller (rev 03)
:00:07.0 ISA bridge: ALi Corporation M1533 PCI to ISA Bridge [Aladdin IV]
(rev c3)
:00:08.0 Ethernet controller: Realtek Semiconductor Co., Ltd.
RTL-8139/8139C/8139C+ (rev 10)
:00:09.0 VGA compatible controller: Matrox Graphics, Inc. MGA 2164W
[Millennium II]
:00:0b.0 VGA compatible controller: Matrox Graphics, Inc. MGA 2164W
[Millennium II]
:00:0c.0 Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 02)
:01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA 2164W
[Millennium II] AGP
gummi:~#
gummi:~#
gummi:~# cat /etc/X11/XF86Config | grep -v '^#' | grep -v '^$'
Section Files
FontPathunix/:7100# local font server
EndSection
Section Module
LoadGLcore
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadtype1
Loadvbe
EndSection
Section InputDevice
Identifier  Keyboard 00
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xfree86
Option  XkbModel  pc104
Option  XkbLayout de
Option  XkbVariantnodeadkeys
EndSection
Section InputDevice
Identifier  Mouse 00
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   false
Option  ZAxisMapping  4 5
EndSection
Section Device
Identifier  Video Card 00
Driver  mga
ChipSet mga2164w
BusID   PCI:1:0:0
EndSection
Section Device
Identifier  Video Card 01
Driver  mga
ChipSet mga2164w
BusID   PCI:0:9:0
EndSection
Section Device
Identifier  Video Card 02
Driver  mga
ChipSet mga2164w
BusID   PCI:0:11:0
EndSection
Section Monitor
Identifier  Generic Monitor 00
HorizSync   30-100
VertRefresh 50-200
EndSection
Section Monitor
Identifier  Generic Monitor 01
HorizSync   30-100
VertRefresh 50-200
EndSection
Section Monitor
Identifier  Generic Monitor 02
HorizSync   30-100
VertRefresh 50-200
EndSection
Section Screen
Identifier  Screen 00
Device  Video Card 00
Monitor Generic Monitor 00
DefaultDepth16
SubSection Display
Depth   16
Modes   1280x1024
EndSubSection
EndSection
Section Screen
Identifier  Screen 01
Device  Video Card 01
Monitor Generic Monitor 01
DefaultDepth16
SubSection Display
Depth   16
Modes   1280x1024
EndSubSection
EndSection
Section Screen
Identifier  Screen 02
Device  Video Card 02
Monitor Generic Monitor 02
DefaultDepth16
SubSection Display
Depth   16
Modes   1280x1024
EndSubSection
EndSection
Section ServerLayout
Identifier  Default Layout
Screen  Screen 00
Screen  Screen 01 LeftOf  Screen 00
Screen  Screen 02 RightOf Screen 00
InputDevice Keyboard 00
InputDevice Mouse 00
Option  Xinerama  true
EndSection
Section DRI
Mode0666
EndSection
gummi:~#
gummi:~#
gummi:~#
gummi:~# cat /var/log/XFree86.0.log
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/gummi:0

RE: [XFree86] Error

2004-08-25 Thread Bisbal, Prentice



By 
default, XFree86 fails if it doesn't find a mouse. And it looks like it's not 
finding a mouse when you start X. I don't know why it suddenly can't find your 
mouse. Try running the mouseconfig command to configure your 
mouse.

Prentice-Original Message-From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of Mark Timothy 
StorrSent: Tuesday, August 24, 2004 4:45 AMTo: 
[EMAIL PROTECTED]Subject: [XFree86] Error

  Hi,
  
  I am unable to restart the graphical interface on 
  my machine, up until today it was working fine no problems at all. However 
  upon rebooting today I get the error message showing in the attached file. I 
  don't really wont to update if at all possible as the config was working fine. 
  I suspect my inabliity to get it going again is due to inexpereience rather 
  than any real problem
  Any help woudl be gratefully 
  received.
  
  Thanks
  
  Mark
  ~Dr. Mark T. 
  StorrSchool of ChemistryUniversity of ReadingPO Box 
  224WhiteknightsReadingBerkshireRG6 6AD
  
  E-mail: [EMAIL PROTECTED]Tel: +44 
  (0)118 
3787415~



*** 

 The contents of this communication are intended only for the addressee and may contain confidential and/or privileged material. If you are not the intended recipient, please do not read, copy, use or disclose this communication and notify the sender.  Opinions, conclusions and other information in this communication that do not relate to the official business of my company shall be understood as neither given nor endorsed by it.  

*** 




[XFree86] Error

2004-08-24 Thread Mark Timothy Storr



Hi,

I am unable to restart the graphical interface on 
my machine, up until today it was working fine no problems at all. However upon 
rebooting today I get the error message showing in the attached file. I don't 
really wont to update if at all possible as the config was working fine. I 
suspect my inabliity to get it going again is due to inexpereience rather than 
any real problem
Any help woudl be gratefully received.

Thanks

Mark
~Dr. Mark T. 
StorrSchool of ChemistryUniversity of ReadingPO Box 
224WhiteknightsReadingBerkshireRG6 6AD

E-mail: [EMAIL PROTECTED]Tel: +44 
(0)118 3787415~
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com

Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8smp ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 
(Red Hat Linux 3.2.2-5)) #1 SMP Thu Mar 13 16:43:01 EST 2003
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Aug 24 09:37:47 2004
(==) Using config file: /etc/X11/XF86Config
/lib/modules/2.4.20-8smp/kernel/drivers/video/sis/sisfb.o: init_module: No such device
/lib/modules/2.4.20-8smp/kernel/drivers/video/sis/sisfb.o: insmod 
/lib/modules/2.4.20-8smp/kernel/drivers/video/sis/sisfb.o failed
/lib/modules/2.4.20-8smp/kernel/drivers/video/sis/sisfb.o: insmod sis failed
[drm] failed to load kernel module sis
(EE) SIS(0): [dri] DRIScreenInit failed.  Disabling DRI.
(EE) xf86OpenSerial: Cannot open device /dev/psaux
No such device.
(EE) Mouse0: cannot open input device
(EE) PreInit failed for input device Mouse0
No core pointer

Fatal server error:
failed to initialize core devices

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]

XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
  after 0 requests (0 known processed) with 0 events remaining.

[XFree86] Error in making World

2004-08-20 Thread Andrew Zhu
the package is the latest version:
XFree86-4.4.99.11.tar.bz2. platform is Redhat AS 3.0
with no root previlege. So change the entry in
site.def for projectroot to a user space also set
macro nothingoutsideprojectroot to yes.

Error occurs at making doc: no rule for clean in doc/.
I think there might be some makefile.in doc/ is
missing. Is there anyway to fix it?

Thanks



__
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Seeking help for XFree86 Error: cannot load module bitmap

2004-08-12 Thread FabGuy



Iam using RH9. During boot up it displayed an error 
that X windows server was unable to run. It reported of a failure in loading a 
module "bitmap"The content of the log file and even the configuration file 
has been attached under. How can i solve this. Please help. Iam new to 
linux.

###Content of error log /var/log/XFree86.0.log

XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)Release Date: 27 
February 2003X Protocol Version 11, Revision 0, Release 6.6Build 
Operating System: Linux 2.4.20-3bigmem i686 [ELF] Build Date: 27 February 
2003Build Host: porky.devel.redhat.comBefore reporting 
problems, check http://www.XFree86.Org/to make sure 
that you have the latest version.Module Loader presentOS Kernel: Linux 
version 2.4.20-8 ([EMAIL PROTECTED]) 
(gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 
2003 Markers: (--) probed, (**) from config file, (==) default 
setting, (++) from command 
line, (!!) notice, (II) 
informational, (WW) warning, 
(EE) error, (NI) not implemented, (??) unknown.(==) Log file: 
"/var/log/XFree86.0.log", Time: Thu Aug 12 18:05:59 2004(==) Using config 
file: "/etc/X11/XF86Config"(==) ServerLayout "Default Layout"(**) 
|--Screen "Screen0" (0)(**) | |--Monitor 
"Monitor0"(**) | |--Device "Videocard0"(**) |--Input 
Device "Mouse0"(**) |--Input Device "Keyboard0"(**) Option 
"XkbRules" "xfree86"(**) XKB: rules: "xfree86"(**) Option "XkbModel" 
"pc105"(**) XKB: model: "pc105"(**) Option "XkbLayout" "us"(**) XKB: 
layout: "us"(==) Keyboard: CustomKeycode disabled(**) |--Input 
Device "DevInputMice"(**) FontPath set to "unix/:7100"(**) RgbPath set 
to "/usr/X11R6/lib/X11/rgb"(==) ModulePath set to 
"/usr/X11R6/lib/modules"(--) using VT number 7

(II) Open APM successful(II) Module ABI versions:XFree86 ANSI 
C Emulation: 0.2XFree86 Video Driver: 0.6XFree86 XInput 
driver : 0.4XFree86 Server Extension : 0.2XFree86 Font 
Renderer : 0.4(II) Loader running on linux(II) LoadModule: 
"bitmap"(WW) Warning, couldn't open module bitmap(II) UnloadModule: 
"bitmap"(EE) Failed to load module "bitmap" (module does not exist, 
0)(II) LoadModule: "pcidata"(II) Loading 
/usr/X11R6/lib/modules/libpcidata.a(II) Module pcidata: vendor="The XFree86 
Project"compiled for 4.3.0, module version = 1.0.0ABI class: 
XFree86 Video Driver, version 0.6

Fatal server error:Unable to load required base modules, 
Exiting...

When reporting a problem related to a server crash, please sendthe 
full server output, not just the last messages.This can be found in the log 
file "/var/log/XFree86.0.log".Please report problems to [EMAIL PROTECTED].

###Content of my Configuration file /etc/X11/XF86Config

# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"Identifier "Default 
Layout"Screen 0 "Screen0" 0 
0InputDevice "Mouse0" 
"CorePointer"InputDevice "Keyboard0" 
"CoreKeyboard"InputDevice "DevInputMice" 
"AlwaysCore"EndSection

Section "Files"# RgbPath is the location of the RGB database. 
Note, this is the name of the # file minus the extension (like ".txt" or 
".db"). There is normally# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated 
together)# By default, Red Hat 6.0 and later now use a font server 
independent of# the X server to render fonts.

RgbPath 
"/usr/X11R6/lib/X11/rgb"FontPath 
"unix/:7100"EndSection

Section "Module"Load "dbe"Load 
"extmod"Load "fbdevhw"Load 
"glx"Load "record"Load 
"freetype"Load "type1"Load 
"dri"EndSection

Section "InputDevice"# Specify which keyboard LEDs can be 
user-controlled (eg, with xset(1))#Option"Xleds""1 2 
3"

# To disable the XKEYBOARD extension, uncomment 
XkbDisable.#Option"XkbDisable"

# To customise the XKB settings to suit your keyboard, modify the# 
lines below (which are the defaults). For example, for a non-U.S.# 
keyboard, you will probably want to 
use:#Option"XkbModel""pc102"# If you have a US 
Microsoft Natural keyboard, you can 
use:#Option"XkbModel""microsoft"## Then to change 
the language, change the Layout setting.# For example, a german layout can 
be obtained with:#Option"XkbLayout""de"# 
or:#Option"XkbLayout""de"#Option"XkbVariant""nodeadkeys"## 
If you'd like to switch the positions of your capslock and# control keys, 
use:#Option"XkbOptions""ctrl:swapcaps"# Or if you just 
want both to be control, 
use:#Option"XkbOptions""ctrl:nocaps"#Identifier 
"Keyboard0"Driver 
"keyboard"Option "XkbRules" 
"xfree86"Option "XkbModel" 
"pc105"Option "XkbLayout" 
"us"EndSection

Section "InputDevice"Identifier 
"Mouse0"Driver 
"mouse"Option "Protocol" 
"IMPS/2"Option "Device" 
"/dev/psaux"Option "ZAxisMapping" "4 
5"Option "Emulate3Buttons" 
"no"EndSection

Section "InputDevice"# If the normal CorePointer mouse is not a USB 
mouse then# this input device can be used in AlwaysCore mode to let you# 
also use USB mice at the same time.Identifier 
"DevInputMice"Driver 
"mouse"Option "Protocol" 
"IMPS/2"Option "Device" 
"/dev/input/mice"Option "ZAxisMapping" "4 

[XFree86] Error starting XFree86

2004-07-28 Thread Romesberg, John (Mission Systems)



Hello 
XFree86.
We just downloaded 
the latest Linux under RedHat and the Xserver started the first time, but won't 
restart. The only error we get is:
 Cannot move old logfile /var/log/XFree86.0.log.old

But no matter what 
we do with this file - remove it, change permissions, move it elsewhere - we 
continue getting the same error. 
Where is it trying 
to move the file??

Thanks.
JR
*
John Romesberg
Northrop Grumman Mission Systems
100 Sun Ave NE Suite 300
Albuquerque, NM 87109
(505) 998-8453
*



[XFree86] Error on Launch of XFree86

2004-07-28 Thread sjbower2000



Trying to load FreeBSD on a Dell laptop and failing 
on the XFree86 -xf86config /root/XF86Config.new ... error comes back with 


IBM ITXG76E2
Color, Single, TFT
(EE) R128(0): No valid modes found
(EE) Screen(s) found, but none have a useable 
configuration


Fatal Server Error:
No Screens Found








XFree86.0.log
Description: Binary data


XF86Config.new
Description: Binary data


[XFree86] error with XFree86 -configure

2004-07-23 Thread Jürg Kirschenhofer
Dear Customer Support,

after installation of XFree86 on our cobalt we
started XFree86 -configure. - ended with an error (see log below)

can you give us an advice ?!

sincerely, J.Kirschenhofer

Saturn Networks
Sumpfstrasse 6
6300 Zug
Switzerland

Tel:+41 41 743 06 43
Fax:+41 41 743 06 45
Web:www.saturn.ch
Mailto: [EMAIL PROTECTED]


XFree86.0.log
Description: XFree86.0.log


[XFree86] error with XFree86 -configure

2004-07-23 Thread Jürg Kirschenhofer
 
Dear Customer Support, 

after installation of XFree86 on our cobalt we 
started XFree86 -configure. - ended with an error (see log below) 

can you give us an advice ?! 

sincerely, J.Kirschenhofer 

Saturn Networks 
Sumpfstrasse 6 
6300 Zug 
Switzerland 

Tel:+41 41 743 06 43 
Fax:+41 41 743 06 45 
Web:www.saturn.ch 
Mailto: [EMAIL PROTECTED] 



XFree86.0.log
Description: XFree86.0.log


Re: [XFree86] error with XFree86 -configure

2004-07-23 Thread Mark Vojkovich
xf86OpenConsole: Cannot open /dev/tty0 (No such file or directory)

   XFree86 requires a virtual terminal.  It sounds like your
kernel is built without support for that.


Mark.


On Fri, 23 Jul 2004, [iso-8859-1] Jürg Kirschenhofer wrote:


 Dear Customer Support,

 after installation of XFree86 on our cobalt we
 started XFree86 -configure. - ended with an error (see log below)

 can you give us an advice ?!

 sincerely, J.Kirschenhofer

 Saturn Networks
 Sumpfstrasse 6
 6300 Zug
 Switzerland

 Tel:+41 41 743 06 43
 Fax:+41 41 743 06 45
 Web:www.saturn.ch
 Mailto: [EMAIL PROTECTED]



___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error

2004-07-20 Thread Hardwin Spenkelink
Hello, I got an error when starting your application:
I've installed linux red hat 9 (shrike), when i am trying to start it, I
type startx, it says: Fatal server error server is already active for
display 0.
But when I am going to grafical mode by pressing ctrl + alt + F7 my monitor
goes in stand-by mode, so I think it's not already running.
What am I doing wrong?

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error recieved on an AlphaPC 164SX

2004-07-13 Thread root
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.99.2
Release Date: 10 April 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.9-32.5 alpha [ELF] 
Build Date: 13 July 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Jul 13 06:28:39 2004
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device Matrox
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc101
(**) XKB: model: pc101
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
Elf_RelocateEntry() Unsupported relocation type 28
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.99.2, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.99.2, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:05:0: chip 102b,051a card , rev 02 class 03,00,00 hdr 00
(II) PCI: 00:07:0: chip 105a,4d38 card 105a,4d33 rev 01 class 01,80,00 hdr 00
(II) PCI: 00:08:0: chip 1080,c693 card , rev 00 class 06,01,00 hdr 80
(II) PCI: 00:08:1: chip 1080,c693 card , rev 00 class 01,01,80 hdr 80
(II) PCI: 00:08:2: chip 1080,c693 card , rev 00 class 01,01,00 hdr 80
(II) PCI: 00:08:3: chip 1080,c693 card , rev 00 class 0c,03,10 hdr 80
(II) PCI: 00:09:0: chip 10b7,9055 card 10b7,9055 rev 30 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:8:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x1) MX[B]
(II) Bus 0 prefetchable memory range:
 

Re: [XFree86] Error recieved on an AlphaPC 164SX

2004-07-13 Thread Måns Rullgård
root [EMAIL PROTECTED] writes:

 XFree86 Version 4.3.99.2

[...]

 Elf_RelocateEntry() Unsupported relocation type 28

This has been fixed in later versions.  You might need to use good
versions of gcc and binutils as well.

-- 
Måns Rullgård
[EMAIL PROTECTED]

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error recieved on an AlphaPC 164SX

2004-07-13 Thread Torsten Zirzlaff
Hi.

On Tue, 13 Jul 2004, Måns Rullgård wrote:

 root [EMAIL PROTECTED] writes:

  XFree86 Version 4.3.99.2

 [...]

  Elf_RelocateEntry() Unsupported relocation type 28

 This has been fixed in later versions.  You might need to use good
 versions of gcc and binutils as well.

  Hm, I got similiar messages on my build:

Elf_RelocateEntry() Unsupported relocation type 10

  What is the reason for that?

I run Debian testing (sarge?)

TIA

Torsten

-- 
s-mail: Neckarstr. 120 Torsten Zirzlaff
70190 Stuttgart
Germanye-mail :  [EMAIL PROTECTED]
phone: +49 711 285 19 40 [EMAIL PROTECTED]
mobil: +49 174 857 56 77
data:  +49 711 286 40 57/9

+-+
|  The shortest unit of time in the universe is the New York Second, defined  |
|  as the period of time between the traffic lights turning green and the cab |
|  behind you honking. -- Terry Pratchett 'Lords and Ladies'  |
+-+

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error recieved on an AlphaPC 164SX

2004-07-13 Thread Måns Rullgård
Torsten Zirzlaff [EMAIL PROTECTED] writes:

 Hi.

 On Tue, 13 Jul 2004, Måns Rullgård wrote:

 root [EMAIL PROTECTED] writes:

  XFree86 Version 4.3.99.2

 [...]

  Elf_RelocateEntry() Unsupported relocation type 28

 This has been fixed in later versions.  You might need to use good
 versions of gcc and binutils as well.

   Hm, I got similiar messages on my build:

 Elf_RelocateEntry() Unsupported relocation type 10

   What is the reason for that?

The error is printed by the module loader.  It means that the linker
used a relocation type not supported by the loader.  This is caused by
the fact that newer binutils versions sometimes use some relocation
types not used in previous versions.  Support for these types has been
added to xfree86.  Use the latest version.  There was a while when I
had to use a slightly old gcc version to make it work too, but I can't
remember which version that was.  Anyhow, I think that problem has
been fixed as well.

-- 
Måns Rullgård
[EMAIL PROTECTED]

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error report

2004-07-10 Thread selva manoharan
Hi,
   I am new to linux,i have installed in my system
RedHat's Linux 9.
   I have included my error log with this mail,as it
says i can't run my X Server in my system,please look
up the error and solve my problem

M.Selva Manoharan
India


Yahoo! India Careers: Over 50,000 jobs online
Go to: http://yahoo.naukri.com/

XFree86.0.log
Description: XFree86.0.log


[XFree86] error report

2004-07-09 Thread selva manoharan
Sir,
I am sending this error report in windows because
i am very much new to linux and i don't know how to
send mail from commandline in linux.I have attahced my
log file with this mail,please help me out because my
X craches regularly  and each time it shows the same
error message.

And because i don't know what to do i install
linux all over again,please help me.

M.Selva Manoharan


Yahoo! India Careers: Over 50,000 jobs online
Go to: http://yahoo.naukri.com/

XFree86.0.log
Description: XFree86.0.log


[XFree86] error in running in tightvnc(Xvnc)

2004-07-09 Thread gaurav
i have downloaded xvnc(for showing remote desktop).but it is not running
properly
on running Xvnc it gives following erros.

_XSERVTransSocketINETCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running
 
Fatal server error:
Cannot establish any listening sockets - Make sure an X server isn't
already running.

 please tell me how can we deal with this error and also tell me
what is the exact procedure of running this Xvnc software.

thanx

GAURAV VERMA
200101243
Daiict
Gandhinagar
Gujrat
India
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] error in running in tightvnc(Xvnc)

2004-07-09 Thread Jay R. Ashworth
On Fri, Jul 09, 2004 at 11:55:08PM +0530, gaurav wrote:
 i have downloaded xvnc(for showing remote desktop).but it is not running
 properly
 on running Xvnc it gives following erros.
 
 _XSERVTransSocketINETCreateListener: ...SocketCreateListener() failed
 _XSERVTransMakeAllCOTSServerListeners: server already running
  
 Fatal server error:
 Cannot establish any listening sockets - Make sure an X server isn't
 already running.
 
  please tell me how can we deal with this error and also tell me
 what is the exact procedure of running this Xvnc software.

It is likely, I think, that you don't understand that the stock Xvnc
does *not* permit 'co-pilot' operation of a desktop visible on a
hardware video adapter, as the Windows servers do.

Xvnc expects to run in the background, and *only* be connected to by
remot clients -- if you want to talk to a stock Xvnc from it's local
machine, you have to run a vncviewer client *on the real X server*...

and it's that Xserver that your Xvnc server is likely colliding with,
since it lives, by default, on :0, which is probably where your Xvnc
server is trying to go too.

If that's not enough hint, reply to the list and we'll try to explain
further.

Cheers ,
-- jra
-- 
Jay R. Ashworth[EMAIL PROTECTED]
Designer  Baylink RFC 2100
Ashworth  AssociatesThe Things I Think'87 e24
St Petersburg FL USA  http://baylink.pitas.com +1 727 647 1274

You know: I'm a fan of photosynthesis as much as the next guy,
but if God merely wanted us to smell the flowers, he wouldn't 
have invented a 3GHz microprocessor and a 3D graphics board.
-- Luke Girardi
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error running xf86config

2004-07-07 Thread John Raven
Hi There -

Here is the log.
I can't find the file xf86PciInfo.h
Where should it be located?

Thanks

- John



XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF] 
Build Host: daffy.perf.redhat.com
 
Module Loader present
OS Kernel: Linux version 2.4.18-14smp ([EMAIL PROTECTED]) (gcc version 3.2 20020903 
(Red Hat Linux 8.0 3.2-7)) #1 SMP Wed Sep 4 11:55:37 EDT 2002 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Jul  6 14:44:57 2004
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Screen Screen1 (1)
(**) |   |--Monitor Monitor1
(**) |   |--Device Videocard1
(EE) Screen Screen 0 doesn't exist: deleting placement
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option Xinerama on
(**) Xinerama: enabled
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.5
XFree86 XInput driver : 0.3
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.3
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.2.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.2.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8002400c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1022,700c card , rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1022,700d card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1022,7440 card , rev 05 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1022,7441 card 1022,7441 rev 04 class 01,01,8a hdr 00
(II) PCI: 00:07:3: chip 1022,7443 card 1022,7443 rev 03 class 06,80,00 hdr 00
(II) PCI: 00:10:0: chip 1022,7448 card , rev 05 class 06,04,00 hdr 01
(II) PCI: 01:05:0: chip 10de,0341 card 270f,194c rev a1 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 1022,7449 card 1022,7449 rev 07 class 0c,03,10 hdr 00
(II) PCI: 02:05:0: chip 10de,0322 card 270f,194d rev a1 class 03,00,00 hdr 00
(II) PCI: 02:08:0: chip 10b7,9200 card 10f1,2466 rev 78 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.2.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0c (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xc000 - 0xc0ff (0x100) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xd000 - 0xdfff (0x1000) MX[B]
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(II) Bus 2: bridge is at (0:16:0), (0,2,2), BCTRL: 0x04 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0x2000 - 0x20ff (0x100) IX[B]
[1] -1  0x2400 - 0x24ff (0x100) IX[B]
 

[XFree86] Error init kde-desktop Linux RedHat 8.0

2004-07-06 Thread Abel Zárate Avendaño
I deleted some files of /tmp because it was full.
and now I don't init the desktop graphic, it sends
this message:

$ startx

XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF]
Build Host: daffy.perf.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED]) (gcc v
ersion 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDT 2002
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: /dev/null, Time: Tue Jul  6 11:35:05 2004
(++) Using config file: [EMAIL PROTECTED]
(WW) ATI(0): Failed to set up write-combining range (0xef00,0x80)
(WW) ATI(0): Failed to set up write-combining range (0xef00,0x80)
Could not init font path element unix/:7100, removing from list!

Fatal server error:
could not open default font 'fixed'

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /dev/null.
Please report problems to [EMAIL PROTECTED]


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error init kde-desktop Linux RedHat 8.0

2004-07-06 Thread Abel Zárate Avendaño
Log File



XFree86.0.log
Description: XFree86.0.log


[XFree86] error loading

2004-07-05 Thread Carlos Morota Jr.
hi! I am a linux newb. when I run my linux redhat 7.0 in gui I am getting an
error.
then in the message it tells me to send the attach log file to this e-mail.
I am positively
hoping you will help me about this problem of mine.

tia

Carlos


XFree86.0.log
Description: Binary data


Re: [XFree86] error loading

2004-07-05 Thread Mark Vojkovich
XFree86 Version 4.0.1a / X Window System
(protocol Version 11, revision 0, vendor release 6400)
Release Date: 2 August 2000
If the server is older than 6-12 months, or if your card is newer
than the above date, look for a newer version before reporting
problems.  (see http://www.XFree86.Org/FAQ)

  Your video card is a few years newer than your X-server.  Your
video card wasn't officially supported until XFree86 4.4.  NVIDIA
has binary Linux drivers on the NVIDIA web site.  I'm not sure if
they work with servers as old as 4.0.1a though (they used to, but
I'm not sure if that's still true).

Mark.


On Mon, 5 Jul 2004, Carlos Morota Jr. wrote:

 hi! I am a linux newb. when I run my linux redhat 7.0 in gui I am getting an
 error.
 then in the message it tells me to send the attach log file to this e-mail.
 I am positively
 hoping you will help me about this problem of mine.

 tia

 Carlos

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] XFree86 error when I open a second display

2004-06-30 Thread Ferruccio Zamuner
Dear XFree86 group,
On a single PC with
Section Device
Identifier  ATI Mach64 3D Rage II
Driver  ati
#VideoRam8192
# Insert Clocks lines here if appropriate
EndSection
every time I try to open a second display I got the error
Fatal server error:
xf86OpenConsole: VT_SETMODE VT_PROCESS failed
On other PC with different video card I've got not any error.
Instead with this single PC I've the same problem since FreeBSD 4.8 (now I'm 
running FreeBSD 4.10).

I hope to your help or suggestion to solve this problem.
Thank you in advance, \fer

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 4.10 i386 [ELF] 
Build Date: 08 April 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.1.log, Time: Fri Jun  4 18:47:47 2004
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor SonyE100
(**) |   |--Device ATI Mach64 3D Rage II
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard0
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel logiinternet
(**) XKB: model: logiinternet
(**) Option XkbLayout it
(**) XKB: layout: it
(==) Keyboard: CustomKeycode disabled
(WW) The directory /usr/local/AbiSuite/fonts/ does not exist.
Entry deleted from font path.
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/100dpi/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/bitstream-vera/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) Using syscons driver with X support (version 2.0)
(++) using VT number 9


Fatal server error:
xf86OpenConsole: VT_SETMODE VT_PROCESS failed


When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.1.log.
Please report problems to [EMAIL PROTECTED]



[XFree86] Error logfile xfree86.0.log

2004-06-25 Thread roberto cencioni
My S.O. is os2 for e-business

Driver for video is gengrad 


Thanks

Roberto Cencioni
Genova
Italy







Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

XFREE860.LOG
Description: XFREE860.LOG


[XFree86] error while loading shared libraries: libz.so.1:cannot open shared object file:

2004-06-23 Thread sdgesa gaeharth
I am getting some errors while running the Xinstall.sh
install script. Any hints?

thanks

*

Running ldconfig

Updating the fonts.dir file in
/usr/X11R6/lib/X11/fonts/local.../usr/X11R6/bin/mkfontscale:
error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory

Updating the fonts.dir file in
/usr/X11R6/lib/X11/fonts/misc.../usr/X11R6/bin/mkfontscale:
error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory
*
after the install, when running any newly installed X
program I get the same error:
*
startx
X: error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory
*



__
Do you Yahoo!?
Yahoo! Mail - You care about security. So do we.
http://promotions.yahoo.com/new_mail
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] error while loading shared libraries: libz.so.1:cannot open shared object file:

2004-06-22 Thread sdgesa gaeharth
I am getting some errors while running the Xinstall.sh
install script. Any hints?


thanks

Errors:
*
Running ldconfig

Updating the fonts.dir file in
/usr/X11R6/lib/X11/fonts/local.../usr/X11R6/bin/mkfontscale:
error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory

Updating the fonts.dir file in
/usr/X11R6/lib/X11/fonts/misc.../usr/X11R6/bin/mkfontscale:
error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory
*
after the install, when running any newly installed X
program I get the same error:
*
startx
X: error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or
directory
*



__
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
http://promotions.yahoo.com/new_mail
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Error message logs

2004-06-21 Thread Marc Aurele La France
On Tue, 15 Jun 2004, Bill Wise wrote:

 When I tried to start Yellow Dog Linux's GUI with the startx command
 from the command line (of course) I got an error message that suggested
 I send the log to you.  There are several, so I send them all in hopes
 you'll be able to figure something out.

I see no error in these logs.  Please re-specify your query.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


  1   2   3   >