[XFree86] minimize/Maximize a window

2011-10-20 Thread praveen
i have a window id of a particular window how do i minimize/Maximize  the 
window using the X11 functions.
 
 How do i minimize a window all in Linux using X11 Functions... ... 

Re: [XFree86] minimize/Maximize a window

2011-10-20 Thread praveen
Thankyou for the reply ..
I am looking for how a Window Manager would Maximize or manimize a Window
 
i am able to maximixe a window with this function
 
voidmaxmizeWindow(WindowwinId)



From: Marc Aurele La France t...@ualberta.ca
To: praveen praveenin_...@yahoo.com
Cc: xfree86@XFree86.Org xfree86@xfree86.org
Sent: Thursday, 20 October 2011 8:13 PM
Subject: Re: [XFree86] minimize/Maximize a window

On Thu, 20 Oct 2011, praveen wrote:

 i have a window id of a particular window how do i minimize/Maximize
 the window using the X11 functions.

 How do i minimize a window all in Linux using X11 Functions... ...

I don't know, but would assume it depends on the specific window manager in use.

Marc.

+--+--+
|  Marc Aurele La France          |  work:  1-780-492-9310          |
|  Academic Information and        |  fax:    1-780-492-1729          |
|    Communications Technologies  |  email:  t...@ualberta.ca        |
|  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.



{
XEventxev;
Display*disp=XOpenDisplay(0);
memset(xev,0,sizeof(xev));
xev.xclient.type=ClientMessage;
xev.xclient.serial=0;
xev.xclient.send_event=True;
xev.xclient.window=winId;
xev.xclient.format=32;
xev.xclient.message_type=XInternAtom(disp,_NET_WM_STATE,False);
xev.xclient.data.l[0]=(unsignedlong)1;
xev.xclient.data.l[2]=XInternAtom(disp,_NET_WM_STATE_MAXIMIZED_HORZ,False);
xev.xclient.data.l[1]=XInternAtom(disp,_NET_WM_STATE_MAXIMIZED_VERT,False);
XSendEvent(disp,DefaultRootWindow(disp),False,SubstructureRedirectMask|SubstructureNotifyMask,xev);
/*NET_WM Works like a Charm :D*/
XRaiseWindow(disp,winId);
XCloseDisplay(disp);
}
 
But i am not able to minimixe a window with this 
voidmixmizeWindow(WindowwinId)
{
XEventxev;
Display*disp=XOpenDisplay(0);
memset(xev,0,sizeof(xev));
xev.xclient.type=ClientMessage;
xev.xclient.serial=0;
xev.xclient.send_event=True;
xev.xclient.window=winId;
xev.xclient.format=32;
xev.xclient.message_type=XInternAtom(disp,_NET_WM_STATE,False);;
xev.xclient.data.l[0]=(unsignedlong)1;
xev.xclient.data.l[1]=XInternAtom(disp,_NET_WM_ACTION_MINIMIZE,False);
XSendEvent(disp,DefaultRootWindow(disp),False,SubstructureRedirectMask|SubstructureNotifyMask,xev);
/**MINIMIZE Does not Minimuze But the Window get de-Highlited*/
/*But does not get Highlited...*/
XLowerWindow(disp,winId);
XCloseDisplay(disp);
}

[XFree86] get the the window ID

2011-10-10 Thread praveen


Dear Sir,
 i am New to Linux and X11. In a C++ program i need the Window 
ID of a Opened Windows ... 

here are the requirement 
from a C++  i have open a Process(say for Example Firef). Now i need to get the 
process ID this window in C++. How do i implement this. 
is there a equivalent Library call to xwininfo -name firefox
 
--
Regards 
Praveen J

Re: [XFree86] TCL Programming

2005-12-27 Thread Praveen A
hi Bill, I am interestedRegardsPraveenBill Morris [EMAIL PROTECTED] wrote:   Do you know of anyone that would be interested in a  TCL programming project?  Thanks, Bill Morris
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at Yahoo! Shopping 

Re: [XFree86] Question about tiny-x

2005-11-09 Thread Praveen A
hi
find it out at 
http://intimate.handhelds.org/jacques/
here there is the bzip or gzip file 

xc-011010.tar.bz2  

download it  enjoy

Regards
Praveen

--- Zhan Zhaohua [EMAIL PROTECTED] wrote:

 Dear All:
 I want to use tiny-x in my embedded system, but
 I
 can't find the source of it, could anyone tell me
 where to download the source code of the latest
 tiny-x?
 
 
 Thank you.
 
 Best regards
 
 Zhan Zhaohua
 2005.11.9
 
 
 
   
 __ 
 Yahoo! FareChase: Search multiple travel sites in
 one click.
 http://farechase.yahoo.com
 ___
 XFree86 mailing list
 XFree86@XFree86.Org
 http://XFree86.Org/mailman/listinfo/xfree86
 




__ 
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Unable to start XSERVER

2005-05-31 Thread Praveen A
hi ,
I think there is no space on ur hard disk for XSERVER to start. So plz make some space on ur hard disk ( arnd 600MB or something ) then reboot. I think that will fix ur problem.
take care
Praveen[EMAIL PROTECTED] wrote:
Hi, While I try start the XSERVER I get the following lockup error. 
drm:i830-wait-ring *ERROR* space 131056 wanted 131064 
drm:i830-wait-ring *ERROR* lockup 
Can you please say from this message what can I do to remove this lockup. Rebooting is'nt helping. 
I need to work with GUI.Pls help me. Regards,Mahendran.RajendranManage Infra - CSS
		Do You Yahoo!? Yahoo! Small Business - Try our new Resources site!

Re: [XFree86] kvm switch causing mouse problems

2004-01-12 Thread praveen
it works exactly as you described. its confused now for a second or two 
after the first time the mouse is moved, and then it manages to come to 
its senses. cool. thanks all,

On Sun, 11 Jan 2004 22:21:30 -0800, jmw [EMAIL PROTECTED] wrote:

Egbert wrote:

Mark Vojkovich writes:

XFree86's mouse protocol handling doesn't seem to be able to
 handle interruptions/inconsistencies in the protocol stream that
 kvm switches cause.  As far as I can tell, XFree86 has always had
 this problem.  Other than switching VTs to force a the server
 to reset its state machine, I don't know of another solution.

The problem are not so much intermediate inconsitencies in the protocol
but rather the fact that the mouse gets powered down and up again
by some kvms loosing all its configuration data.
One may be able to work around this problem by choosing the auto 
protocol.
This attempts to redetect the mouse when inconsitencies in the data 
stream
persist.
However I cannot tell for sure. I never had a kvm for testing when I
implemented the auto protocol.

Egbert.
i found this same problem months ago  finally got around to digging up
the XF86config file.
changing protocol to auto does help -- i notice a slight pause on the 
screen
when i switch back to RH9, but full cursor control is restored within 
about a
second after that.  i don't know whether it matters, but i have a Belkin 
F1DS104T.

the only other workable solution i found was (as root):

service gpm restart

but this one isn't terribly convenient.
--
jmw




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


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


Re: [XFree86] kvm switch causing mouse problems

2004-01-09 Thread praveen
thanks mark, egbert, christopher. i will try this and see if it has any 
effect.

On Fri, 9 Jan 2004 12:36:40 +1100 (EST), Christopher Thom 
[EMAIL PROTECTED] wrote:

Quoth praveen:

egbert, how can i use this auto protocol. i am somewhat unfamiliar with
what you are talking about but if it requires me to get/build/install
some source, i can try that.
use Protocol auto in your mouse sectino.  For example, this is my mouse
on my laptop

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/mouse
EndSection

cheers
chris


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


[XFree86] kvm switch causing mouse problems

2004-01-08 Thread praveen
hi

i have a kvm that connects my windows and unix boxes. the video card and 
Xfree specs are below. when i switch from unix to windows and back to 
unix, the mouse becomes extra sensitive. even the smallest movement causes 
it to go all over and clicks too. only after i go to one of the other 
tty{1-6} and back to tty7 does the mouse come back to normal. can someone 
tell me whats causing this and how i can fix it? help greatly appreciated.

here's my machine's configuration.
i am using an nvidia driver installed using nvidia's 
NVIDIA-Linux-x86-1.0-4496-pkg2.run
VGA compatible controller: nVidia Corporation NV18GL [Quadro4 NVS]
XFree86 Version 4.3.0 (Debian 4.3.0-0ds2.0.0woody1 20030307145421 marcelo@)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-ac2 i686 [ELF]
Build Date: 07 March 2003
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.22 ([EMAIL PROTECTED]) (gcc version 2.95.4 20011002 
(Debian prerelease)) #1 SMP Wed Oct 1 15:30:58 CDT 2003 T





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


Re: [XFree86] kvm switch causing mouse problems

2004-01-08 Thread praveen
On Thu, 8 Jan 2004 22:32:56 +0100, Egbert Eich [EMAIL PROTECTED] wrote:

Mark Vojkovich writes:
 
 XFree86's mouse protocol handling doesn't seem to be able to
  handle interruptions/inconsistencies in the protocol stream that
  kvm switches cause.  As far as I can tell, XFree86 has always had
  this problem.  Other than switching VTs to force a the server
  to reset its state machine, I don't know of another solution.
 
The problem are not so much intermediate inconsitencies in the protocol
but rather the fact that the mouse gets powered down and up again
by some kvms loosing all its configuration data.
One may be able to work around this problem by choosing the auto 
protocol.
egbert, how can i use this auto protocol. i am somewhat unfamiliar with 
what you are talking about but if it requires me to get/build/install some 
source, i can try that.

This attempts to redetect the mouse when inconsitencies in the data 
stream
persist.
However I cannot tell for sure. I never had a kvm for testing when I
implemented the auto protocol.

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


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


[XFree86] Failed to load module bitmap

2003-11-04 Thread Praveen M
Please help me, my Xserver crashed.

REPORT
--

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: Tue Nov
 4 16:37:44 2003
(==) 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
(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...


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]



__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] mouse goes nuts with KVM

2003-10-17 Thread Praveen Kallakuri
hi


i have a belkin 4-port KVM switch to which i have my monitor connected to
a linux box and a windows box. the problem i see is, whenever i switch
from windows to linux, the mouse in X-windows goes extra-sensitive. even
the smallest movement will send it all around the screen and it even
clicks on unintended objects on the screen. i have to switch to and get
back from one of the other tty's (using ctrl+alt+F1/F2/F3..) to get the
mouse behave itself again. 

can anyone tell me why its happening? i am using xfree 4.3 on a debian
woody installation with kernel 2.4.22. i installed 4.3 using binaries on
one of the mirrors. its using libc 6.2.5. i am using gdm and gnome 1.4. my
mouse is an intelliMouse 1.3A PS/2 compatible and this is how it is
configured in XF86Config-4


Identifier  Dell IntelliMouse
Driver  mouse
Option ProtocolIMPS/2
Option Device  /dev/psaux
Option ZAxisMapping 4 5
Option Emulate3Buttons no

# Mouse-speed setting for PS/2 mouse.

#Option Resolution256

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#Option Protocol  Xqueue

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#Option BaudRate  9600
#Option SampleRate150

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#Option Emulate3Buttons
#Option Emulate3Timeout50

# ChordMiddle is an option for some 3-button Logitech mice

#Option ChordMiddle

EndSection

-

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


Re: [XFree86] nvidia quadro 280: cannot start x

2003-10-15 Thread praveen kallakuri
Mark Vojkovich wrote:
On Tue, 14 Oct 2003, Praveen Kallakuri wrote:


hi

i am having trouble starting x with this nvidia quadro graphics card on a dell 
precision 360. i got the driver from nvidia's website and
installed it. i really think its not a driver issue but something fundamental with X. 
this is a new debian installation and i have never
run X on it before. i did upgrade to xfree 4.3 though and built a new 2.4.22 kernel. i 
attached the log and the config file. can someone
tell me where i am going wrong?


  You seem to have a problem with your XFree86 installation.  You
have version 4.3, yet at least one of your XFree86 modules (the
one it's crashing on) is from 4.2.
(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
			Mark.

doesn't that happen sometimes? i mean i did run across modules that 
belonged to prev versions but still included because they could work. in 
any case, i guess what you are asking me to do is run a fresh install of 
xf4.3. i was planning to do that... basically i will move /etc/X11R6 and 
/etc/X11 and reinstall x. hope that will work.
--
k.p.

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


Re: [XFree86] nvidia quadro 280: cannot start x SOLVED

2003-10-15 Thread Praveen Kallakuri
On Wed, Oct 15, 2003 at 12:58:58PM -0400, Mark Vojkovich wrote:
 On Wed, 15 Oct 2003, praveen kallakuri wrote:
 
  Mark Vojkovich wrote:
   On Tue, 14 Oct 2003, Praveen Kallakuri wrote:
   
   
  hi
  
  
  i am having trouble starting x with this nvidia quadro graphics card on a dell 
  precision 360. i got the driver from nvidia's website and
  installed it. i really think its not a driver issue but something fundamental 
  with X. this is a new debian installation and i have never
  run X on it before. i did upgrade to xfree 4.3 though and built a new 2.4.22 
  kernel. i attached the log and the config file. can someone
  tell me where i am going wrong?
  
   
   
 You seem to have a problem with your XFree86 installation.  You
   have version 4.3, yet at least one of your XFree86 modules (the
   one it's crashing on) is from 4.2.
   
   (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
   
   
  doesn't that happen sometimes? i mean i did run across modules that 
  belonged to prev versions but still included because they could work. in 
 
I don't think so.  If you build XFree86 4.3 you get 4.3 modules.
 Mixing modules usually works, but not always.  Pcidata is one of 
 those modules that should get upgraded with each new server.
 
  any case, i guess what you are asking me to do is run a fresh install of 
  xf4.3. i was planning to do that... basically i will move /etc/X11R6 and 
  /etc/X11 and reinstall x. hope that will work.
 
I think all you need to do is remove the /usr/X11R6/lib/modules 
 directory and reinstall.  Note you'll need to reinstall NVIDIA's
 binary drivers after upgrading XFree86, as XFree86 will blow away
 NVIDIA's OpenGL libraries.
 
 
   Mark.
 


i have my x-windows workig now. like you said mark, i reinstalled 4.3
having renamed /usr/X11. after that i reinstalled nvidia drivers and then
had some trouble with the mouse. i finally figured out that i had to point
to /dev/psaux. 

thanks 

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


[XFree86] nvidia quadro 280: cannot start x

2003-10-14 Thread Praveen Kallakuri
hi


i am having trouble starting x with this nvidia quadro graphics card on a dell 
precision 360. i got the driver from nvidia's website and
installed it. i really think its not a driver issue but something fundamental with X. 
this is a new debian installation and i have never
run X on it before. i did upgrade to xfree 4.3 though and built a new 2.4.22 kernel. i 
attached the log and the config file. can someone
tell me where i am going wrong?

thanks

-praveen
# File generated by xf86config.

#
# Copyright (c) 1999 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the Software),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# 
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file.
# **

# **
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **
#
Section Module

# This loads the DBE extension module.

Loaddbe   # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection  extmod
  Optionomit xfree86-dga   # don't initialise the DGA extension
EndSubSection

# This loads the Type1 and FreeType font modules
Loadtype1
Loadspeedo
#Loadfreetype
#Loadxtt

# This loads the GLX module
Load   glx
# This loads the DRI module
#Load   dri

EndSection

# **
# Files section.  This allows default font and rgb paths to be set
# **

Section Files

# 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.

RgbPath /usr/X11R6/lib/X11/rgb

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
# 
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
# 

FontPath   /usr/X11R6/lib/X11/fonts/local/
FontPath   /usr/X11R6/lib/X11/fonts/misc/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/Type1/
#FontPath   /usr/X11R6/lib/X11/fonts/TrueType/
#FontPath   /usr/X11R6/lib/X11/fonts/freefont/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/

# The module search path.  The default path is shown here.

#ModulePath /usr/X11R6/lib/modules

EndSection

# **
# Server flags section.
# **

Section ServerFlags

# Uncomment this to cause a core dump at the spot where a signal is 
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#Option NoTrapSignals

# Uncomment this to disable the CrtlAltFn VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#Option DontVTSwitch

# Uncomment this to disable

[XFree86] Problem with Intel 82845G/GL

2003-08-14 Thread Praveen K V
Hi,

I have a DELL PC with Intel Chipset 82845G/GL. I am not able to get 
resolution beyond 640x480 with 16-bit color. If I use color depth of 8, 
then I can go upto 1024x768. I have installed RedHat 9.0. Please find 
the XF86Config and the log file attached.

Can anybody please help me in finding what's the problem and how to fix it?

Thanks  in advance,
Praveen
Contents of XF86Config--

# XFree86 4 configuration created by redhat-config-xfree86

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  XkbModelpc102
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  XkbModelmicrosoft
#
# 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 yes
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
ModelNameDell E772p
DisplaySize  300230
HorizSync30.0 - 70.0
VertRefresh  50.0 - 160.0
Option  dpms
EndSection
Section Device
Identifier  Videocard0
Driver  i810
VendorName  Videocard vendor
BoardName   Intel 845
VideoRam16384
EndSection
Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 8
SubSection Display
Depth 24
Modes1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth 16
Modes1024x768 800x600 640x480
EndSubSection
Subsection Display
Depth   8
Modes   1280x1024 1024x768 800x600 640x480
ViewPort0 0
EndSubsection
EndSection
Section DRI
Group0
Mode 0666
EndSection


End of XF86Config

Contents of XFree86.0.log
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-18)
Release Date: 9 May 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.21-1.1931.2.307.entbigmem i686 [ELF]
Build Date: 22 July 2003
Build Host: bugs.devel.redhat.com
Before reporting any problems, please make sure you are using the most
recent XFree86 packages available from Red Hat by checking for updates
at http://rhn.redhat.com/errata or by using the Red Hat Network up2date
tool.  If you still encounter problems, please file bug reports in the
XFree86.org bugzilla at http://bugs.xfree86.org and/or Red Hat
bugzilla at http://bugzilla.redhat.com
Module Loader present
OS