CVS Update: xc (branch: trunk)

2003-07-31 Thread Mark Vojkovich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/07/31 14:41:26

Log message:
Fix a bug where the video blitter had the wrong colors in depth 15.

Modified files:
  xc/programs/Xserver/hw/xfree86/drivers/nv/:
nv_dma.h nv_video.c 
  
  Revision  ChangesPath
  1.2   +2 -1  xc/programs/Xserver/hw/xfree86/drivers/nv/nv_dma.h
  1.16  +11 -1 xc/programs/Xserver/hw/xfree86/drivers/nv/nv_video.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


XSetInputFocus + XEmbed + Keyboard events to the wrong windows

2003-07-31 Thread Andreas Aardal Hanssen
Hello, there.

I'm currently working on an implementation of XEmbed, and have run
into a problem with XSetInputFocus. Please redirect me to the right
forum if this was posted to the wrong place.

What I'm troubled with is Keyboard Focus, described here:

http://www.freedesktop.org/standards/xembed-spec/0.5-html/ar01s03.html

In detail, the topmost embedder creates a not-visible X Window to
hold the focus, the focus proxy. (It might be a 1x1 child window of
toplevel located at -1,-1.) Since the focus proxy isn't an ancestor of
the client window, the X focus can never move into the client window
because of the mouse pointer location. In other words, whenever the
outer window is activated (receives the X input focus), it has to put
the X focus on the FocusProxy by calling XSetInputFocus().

 focusProxy- *
  |A   |
  |__  |
  |   |B | |
  |   |__| |
  ||
  ||

So I have a window A with a focusproxy child window, measuring 1x1 at
-1,-1, and I call XSetInputFocus on this focusproxy with
RevertToParent.

- To emphasize, B isn't a child window of A (in XEmbed, the
embedder).  B is a window created by a seperate application, which
has called XReparentWindow to reparent B into A. So B is the XEmbed
client. B actually fully covers A, so the size difference in my art
is just for clarity.

The problem is that the focusproxy receives all keyboard events only
if the mouse pointer is outside window A (the embedder window). On or
outside the window decorations, doesn't matter as long as the mouse
pointer is outside window A.

If the mouse pointer is inside window A, window B gets the keyboard
events directly. If I move the mouse pointer out of the window A
again, my focusproxy gets keyboard events again.

Installing an x11 event filter gives me the EnterNotify and
LeaveNotify for A and B as I cross the border of window A. I also get
a KeymapNotify, and I guess (having no clue really) that this is X11's
way of telling me that A isn't getting keyboard events anymore.

So my question is this: Is the XEmbed protocol broken, is my X11
server broken, or is my code broken, and in which way.

Any help will be greatly appreciated,

Andreas :-)

-- 
Andreas Aardal Hanssen


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


smproxy and gnome-smproxy break the XSMP

2003-07-31 Thread Olivier Chapuis
Hello,

Both smproxy and gnome-smproxy has a bug. I will describe this
bug and propose solutions.

First I recall one paragraph of the X session manager protocol
(XSMP) specification:

  Some clients may wish to manage  the  programs  they  start.
  For  example,  a  mail program could start a text editor for
  editing the text of a mail message.  A client that does this
  is a session manager itself; it should supply the clients it
  starts with the appropriate  connection  information  (i.e.,
  the  SESSION_MANAGER  environment variable) that specifies a
  connection to itself instead of to  the  top  level  session
  manager. [end of section 3]

So a simple client can be a session manager (sm for short) for a set
of clients it starts itself. As the SESSION_MANAGER env variable is
set to point on the simple client, the top level sm does not manage
the clients which are XSMP compliant (because they connect to the
simple sm).  Now if one of these clients uses the old session manager
protocol (based on the WM_COMMAND, WM_SAVE_YOUR_SELF, ...etc
properties, see the appendix C of the ICCCM2) and if either smproxy or
gnome-smproxy run, then the top level sm will manage this client. More
exactly want can happen is a competition between the simple and the
top level sm (via sm proxies, if the simple sm has a proxy) for
managing the client.  That's the bug.

The reason is clear. When a top level window is mapped the sm proxies
should compute the value of the SESSION_MANAGER ev on the application
which maps the window and should ignore this window if this value is
not equal to the proxy SESSION_MANAGER ev (or should connect the
correct sm).

Both smproxy and gnome-smproxy do not do that ... a good reason
is that it is _not_ possible to do that (in general).

I see two solutions:

1. Remove smproxy from XFree and gnome-smproxy from GNOME with
the hope that all alive applications which use the old sm protocol
will switch to the new one. Probably a bad solution ...? By the
way it seems that KDE does not have and do not run by default a
sm proxy.

2. Add a simple protocol between sm proxies and sm by using a property
SESSION_MANAGER(STRING) which can be set by a sm (top level or not)
on a leader window:

  A session manager can set on a leader window (which use the old
  session manager protocol) a property SESSION_MANAGER(STRING) set
  to the value of its network address (i.e., the value of its
  SESSION_MANAGER environment variable). A sm proxy should use this
  property to contact the correct sm or to ignore this window if it
  works for only one sm (e.g., the top level one) and the value of
  this property is not the network address of its session manager.
  The proxy should monitor the SESSION_MANAGER property and update
  the sm connection(s) accordingly (typically a window will map
  without the SESSION_MANAGER property set, if SM_CLIENT_ID is not
  set a concerned sm can then set the SESSION_MANAGER property).
  [We can do a more safe stuff: add a SESSION_MANGER_CHECK_WINDOW(Window)
  property that should be also set by the sm on the top level window
  and gives the id of a window which belongs to the sm and have the
  property SESSION_MANGER_CHECK(STRING) set to the value of the
  SESSION_MANAGER property. This can be used by a sm to answer the
  question: does an other alive sm already set the SESSION_MANAGER
  property?]

It will be simple to modify smproxy and gnome-smproxy to avoid the bug
by using this protocol (just monitor the SESSION_MANAGER property and
if it is not equal to the value of the SESSION_MANAGER ev variable of
the proxy, ignore the window). I can provide a patch for smproxy
(which will be easy to apply to gnome-smproxy).  In the future, if
needed, one can imagine a sm proxy which works for all the running
(master and simple) sm.

I am not an XFree developer neither a GNOME developer. If the
maintainers of smproxy and gnome-smproxy can be agree on a method to
solve the described bug (as the solution proposed or any others), then
the first step will be to modify smproxy and gnome-smproxy (I am ready
to provide patches). The second step is to document the solution (Of
course the sources code can be considered as a good documentation). I
suggest that this should not be discussed now as this is useless if
both smproxy and gnome-smproxy maintainers do not want to fix the
described bug.

Regards, Olivier

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


Re: XFree86 over Firewire !

2003-07-31 Thread Mathieu Lacage
Hi Dwipal,

Le jeu 31/07/2003  00:07, Dwipal Desai a crit :

 that are very low. I want to use X directly over firewire so that stream 
 of around 300 MB/s can be obtained.

If I wanted to do this, I'd hack a firewire transport layer for X in
xc/lib/Xtrans/

Mathieu
-- 
Mathieu Lacage [EMAIL PROTECTED]


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


rough code paths draft doc

2003-07-31 Thread Mathieu Lacage
hi,

I eventually got over my previous AddInputHandler puzzling and kept on
reading code until I finished the included rough outline of useful
code paths in the XServer.

I am planning to turn this into a real documentation but real life
matters make it unreasonable for me to finish this before the end of
august. As such, I thought some people might find it useful as-is.

Mathieu
-- 
Mathieu Lacage [EMAIL PROTECTED]

main:
-

xc/programs/Xserver/dix/main.c:main
  hw/xfree86/common/xf86Init.c:InitOutput
  hw/xfree86/common/xf86Init.c:InitInput
  Xserver/dix/dispatch.c:Dispatch
hw/xfree86/common/xf86Events.c:ProcessInputEvents
Xserver/os/WaitFor.c:WaitForSomething
ReadRequestFromClient
result = (* client-requestVector[MAJOROP])(client) which ends in one of the 
functions stored in dix/tables.c
 dix/dispatch.c:ProcPolyPoint
include/dix.h:VALIDATE_DRAWABLE_AND_GC
  ValidateGC
pGC-funcs-ValidateGC
  XAAValidateGC
(*pGC-ops-PolyPoint)(pDraw, pGC, stuff-coordMode, npoint,(xPoint *) 
stuff[1]);
  


InitOutput:
---

  hw/xfree86/common/xf86config.c:xf86HandleConfig
hw/xfree86/common/xf86Config.c:configLayout
  hw/xfree86/common/xf86Config.c:configInput
hw/xfree86/common/xf86Config.c:configInputKbd
  set xf86Info.kbdEvents to one of xf86KbdEvents, xf86XqueEvents or 
xf86WSKbdEvents.
  driver-PreInit
driver/neomagic/neo_driver.c:NEOPreInit
  driver/neomagic/neo_2070.c:Neo2070AccelInit
xaa/xaaInit.c:XAAInit
  xaa/xaaInitAccel.c:XAAInitAccel (finish intialization of gc-ops)
  Xserver/dix/dixutils.c:RegisterBlockAndWakeupHandlers (NoopDDA, xf86Wakeup)


InitInput:
--

foreach input driver specified in config file
  driver-PreInit which ends in
hw/xfree86/input/mouse.c:MousePreInit
hw/xfree86/common/xf86helper.c:xf86AllocateInput
  pInfo-read_input = MouseReadInput
  pMse-PostEvent = MousePostEvent
foreach input driver registered with xf86AllocateInput
  xf86Xinput.c:xf86ActivateDevice
dix/device.c:AddInputDevice
  _AddInputDevice
 dev-deviceProc = deviceProc;
xf86XinputFinalizeInit
one of RegisterPointerDevice or RegisterKeyboardDevice
   device-public.processInputProc = ProcessKeyboardEvent;
   device-public.realInputProc = ProcessKeyboardEvent;
   device-ActivateGrab = ActivateKeyboardGrab;
   device-DeactivateGrab = DeactivateKeyboardGrab;
if (no XInput support)
  :mieqInit (register core keyboard and pointer)
else
  hw/xfree86/common/xf86XInput.c:xf86eqInit (register core keyboard and pointer)
xf86EventQueue.pKbd = pKbd;
xf86EventQueue.pPtr = pPtr;


ProcessInputEvents:
---

  if (no XInput support)
Xserver/mi/mieq.c:mieqProcessInputEvents
  else
Xserver/hw/xfree86/common/xf86Xinput.c:xf86eqProcessInputEvents
  if (key pressed)
(*xf86EventQueue.pKbd-processInputProc)
   Xserver/dix/events.c:ProcessKeyboardEvent
 DeliverGrabbedEvent or DeliverDeviceEvent
  else if (mouse event)
(*(inputInfo.pointer-public.processInputProc)) 
   Xserver/dix/events.c:ProcessPointerEvent 
 DeliverGrabbedEvent or DeliverDeviceEvent
   DeliverEventsToWindow
 TryClientEvents
   WriteEventsToClient
 Xserver/os/io.c:WriteToClient
   ReplyCallback -- used by other pieces of code interested 
in the reply going out
   if (not enough data)
 bufferize
   else
 FlushClient
   xc/lib/xtrans/Xtrans.h:_XSERVTransWritev
  xc/lib/xtrans/Xtrans.c:ciptr-transptr-Writev which 
ends in
xc/lib/xtrans/Xtranslcl.c:TRANS(LocalWritev) 
(local case)
xc/lib/xtrans/Xtranssock.c:TRANS(SocketWritev) 
(networked case)


WaitForSomething:
-

  while (1) {
Xserver/dix/dixutils.c:ProcessWorkQueue
Xserver/dix/dixutils.c:BlockHandler (invoke each function in the BlockHandler 
list with the waittime as param)
   hw/xfree86/common/xf86Events.c:xf86Wakeup
   if (events) {
 xf86Info.kbdEvents which ends in
   hw/xfree86/common/xf86Events.c:xf86PostKbdEvent (convert hardware 
keycode into X keycode)
 ENQUEUE
   EqEnqueue
   __EqEnqueue
 xc/programs/Xserver/hw/xfree86/common/xf86Xinput.c:xf86eqEnqueue 
(insert event in 
   xf86EventQueue.events)
 foreach fd which is an input dev, pInfo-read_input which ends in
   

Re: XSetInputFocus + XEmbed + Keyboard events to the wrong windows

2003-07-31 Thread Owen Taylor
On Thu, 2003-07-31 at 09:29, Andreas Aardal Hanssen wrote:
 Hello, there.
 
 I'm currently working on an implementation of XEmbed, and have run
 into a problem with XSetInputFocus. Please redirect me to the right
 forum if this was posted to the wrong place.
 
 What I'm troubled with is Keyboard Focus, described here:
 
 http://www.freedesktop.org/standards/xembed-spec/0.5-html/ar01s03.html

Note that [EMAIL PROTECTED] would likely be a better place for
this mail, since that's the normal place for discussing the
freedesktop.org specifications.

[...]

  XSetInputFocus().
 
  focusProxy- *
   |A   |
   |__  |
   |   |B | |
   |   |__| |
   ||
   ||
 
 So I have a window A with a focusproxy child window, measuring 1x1 at
 -1,-1, and I call XSetInputFocus on this focusproxy with
 RevertToParent.
 
 - To emphasize, B isn't a child window of A (in XEmbed, the
 embedder).  B is a window created by a seperate application, which
 has called XReparentWindow to reparent B into A. So B is the XEmbed
 client. B actually fully covers A, so the size difference in my art
 is just for clarity.

I assume you mean B wasn't created as a child window of A. If it
has been successfully reparented into A, it will then be a child
window of A.

 The problem is that the focusproxy receives all keyboard events only
 if the mouse pointer is outside window A (the embedder window). On or
 outside the window decorations, doesn't matter as long as the mouse
 pointer is outside window A.
 
 If the mouse pointer is inside window A, window B gets the keyboard
 events directly. If I move the mouse pointer out of the window A
 again, my focusproxy gets keyboard events again.

Are you sure that the focusproxy window is getting the events, not
window A? It sounds very much to me like you simply didn't manage
to get the focus set to the focusproxy window.

Note that the focus has to be set to the focusproxy window each
time that the toplevel gets focused; this requires participating
in the WM_TAKE_FOCUS protocol as described in the ICCCM.

 Installing an x11 event filter gives me the EnterNotify and
 LeaveNotify for A and B as I cross the border of window A. I also get
 a KeymapNotify, and I guess (having no clue really) that this is X11's
 way of telling me that A isn't getting keyboard events anymore.

No, keymap notifies shouldn't be related.

 So my question is this: Is the XEmbed protocol broken, is my X11
 server broken, or is my code broken, and in which way.

Definitely your code is broken; the setup in XEMBED works fine for
GTK+, for KDE, on a wide ranger of different X servers.

Regards,
Owen


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


Re: CVS Update: xc (branch: trunk)

2003-07-31 Thread David Dawes
On Thu, Jul 31, 2003 at 07:15:43AM +0200, Alexander Pohoyda wrote:
David Dawes [EMAIL PROTECTED] writes:

 going back to 3.3.  Unless someone comes up with a better solution,
 that's what I'm planning to do.

OK, it seems to be the best solution in this situation.

I dare to propose another solution, however: to delete the `geometry'
directory and created a new one (named `geometry2` or `geom` or
whatever) which will have companies as lowercased directories.


 Is there a reason why the extra geometry descriptions couldn't be added
 to the original 'hp' file instead of putting them in separate files in
 a subdirectory?  XKB should allow multiple descriptions per file.

Yes, that's right. This is not a limitaton of XKB.
If you have a look into newly created geometry, you'll see that it
already contains 3 sections, which are nested and re-used:
1. for the mouse stick
2. for the base frame and common buttons
3. for US keyboard layout.

Some other geometries (like ibm/thinkpad) have also
4. for national layouts.

I believe that this is a correct way to develop geometries for
related keyboards and I think that it is logical to combine them into
one file.
Knowing all the problems now, I would still prefer this solution.
I have already developed 4 geometry specifications and will continue
to do so. I don't want to create problems, though :-)

OK, so if I understand you correctly, we can re-add the old 'hp' file,
and add the omnibook descriptions to it.  New descriptions for other
vendor keyboards can be added to existing files rather than creating
new directories.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: smproxy and gnome-smproxy break the XSMP

2003-07-31 Thread Havoc Pennington
On Thu, Jul 31, 2003 at 03:25:23PM +0200, Olivier Chapuis wrote: 
 1. Remove smproxy from XFree and gnome-smproxy from GNOME with
 the hope that all alive applications which use the old sm protocol
 will switch to the new one. Probably a bad solution ...? By the
 way it seems that KDE does not have and do not run by default a
 sm proxy.

I agree with Owen that this is right, the smproxy stuff is just a bad
idea.

I think KDE does have some try to manage non-SM apps code also, I
don't remember the details though. Someone was claiming that KDE
successfully restarts netscape/mozilla for example.

My memory is that I tried to find the code that did this and didn't
succeed. Anyway, so I don't know whether it would have the same issue
or not.

Havoc

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


Re: CVS Update: xc (branch: trunk)

2003-07-31 Thread Alexander Pohoyda
 Knowing all the problems now, I would still prefer this solution.
 I have already developed 4 geometry specifications and will continue
 to do so. I don't want to create problems, though :-)
 
 OK, so if I understand you correctly, we can re-add the old 'hp' file,
 and add the omnibook descriptions to it.

That's right, we can.


New
descriptions for other
 vendor keyboards can be added to existing files rather than creating
 new directories.

OK, let's do it this way.
Some brands just had luck to be created as directories in the first place.

-- 
Alexander Pohoyda
[EMAIL PROTECTED]

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


Re: XSetInputFocus + XEmbed + Keyboard events to the wrong windows

2003-07-31 Thread Andreas Aardal Hanssen
On Thu, 31 Jul 2003, Owen Taylor wrote:
On Thu, 2003-07-31 at 09:29, Andreas Aardal Hanssen wrote:
 - To emphasize, B isn't a child window of A (in XEmbed, the
 embedder).  B is a window created by a seperate application, which
 has called XReparentWindow to reparent B into A. So B is the XEmbed
 client. B actually fully covers A, so the size difference in my art
 is just for clarity.
I assume you mean B wasn't created as a child window of A. If it
has been successfully reparented into A, it will then be a child
window of A.

Yes, that was what I meant. It's certainly a child window but it wasn't
created as one.

 events directly. If I move the mouse pointer out of the window A
 again, my focusproxy gets keyboard events again.
Are you sure that the focusproxy window is getting the events, not
window A? It sounds very much to me like you simply didn't manage
to get the focus set to the focusproxy window.

You're right, it's window A that gets the events and not the focus proxy.
:-)

Note that the focus has to be set to the focusproxy window each
time that the toplevel gets focused; this requires participating
in the WM_TAKE_FOCUS protocol as described in the ICCCM.

I'll dig more into this here.

 So my question is this: Is the XEmbed protocol broken, is my X11
 server broken, or is my code broken, and in which way.
Definitely your code is broken; the setup in XEMBED works fine for
GTK+, for KDE, on a wide ranger of different X servers.

Thanks :-)

Andy

-- 
Andreas Aardal Hanssen

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


Re: CVS Update: xc (branch: trunk)

2003-07-31 Thread Alexander Pohoyda
David Dawes [EMAIL PROTECTED] writes:

 On Thu, Jul 31, 2003 at 07:15:43AM +0200, Alexander Pohoyda wrote:
 I believe that this is a correct way to develop geometries for
 related keyboards and I think that it is logical to combine them into
 one file.
 
 OK, so if I understand you correctly, we can re-add the old 'hp' file,
 and add the omnibook descriptions to it.  New descriptions for other
 vendor keyboards can be added to existing files rather than creating
 new directories.

If you decide to go this way, please let me know and I will be happy
to prepare new diffs.
This strategy will require some re-arrangements: instead of accessing
a `hp/omnibook(us)', we'll need to do `hp(omnibook.us)' or whatever.

Actually, we are trying to fit company/family/model/variant into
2-level structure file/section.


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


Rewrite of the NV driver

2003-07-31 Thread Mark Vojkovich
 
   In CVS I have just checked in something I've been working on 
for a few weeks.  It is a substantial rewrite of the nv driver,
the main changes being removal of Riva128 into a separate module 
and a complete rewrite of the graphics acceleration for TNT and 
GeForce chips.  Aspects of the driver operation that do not have
anything to do with acceleration have not changed.  Summary:

1) Riva128 support is moved out of the nv driver and into a separate
   riva128 module, which is essentially the old nv driver stripped 
   down to support only the Riva128.  Riva128 support has not changed
   from the previous driver and you still specify driver nv for it.
   The new nv driver will load the riva128 module for the legacy
   support when it needs to.  So it is essentially two drivers: one for
   Riva128 and a rewritten one for newer chips, but you get either by 
   specifying the nv driver.

2) I've moved from using MMIO to program the graphics engine over to
   video ram command buffers.  This makes programming of the engine
   more efficient.

3) The driver supports a hardware planemask now.

4) I've added support for scaled blits and they are being exposed as
   a new Xv adaptor which exports YUV formats and an 8:8:8:8 XRGB format.

5) GeForce products now support virtual desktops up to 4080x4096  
   (was 2048x2048).

6) Updated many timing parameters for GeForce3, GeForce4 Ti and 
   GeForceFX chips, so those should have better performance now.


Testers appreciated.  It works on all the cards I've tested on, but
you know how these things go...  Something is bound to have broken
somewhere.


Mark.

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


[XFree86] System hung after install XFree86 4.1.0-49 packages

2003-07-31 Thread Yujie Liang
Hi, folks

I have a Linux 7.2 system (Kernel-2.4.18-18.7.x, AMD 1600+, 1.5GB RAM, S3 Savage4 
integrated VGA card, Via on-board sound, 3Com 966B-T and Intel 100Pro NICs, 
DiamondView 1772e monitor, Standard KB and MS Intelli PS2 mouse). The system was 
running fine under current kernel. 

I installed XFree86 4.1.0-49 packages by Red Hat up2date service, After I reboot to 
text mode, it was fine. But when I run startx the system hung and the screen was 
black, I couldn't even move mouse and keyboard. After I hard-reset the system, I ran 
Xconfigurator, I just chose basic configuration then when I tested the setting, the 
system hung again. I couldn't return to the text mode.

Then I tried to uninstall the package but it showed me error: Fatal error in Python 
code occured [[6]]

The previous version was Xfree86-4.1.0-3 which worked fine. How can I fix it, or how 
can I downgrade it to previous version?

I attach the packages list for this upgrade. As well as the XF86Config, XF86Config-4  
XFree86.0.log.

Any comment will be appreciated.

Thank you.

Yujie Liang
[EMAIL PROTECTED]

Packages upgraded:
XFree86-100dpi-fonts-4.1.0-25.i386.rpm
XFree86-100dpi-fonts-4.1.0-49.i386.rpm
XFree86-4.1.0-25.i386.rpm
XFree86-4.1.0-49.i386.rpm
XFree86-75dpi-fonts-4.1.0-25.i386.rpm
XFree86-75dpi-fonts-4.1.0-49.i386.rpm
XFree86-ISO8859-15-100dpi-fonts-4.1.0-25.i386.rpm
XFree86-ISO8859-15-100dpi-fonts-4.1.0-49.i386.rpm
XFree86-ISO8859-15-75dpi-fonts-4.1.0-25.i386.rpm
XFree86-ISO8859-15-75dpi-fonts-4.1.0-49.i386.rpm
XFree86-devel-4.1.0-25.i386.rpm
XFree86-devel-4.1.0-49.i386.rpm
XFree86-libs-4.1.0-25.i386.rpm
XFree86-libs-4.1.0-49.i386.rpm
XFree86-tools-4.1.0-25.i386.rpm
XFree86-tools-4.1.0-49.i386.rpm
XFree86-twm-4.1.0-25.i386.rpm
XFree86-twm-4.1.0-49.i386.rpm
XFree86-xdm-4.1.0-25.i386.rpm
XFree86-xdm-4.1.0-49.i386.rpm
XFree86-xfs-4.1.0-25.i386.rpm
XFree86-xfs-4.1.0-49.i386.rpm


XF86Config ===



# File generated by XConfigurator.

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

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

FontPath   unix/:7100

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

# Uncomment this to disable the CrtlAltBS server abort sequence
# This allows clients to receive this key event.
#DontZap

# Uncomment this to disable the CrtlAltKP_+/KP_- mode switching
# sequences.  This allows clients to receive these key events.
#DontZoom

EndSection

# **
# Input devices
# **

# **
# Keyboard section
# **

Section Keyboard

ProtocolStandard

# when using XQUEUE, comment out the above line, and uncomment the
# following line
#Protocol   Xqueue

AutoRepeat  500 5

# Let the server do the NumLock processing.  This should only be 
# required when using pre-R6 clients
#ServerNumLock

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

#To set the LeftAlt to Meta, RightAlt key to ModeShift, 
#RightCtl key to Compose, and ScrollLock key to ModeLock:

LeftAltMeta
RightAltMeta
   ScrollLock  Compose
   RightCtlControl

# To disable the XKEYBOARD extension, uncomment XkbDisable.

#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:
#XkbModelpc102
# If you have a US Microsoft Natural keyboard, you can use:
#XkbModelmicrosoft
#
# Then to change the language, change the Layout 

R: [XFree86] Problem with X 4.3.0 and ATI All-in-Wonder radeon 7500 AGP card

2003-07-31 Thread DANIELE BAGNAI









A
question?

Do
you have a TV output connected to the TV or VCR in your card?



If
so disconnect the output from the TV before starting the PC.



DANIELE





-Messaggio
originale-
Da: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Per conto
di Rajiv Baxi
Inviato: mercoledì 30 luglio 2003
21.21
A: [EMAIL PROTECTED]
Oggetto: [XFree86] Problem with X
4.3.0 and ATI All-in-Wonder radeon 7500 AGP card





I'm having trouble
with XFree86 4.3.0 and the ATI All-in-wonder radeon 7500 with DVI output. I am using a 15 Dell D825HT CRT Monitor. The following
is the log output (more comments following the log file):






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.21-0.13mdksmp i686 [ELF] 
Build Date: 12 March 2003
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 Jul 30 13:33:56
2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Simple Layout
(**) |--Screen screen1 (0)
(**) | |--Monitor monitor1
(**) | |--Device device1
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc104
(**) XKB: model: pc104
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to
/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 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, 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,2560 card 1043,80b2 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2561 card , rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1043,8089 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1043,8089 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1043,8089 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1043,8089 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card , rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1043,8089 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1043,80b0 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5157 card 1002,0f2a rev 00 class 03,00,00 hdr 00
(II) PCI: 02:03:0: chip 1106,3044 card 1106,3044 rev 80 class 0c,00,10 hdr 00
(II) PCI: 02:04:0: chip 105a,3376 card 1043,809e rev 02 class 01,04,00 hdr 00
(II) PCI: 02:05:0: chip 14e4,16a6 card 1043,80a9 rev 02 class 02,00,00 hdr 00
(II) PCI: 02:0c:0: chip 105a,4d68 card 105a,4d68 rev 02 class 01,80,85 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] -100x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -100x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -100x - 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] -100xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -100xef00 - 0xefdf (0xe0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -100xeff0 - 0xf7ff (0x810) 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] -100x8000 - 0x80ff (0x100) IX[B]
[1] -100x8400 - 

RE: [XFree86] Newbie question - Using XFree86 with no graphics or monitor

2003-07-31 Thread Oli Comber
By Hummingbird, you mean 'Reflections', ie an Xserver on a PC?

Its important to remember that the bit that displays everything, even though 
its the remote end that you're sitting at, is the _server_.  The machine 
hosting the xterm/openoffice/gnome session and sending it to you is the 
_client_.

You shouldn't have any/many problems with that: start your Reflections 
session, telnet in, export your display (export DISPLAY=PC IP address:0) and 
run the appropriate Xclient.  If you're using another unix box instead of 
reflections, dont forget to 'xhost + suse host' on it to allow the client to 
use the display.

If you're feeling cheeky, run Xnest and start Gnome inside it, to get that 
'computer in a window' feel ;)

-Oli


= Original Message From Yann E. MORIN [EMAIL PROTECTED] 
=
On Wednesday 30 July 2003 18:25, you (Greg Peter) wrote :
I might be missing something simple.  Here is my scenario:
  Hardware  IBM RS/6000   7043-150 workstation
  Software  SUSE SLES 8.0
  XFree86 Version   4.2.0
  The graphics card I was using was not supported so I removed it before
  doing the SuSe install.  I wanted to know if I can just
  get the server portion up and then export my display to a hummingbird
  client on another system??

I don't know the best answer, but why not use the kernek virtuale framebuffer
and run your server on top of it?

Regards,
Yann.

--
.-..--.--
--.
|  Yann E. MORIN  | Real-Time Embedded | /\ ASCII RIBBON | Erics' 
conspiracy: |
| +0/33 662376056 | Software  Designer | \ / CAMPAIGN |  ___
 |
| --== °_° ==-- °---.:  X  AGAINST  |  \e/  There is no
 |
| web: ymorin.free.fr | [EMAIL PROTECTED] 1833 | / \ HTML MAIL|   v   conspiracy.
 |
°-°°--°--
--°
 \__ np: Frederick Rousseau - The Prayer 
_/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


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


Re: [XFree86] Newbie question - Using XFree86 with no graphics or monitor

2003-07-31 Thread Egbert Eich
Greg Peter writes:
  XFree86ers,
  
I might be missing something simple.  Here is my scenario:
  
  Hardware  IBM RS/6000   7043-150 workstation
  Software  SUSE SLES 8.0
  XFree86 Version   4.2.0
  
  The graphics card I was using was not supported so I removed it before
  doing the SuSe install.  I wanted to know if I can just
  get the server portion up and then export my display to a hummingbird
  client on another system??
  

You mean a hummingbird server?
Yes, of course you can install and run Xnest. Try 'man 1 Xnest'.
If you have vnc running on the system where our hummingbird server
is located you can also use Xvnc.

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


Re: [XFree86] Newbie question - Using XFree86 with no graphics ormonitor

2003-07-31 Thread Craig Ringer
You shouldn't have any/many problems with that: start your Reflections 
session, telnet in, export your display (export DISPLAY=PC IP address:0) and 
run the appropriate Xclient.  If you're using another unix box instead of 
reflections, dont forget to 'xhost + suse host' on it to allow the client to 
use the display.
Even better, use ssh with PuTTY instead of telnet.

Also, if you use this a lot you can enable XDMCP on the unix box, at 
least if you run some kind of login manager. Then you can usually just 
do an XDMCP query to get a login screen remotely :-)

Methods of enabling xdmcp and doing XDMCP queries vary with different 
display managers and X servers, but yours should have some documentation 
on it.

Craig Ringer

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


[XFree86] starting XFree

2003-07-31 Thread Marcin Krotkiewski
hi all,

I have the following problem. I wish to start the Xserver
without automatically switching to the graphical console.
The problem is, I need to start an application and switch
to X only when it has started. Is it possible? I know
it can be done somehow, as swsuspend does something like that
actually. I can start X, switch to text console, suspend,
resume and go back to X, no problem.

If it is not directly possible, can anyone tell me,
what needs to be done, if at all possible?

I would really appreciate your help. 

Thanks

Marcin

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


[XFree86] starting XFree (repost)

2003-07-31 Thread Marcin Krotkiewski
hi all,

I have the following problem. I wish to start the Xserver
without automatically switching to the graphical console.
The problem is, I need to start an application and switch
to X only when it has started. Is it possible? I know
it can be done somehow, as swsuspend does something like that
actually. I can start X, switch to text console, suspend,
resume and go back to X, no problem.

If it is not directly possible, can anyone tell me,
what needs to be done, if at all possible?

I would really appreciate your help. 

Thanks

Marcin


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


[XFree86] NVIDIA problem

2003-07-31 Thread Fayçal Bouhafs
Hello,

I have a NVIDIA graphic card which i know just that it's a GEFORCE 4 
64MO, my machine run on woody debia linux OS with 2.4.18 kernel.

I read the NVIDIA installation mini-howto and I procced exactly as it's 
described in the mini-howto, but I can't start the XServer crash.

I join the XFree86 log file.

Thank's



XFree86 Version 4.2.0 / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 18 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.9-13smp i686 [ELF] 
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 Jul 31 13:06:13 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Generic Monitor
(**) |   |--Device Generic Video Card
(**) |--Input Device Generic Keyboard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout fr
(**) XKB: layout: fr
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Configured Mouse
(**) FontPath set to 
unix/:7100,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/CID,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/cyrillic,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi
(==) 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 file or directory)
(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 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 1734,1003 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2561 card , rev 01 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1734,1004 rev 01 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1734,1004 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1734,1004 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1734,1004 rev 01 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card , rev 81 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card , rev 01 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1734,1004 rev 01 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1734,1004 rev 01 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1734,0088 rev 01 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0182 card 107d,2922 rev a2 class 03,00,00 hdr 00
(II) PCI: 02:07:0: chip 8086,100e card 8086,001e rev 02 class 02,00,00 hdr 00
(II) PCI: 02:08:0: chip 8086,1039 card 1734,1001 rev 81 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  0xd100 - 0xd1ff (0x100) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xf000 - 0xf3ff (0x400) MX[B]
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x06 (VGA_EN is cleared)
(II) Bus 2 I/O range:

Re: [XFree86] Black screen with RH 9.0 (mga + DVI)

2003-07-31 Thread Lionel Lecoq
Actually the problem seems to be with the mga driver:
I decided to go back to square 1 and use the vesa driver. Result everything works 
(unaccelerated
of course) I also noticed that the mga-hal-xxx does not seem to be there and the 
Matrox docs says
it should be there for digital output...
Has anyone some experience with matrox and DVI?
Thanks in advance
Lionel
--- Craig Ringer [EMAIL PROTECTED] wrote:
  I decided to upgrade and installed RH9.0 from scratch as a result I get a black 
  screen and no
  action when I use startx. I can go bacl to the console with Ctrl Alt backspace...
  Hardware is ASUS A7V with an Athlon 1GB 256MB RAM Matrox G550 Samsung syncMaster 
  181T (Flat
  screen)
 
 Red Hat 9 includes a modified X server that has a black background by 
 default instead of the stippled BW one of the normal X server. Given 
 that CTL-ALT-Backspace works, I'd say the X server has started fine, but 
 whatever program is trying to connect to it hasn't.
 
 Try 'startx `which xterm`' . Replace 'xterm' in that command with a 
 terminal emulator you know is installed (use 'which' to find out), 
 usually one or more of gnome-terminal, xterm, rxvt and konsole are 
 installed.
 
 If your X session starts up fine and shows the xterm, your problem is in 
 your startup scripts not XFree86. If you're using a custom .xinitrc or 
 .xsession, it's time to read over those and make sure you haven't made 
 any mistakes.
 
 Craig Ringer
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Problems loading KDE -graph environs -Mandrake 9.1

2003-07-31 Thread sarina





  
  

  
  Hello,
  Hope everybody is having a fine day/night. I am trying to install 
  Mandrake Linux 9.1 and everything goes fine until it finishes 
  installand reboots, it cannot load KDE properly.It tries 
  to load, but then the screen goes off and onuntil it is 
  replacedby thelogin console (not X). I tried 
  reinstalling several times, , but the problem persists. I logged in 
  and issued startx gnome and it worked (as well with Enlightenment), but 
  KDE applications do not work. The xsession-errors file is 6 pages 
  long, but it comes down to: "Mutex destroy failure: Device or resource 
  busy." My computer specs: Epox mobo AMD Duron 700Mhz, on-board 
  sound (Apollo Super AC97Via ) Video card is a regular, generic S3 
  card that the system identifies as 86c368 Trio 3D/2x which the system 
  plugs and play through the installation with no further problems, that is, 
  until it finishes installation and reboots. I am confused as to what 
  is causing the problem.. a badly chosen XFree86 server or KDE being 
  "confused". I am confused myself. ;-D for I am not very 
  knowledgeable about the ins and outs of this nice OS. 
  What I think is that the Mandrakeinstall programnot plug and 
playing the right device driver forthe videocard, or more likely, 
the driver is missing from the install files. Ilooked for 
theXFree86 log file EVERYWHERE, but Icould not find it. It is 
possible Mandrake changed the log name and location. (Mandrake is 
notorious for doing this). This samevideo card used to be 
supportedby Mandrake Linux 8.0 verynicely.Ihave no 
idea how to "install" this driver or if Ishouldinstall the version 
of XFree86that came with 8.0.I would be greateful if 
somebody could point me in the right direction on what should I do and I will 
read and break it and fix it myself. I just want to avoid doing crazy 
stuff that won't do any good. ;-D 
(Oh, and KDE is not the only graph environ with display problems, it is just 
the one that has been the most affected, I tried startx kde but ICeWM comes 
on,and the widgets are all wrong and windows that try to open dissapear in 
a fraction of a second, stuff like that. So far Enlightenment is the best 
behaved. Other than the titles of the windows being somewhat misplaced in the 
title bar, there is nothing wrong. Of course, kde-dependent x-programs 
won't display, they come up and go real fast). 
Any help, suggestion or reference/link to a solution or 
clarificationwould be greatly appreciated. If anybody wants to help 
and requires more information, please let me know.
Thanks.
Best Regards,
Sarina


[XFree86] RE: Problems loading KDE -graph environs -Mandrake 9.1

2003-07-31 Thread sarina



Additional Info:

I forgot to include the XF*version which 
is:

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.21-0.13mandrakesmp i686 [ELF]
Build Date: 12 March 2003.

Thanks,
Sarina


Re: [XFree86] NVIDIA problem

2003-07-31 Thread Nico Schottelius
Hehe..have a look at
http://linux.schottelius.org/blacksheep/
and you know why I disrecommend use of nvidia products

Fayçal Bouhafs [Thu, Jul 31, 2003 at 11:17:17AM +0200]:
 Hello,
 
 I have a NVIDIA graphic card which i know just that it's a GEFORCE 4 
 64MO, my machine run on woody debia linux OS with 2.4.18 kernel.
 
 I read the NVIDIA installation mini-howto and I procced exactly as it's 
 described in the mini-howto, but I can't start the XServer crash.
 
 I join the XFree86 log file.
 
 Thank's
 
 

 
 XFree86 Version 4.2.0 / X Window System
 (protocol Version 11, revision 0, vendor release 6600)
 Release Date: 18 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.9-13smp i686 [ELF] 
 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 Jul 31 13:06:13 2003
 (==) Using config file: /etc/X11/XF86Config-4
 (==) ServerLayout Default Layout
 (**) |--Screen Default Screen (0)
 (**) |   |--Monitor Generic Monitor
 (**) |   |--Device Generic Video Card
 (**) |--Input Device Generic Keyboard
 (**) Option XkbRules xfree86
 (**) XKB: rules: xfree86
 (**) Option XkbModel pc105
 (**) XKB: model: pc105
 (**) Option XkbLayout fr
 (**) XKB: layout: fr
 (==) Keyboard: CustomKeycode disabled
 (**) |--Input Device Configured Mouse
 (**) FontPath set to 
 unix/:7100,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/CID,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/cyrillic,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi
 (==) 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 file or directory)
 (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 = 0x, mode1Res1 = 0x8000
 (II) PCI: PCI scan (all values are in hex)
 (II) PCI: 00:00:0: chip 8086,2560 card 1734,1003 rev 01 class 06,00,00 hdr 00
 (II) PCI: 00:01:0: chip 8086,2561 card , rev 01 class 06,04,00 hdr 01
 (II) PCI: 00:1d:0: chip 8086,24c2 card 1734,1004 rev 01 class 0c,03,00 hdr 80
 (II) PCI: 00:1d:1: chip 8086,24c4 card 1734,1004 rev 01 class 0c,03,00 hdr 00
 (II) PCI: 00:1d:2: chip 8086,24c7 card 1734,1004 rev 01 class 0c,03,00 hdr 00
 (II) PCI: 00:1d:7: chip 8086,24cd card 1734,1004 rev 01 class 0c,03,20 hdr 00
 (II) PCI: 00:1e:0: chip 8086,244e card , rev 81 class 06,04,00 hdr 01
 (II) PCI: 00:1f:0: chip 8086,24c0 card , rev 01 class 06,01,00 hdr 80
 (II) PCI: 00:1f:1: chip 8086,24cb card 1734,1004 rev 01 class 01,01,8a hdr 00
 (II) PCI: 00:1f:3: chip 8086,24c3 card 1734,1004 rev 01 class 0c,05,00 hdr 00
 (II) PCI: 00:1f:5: chip 8086,24c5 card 1734,0088 rev 01 class 04,01,00 hdr 00
 (II) PCI: 01:00:0: chip 10de,0182 card 107d,2922 rev a2 class 03,00,00 hdr 00
 (II) PCI: 02:07:0: chip 8086,100e card 8086,001e rev 02 class 02,00,00 hdr 00
 (II) PCI: 02:08:0: chip 8086,1039 card 1734,1001 rev 81 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] 

[XFree86] Add 3 inches Naturally

2003-07-31 Thread Roxie Griggs
Title: ad





As Seen On 
  TV:
  CNN, ABC News And More ...
  
  Doctors Create VPRX Penis Enlargement Pills
  
  Gain Up 
  To 3+ Full Inches In Length
  Increase 
  Your Penis Width (Girth) By 20%
  Stop Premature 
  Ejaculation!
  Produce 
  Larger, Rock Hard Erections
  100% Safe 
  To Take, With no Side Effects
  Fast Priority 
  Fed-Ex Shipping WorldWide
  Doctor Recommended 
  And 
  Approved
  No 
  Pumps! No Surgery! No Exercises!
  100% Money 
  Back Guarantee
  FREE Bottle Of VP-RX Worth Over $50
   FREE "Male Help E-Book" Worth Over $50

>CLICK
HERE TO READ MORE





  No Thank you, I want Out 








Re: [XFree86] NVIDIA problem

2003-07-31 Thread Craig Ringer
Hehe..have a look at
http://linux.schottelius.org/blacksheep/
and you know why I disrecommend use of nvidia products
Hmm... I think you can safely remove the linksys one now.

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


Re: [XFree86] NVIDIA problem

2003-07-31 Thread Aivils . Stoss
I have a NVIDIA graphic card which i know just that it's a GEFORCE 4
64MO, my machine run on woody debia linux OS with 2.4.18 kernel.

I read the NVIDIA installation mini-howto and I procced exactly as it's
described in the mini-howto, but I can't start the XServer crash.

I join the XFree86 log file.

compiled for 4.0.2, module version = 1.0.2880

Your nvidia driver is to old. Dowload recent from www.nvidia.com.

Aivils

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


Re: [XFree86] NVIDIA problem

2003-07-31 Thread Nico Schottelius
Craig Ringer [Thu, Jul 31, 2003 at 07:56:45PM +0800]:
 Hehe..have a look at
 http://linux.schottelius.org/blacksheep/
 and you know why I disrecommend use of nvidia products
 
 Hmm... I think you can safely remove the linksys one now.

did they chang their policy? 
do they release information for the named chipsets now?
if so, I am happy to remove every company from black sheep page.

Nico
-- 
echo God bless America | sed 's/.*\(A.*\)$/Why \1?/'
pgp: new id: 0x8D0E27A4 | ftp.schottelius.org/pub/familiy/nico/pgp-key.new


pgp0.pgp
Description: PGP signature


Re: [XFree86] NVIDIA problem

2003-07-31 Thread Craig Ringer
did they chang their policy? 
do they release information for the named chipsets now?
if so, I am happy to remove every company from black sheep page.
Sorry. I only went on to read your rationale for why you have them there 
after posting that... made the unfortunate assumption that it was about 
the (somewhat overblown in the first place) router issue.

Forget I mentioned it.

Craig Ringer

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


[XFree86] Monitor Configuration help

2003-07-31 Thread Fernan Bolando
Hi

Is anybody familliar with the samsung syncmaster 7G. I checked the samsung
tech support and
there web site, they no longer have any info on the monitor. I am not sure
if it is sold as another manufacturer number or it is just too old.
I think it was manufactured during 1993-1994 so it probably doesn't have
edid capability, even so I tried read-edid and it diddn't work.

I was able to make it work using a safe default sync. frequency, I was just
wondering if anyone has any info or suggestion to allow me to
push it's limit.

Can I just incriment the sync frequencies untill I find the perfect
settings( or explode )?

thanks for any info
,Fernan

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


[XFree86] Driver Problem

2003-07-31 Thread RED_KOMISSAR
  Hi!
  I have a card GeForce FX 5200 AGP8x.
  What should I choose as a Video Card? For any kind of GeForce it
  gives an error. I have a FreeBSD 4.8 operating system.

  Thank you for support!


-- 
RED_KOMISSAR
[EMAIL PROTECTED]   uin: 801960

ERNESTO FERNANDO SANCHEZ
Paramaribo (Suriname)


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


[XFree86] Fixed Frequency

2003-07-31 Thread Nico Schottelius
Hello!

Howto add a fixed frequency monitor to a Linux system and running
Xfree on it?
What options do I need to pass ? hrefresh/vrefresh/resolution?

Nico



-- 
echo God bless America | sed 's/.*\(A.*\)$/Why \1?/'
pgp: new id: 0x8D0E27A4 | ftp.schottelius.org/pub/familiy/nico/pgp-key.new


pgp0.pgp
Description: PGP signature


RE: [XFree86] Monitor Configuration help

2003-07-31 Thread Oli Comber
lol, I wouldn't joke about it exploding (well, breaking...) if you get the 
sync really wrong!

Have you tried googling for the serial number? That can be quite usefull.

-Oli


= Original Message From Fernan Bolando [EMAIL PROTECTED] 
=
Hi

Is anybody familliar with the samsung syncmaster 7G. I checked the samsung
tech support and
there web site, they no longer have any info on the monitor. I am not sure
if it is sold as another manufacturer number or it is just too old.
I think it was manufactured during 1993-1994 so it probably doesn't have
edid capability, even so I tried read-edid and it diddn't work.

I was able to make it work using a safe default sync. frequency, I was just
wondering if anyone has any info or suggestion to allow me to
push it's limit.

Can I just incriment the sync frequencies untill I find the perfect
settings( or explode )?

thanks for any info
,Fernan

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

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


[XFree86] problem in xserver

2003-07-31 Thread anuj gupta
i have problem in starting my xserver.The moniter
light start blinking  display goes off.I am attaching
the logfile. Please help me

thank u

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
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 Jul 31 06:27:50 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
(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,3116 card 1106,3116 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:05:0: chip 1274,5880 card 1274,8001 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:07:0: chip 11d4,1805 card 11d4,1805 rev 00 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 1462,7380 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 1462,7380 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 1462,7380 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1462,738c rev 74 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 5333,8d04 card 1462,7389 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   0xe000 - 0xe00f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd800 - 0xdfff (0x800) 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) S3 Inc. [ProSavageDDR K4M266] rev 0, Mem @ 0xe000/19, 
0xd800/27
(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] 

RE: [XFree86] Monitor Configuration help

2003-07-31 Thread Oli Comber
Sorry, obviously I meant the model number from the back, not any personal 
serial number it had!

-Oli

= Original Message From Oli Comber [EMAIL PROTECTED] =
lol, I wouldn't joke about it exploding (well, breaking...) if you get the
sync really wrong!

Have you tried googling for the serial number? That can be quite usefull.

-Oli


= Original Message From Fernan Bolando [EMAIL PROTECTED]
=
Hi

Is anybody familliar with the samsung syncmaster 7G. I checked the samsung
tech support and
there web site, they no longer have any info on the monitor. I am not sure
if it is sold as another manufacturer number or it is just too old.
I think it was manufactured during 1993-1994 so it probably doesn't have
edid capability, even so I tried read-edid and it diddn't work.

I was able to make it work using a safe default sync. frequency, I was just
wondering if anyone has any info or suggestion to allow me to
push it's limit.

Can I just incriment the sync frequencies untill I find the perfect
settings( or explode )?

thanks for any info
,Fernan

___
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] Chips and FixPanelSize problem

2003-07-31 Thread Stephen West-Fisher
I'm upgrading an old laptop to FreeBSD 4.8 and having a hard time 
configuring XFree86 4.3.0. The configuration I'm using has always worked 
in the past, for 3.3.7 and 4.1.0. It appears that FixPanelSize is being 
ignored. In the log it shows that display size is to be overridden but 
the mode states exceeds panel dimensions.

The modifications I am makeing are directly from the README.chip, there 
is an example for the exact model of laptop (Zeos Meridian 850).

Any ideas?

XF86Config:

Section ServerLayout
Identifier Layout0
Screen  0  Screen0 0 0
InputDeviceKeyboard0 CoreKeyboard
InputDeviceMouse0 CorePointer
EndSection
Section Files
EndSection
Section Module
# Load freetype
# Load xtt
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  speedo
EndSection
Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol SysMouse
Option  Emulate3Buttons
Option  Device /dev/sysmouse
EndSection
Section InputDevice
Identifier  Keyboard0
Driver  keyboard
Option  XkbModel pc101
Option  XkbLayout us
EndSection
Section Monitor
Identifier   Monitor0
HorizSync28.0 - 38.0
VertRefresh  43.0 - 72.0
Modeline800x600 30.150 800 896 960 1056 600 600 604 628
EndSection
Section Device
Identifier  Card0
Driver  chips
ChipSet ct65545
Cardchips ct65545
Option  FixPanelSizetrue
Option  UseModeline true
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 8
SubSection Display
Depth 8
Modes800x600
EndSubSection
EndSection
XFree86.0.log:

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 4.8 i386 [ELF]
Build Date: 23 March 2003
	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 Jul 31 09:52:12 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Layout0
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Card0
(**) |--Input Device Keyboard0
(**) Option XkbModel pc101
(**) XKB: model: pc101
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Mouse0
(==) FontPath set to 
/usr/X11R6/lib/X11/fonts/misc/,/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 syscons driver with X support (version 2.0)
(--) using VT number 9

(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 freebsd
(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: Standard check for type 1 failed.
(II) PCI: stages = 0x00, oldVal1 = 0x,
	mode1Res1 = 0x, mode1Res2 = 0x
(II) PCI: No PCI bus found or probed for
(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) OS-reported resource ranges after removing overlaps with PCI:
	[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	

[XFree86] cannot find screen

2003-07-31 Thread Broadbent, Tiffany
To Whom it May Concern,
 I am using VMware on a machine and have installed Linux RedHat 8.0 on the VM but I am 
unable to get it to run in anything but text mode. I have followed all instructions 
for the installation of the VMware but I cannot get my X config to run, I am told my 
config file is incomplete Device section SVGA must have a Driver line and then 
Fatal server error: no screens found. Attached are the log file and the config file. 
Thank you for your time and any help you can offer.
 Sincerely,
   Tiffany Broadbent
   Progeny Systems Corp.

 XFree86.0.log  XF86Config.txt 


XFree86.0.log
Description: XFree86.0.log
# VMware SVGA

Section Files
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/Speedo/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
RGBPath /usr/X11R6/lib/X11/rgb
EndSection

Section ServerFlags
#NoTrapSignals
EndSection

Section Keyboard
Protocol Standard
#ServerNumLock
EndSection

Section Pointer
Protocol ps/2
Device /dev/mouse
EndSection

Section Monitor
Identifier vmware
VendorName VMware
ModelName Virtual Monitor
#   BandWidth 1
HorizSync 1-1
VertRefresh 1-1
ModeLine 640x480 100 640 700 800 900 480 500 600 700
ModeLine 800x600 100 800 900 1000 1100 600 700 800 900
ModeLine 1024x768 100 1024 1100 1200 1300 768 800 900 1000
ModeLine 1152x864 100 1152 1200 1300 1400 864 900 1000 1100
ModeLine 1152x900 100 1152 1200 1300 1400 900 1000 1100 1200
ModeLine 1280x1024 100 1280 1300 1400 1500 1024 1100 1200 1300
ModeLine 1376x1032 100 1376 1400 1500 1600 1032 1100 1200 1300
ModeLine 1600x1200 100 1600 1700 1800 1900 1200 1300 1400 1500
ModeLine 2364x1773 100 2364 2400 2500 2600 1773 1800 1900 2000
EndSection

Section Device
Identifier SVGA
Chipset generic
EndSection

Section Screen
Driver accel
Device SVGA
Monitor vmware
Subsection Display
Modes 1280x1024
#   Modes 1600x1200 1280x1024 1152x864 1024x768 800x600 640x480
#   Modes 640x480
#   Modes 800x600
#   Modes 1024x768
#   Modes 1152x864
#   Modes 1152x900
#   Modes 1280x1024
#   Modes 1376x1032
#   Modes 1600x1200
#   Modes 2364x1773
ViewPort 0 0
EndSubsection
EndSection

RE: [XFree86] Monitor Configuration help

2003-07-31 Thread Fernan Bolando
I have been trying search for it google, But I still haven't found an exact
match

I was able to find syncmaster 17G or syncmaster 753..., But not 7G


,Fernan




Sorry, obviously I meant the model number from the back, not any personal
serial number it had!

-Oli

Is anybody familliar with the samsung syncmaster 7G. I checked the
samsung
tech support and
there web site, they no longer have any info on the monitor. I am not
sure
if it is sold as another manufacturer number or it is just too old.
I think it was manufactured during 1993-1994 so it probably doesn't have
edid capability, even so I tried read-edid and it diddn't work.

I was able to make it work using a safe default sync. frequency, I was
just
wondering if anyone has any info or suggestion to allow me to
push it's limit.

Can I just incriment the sync frequencies untill I find the perfect
settings( or explode )?



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


[XFree86] I need your help!

2003-07-31 Thread Pere Miralles Ribas
I can start linux with x window. I attach the log generated.

I use a pentium iv 2,4 Gb with a ATI 7500
My OS is a Red Hat Linux 8.0
I have damaged video card?Sometimes I can start x windows but now it's 
impossible. I reinstalled my OS but the problem persists.

Can you help me please?

_
Charla con tus amigos en línea mediante MSN Messenger:  
http://messenger.microsoft.com/es
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 version 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: /var/log/XFree86.0.log, Time: Thu Jul 31 16:43:22 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device ATI Radeon 7500
(**) |--Input Device Mouse0
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc102
(**) XKB: model: pc102
(**) Option XkbLayout es
(**) XKB: layout: es
(==) Keyboard: CustomKeycode disabled
(**) 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.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 = 0x8090, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1695,4001 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 1695,4001 rev 05 class 01,01,80 hdr 
00
(II) PCI: 00:1f:2: chip 8086,2442 card 1695,4001 rev 05 class 0c,03,00 hdr 
00
(II) PCI: 00:1f:3: chip 8086,2443 card 1695,4001 rev 05 class 0c,05,00 hdr 
00
(II) PCI: 00:1f:4: chip 8086,2444 card 1695,4001 rev 05 class 0c,03,00 hdr 
00
(II) PCI: 00:1f:5: chip 8086,2445 card 1695,4001 rev 05 class 04,01,00 hdr 
00
(II) PCI: 01:00:0: chip 1002,5157 card 1787,0207 rev 00 class 03,00,00 hdr 
00
(II) PCI: 02:01:0: chip 10b7,9004 card 10b7,9004 rev 04 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: 0x0e (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0x9000 - 0x90ff (0x100) IX[B]
	[1] -1	0x9400 - 0x94ff (0x100) IX[B]
	[2] -1	0x9800 - 0x98ff (0x100) IX[B]
	[3] -1	0x9c00 - 0x9cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0xe000 - 0xe1ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0xd800 - 0xdfff (0x800) MX[B]
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x06 (VGA_EN is cleared)
(II) Bus 2 I/O range:
	[0] -1	0xa000 - 0xa0ff 

Re: [XFree86] Fixed Frequency

2003-07-31 Thread Måns Rullgård
Nico Schottelius [EMAIL PROTECTED] writes:

 Howto add a fixed frequency monitor to a Linux system and running
 Xfree on it?
 What options do I need to pass ? hrefresh/vrefresh/resolution?

In the Monitor section, add
HorizSync foo
VertRefresh bar
Replace foo and bar with whatever frequencies your monitor can
handle.  Multiple frequencies are allowed.

-- 
Måns Rullgård
[EMAIL PROTECTED]
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] [Solved] Monitor Configuration help (syncmaster 7g modelines/sync)

2003-07-31 Thread Oli Comber
Just had a quick google for syncmaster 7g (with the quotes) came up with 
these two:

http://www.driversearch.com/forums/monitor/1970.html
http://www1.vobis.de/bbs/support/brett50/samlinux.cfg

The first shows one set of values for vh sync, the second is a full 
xf86config file with all sorts of different modelines for it (!)

Good Luck :0)

-Oli

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


[XFree86] Crash server with Xfree86

2003-07-31 Thread Linuxsoft



Hello,

My operating system is Redhat 9.0 professional with 
all the errata updated.

I have a persistent problem which is that the 
server crash regularly andeach time i get the same error message 
:

 "could not init font 
path element unix/:7100, removing from 
list! could not open default font 
'fixed'"

Naturraly, i can not start the X server with the 
startx command on runlevel 3.

I always make sure that my xfs service is running 
with the commands: 1. # chckconfig 
xfs on 2. # service xfs 
status,

You will find my XFree86.0.log and 
XFree86.setup.log files in attach files.

What more can i do ?

Martin RoyLinuxsoft


XFree86.0.log
Description: Binary data


XFree86.setup.log
Description: Binary data


Re: [XFree86] Fixed Frequency

2003-07-31 Thread Nico Schottelius
Måns Rullgård [Thu, Jul 31, 2003 at 05:23:35PM +0200]:
 Nico Schottelius [EMAIL PROTECTED] writes:
 
  Howto add a fixed frequency monitor to a Linux system and running
  Xfree on it?
  What options do I need to pass ? hrefresh/vrefresh/resolution?
 
 In the Monitor section, add
 HorizSync foo
 VertRefresh bar
 Replace foo and bar with whatever frequencies your monitor can
 handle.  Multiple frequencies are allowed.

is the horizontal frequency not depending on the
vertical frequency and the resolution?

Nico
-- 
echo God bless America | sed 's/.*\(A.*\)$/Why \1?/'
pgp: new id: 0x8D0E27A4 | ftp.schottelius.org/pub/familiy/nico/pgp-key.new


pgp0.pgp
Description: PGP signature


[XFree86] please help

2003-07-31 Thread anuj gupta
My X server do not start although i have the latest
modular X server i.e. XFree86 4.3.0 but it does not
include my video card chip S3 ProSavage KM266 so the
autodetection detect it as S3 ProSavage KM133 which is
likly the reason behind failure.

Please help me to rectify the same. I am also
including my problem log file.
Waiting for your reply

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
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 Jul 31 06:27:50 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
(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,3116 card 1106,3116 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:05:0: chip 1274,5880 card 1274,8001 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:07:0: chip 11d4,1805 card 11d4,1805 rev 00 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 1462,7380 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 1462,7380 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 1462,7380 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1462,738c rev 74 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 5333,8d04 card 1462,7389 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   0xe000 - 0xe00f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd800 - 0xdfff (0x800) 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) S3 Inc. [ProSavageDDR K4M266] rev 0, Mem @ 0xe000/19, 
0xd800/27
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 

[XFree86] XFree86 4.3 error

2003-07-31 Thread Zhao Hongda
I have compile the XFree86 4.3 for my lubbock platform(XScale PXA250) by
gcc 2.95.3+glibc 2.2.3+binutils 2.11.2. My kernel is 2.4.19-rmk7-pxa2,
framebuffer is set to 16bpp 640*480. When I try to run the XFree86 server, I
got the following Error:
Fatal server error:
xf86EnableIOPorts: Failed to set IOPL for I/O.
My XF86Config is placed in the end of this mail, what should I do to correct
this problem?
Thanks for any help.
Hongda Zhao
2003/7/31

Section Files
RgbPath /usr/X11R6/lib/X11/rgb
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/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/Speedo/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
ModulePath /usr/X11R6/lib/modules
EndSection

Section Module
Load dbe
Loadglx

SubSection extmod
 Option omit xfree86-dga
EndSubSection

Load type1
Load freetype
EndSection

Section InputDevice
Identifier Keyboard1
Driver keyboard
Option AutoRepeat 500 30
Option XkbRules xfree86
Option XkbModel pc104
Option XkbLayout us
EndSection

Section InputDevice
Identifier Mouse1
Driver mouse
Option Protocol PS/2
Option Device /dev/mouse
EndSection

Section Monitor
Identifier My Monitor
HorizSync 50.0-100.0
VertRefresh 40-90
EndSection

Section Device
Identifier  VESA Framebuffer
Driver  fbdev
EndSection

Section Screen
Identifier Screen 1
Device VESA Framebuffer
Monitor My Monitor
DefaultColorDepth 16

SubSection Display
Depth  16
Modes  640x480
ViewPort 0 0
EndSubsection

EndSection

Section ServerLayout
Identifier simple layout
Screen Screen 1
InputDevice Mouse1 CorePointer
InputDevice Keyboard1 CoreKeyboard
EndSection





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


Re: [XFree86] NVIDIA problem

2003-07-31 Thread Mark Vojkovich
   Your NVIDIA drivers are too old.  Get newer ones.
Alternatively, that card should work with the nv driver
that comes with XFree86 4.3.

Mark.

On Thu, 31 Jul 2003, [ISO-8859-1] Fayçal Bouhafs wrote:

 Hello,
 
 I have a NVIDIA graphic card which i know just that it's a GEFORCE 4 
 64MO, my machine run on woody debia linux OS with 2.4.18 kernel.
 
 I read the NVIDIA installation mini-howto and I procced exactly as it's 
 described in the mini-howto, but I can't start the XServer crash.
 
 I join the XFree86 log file.
 
 Thank's
 
  
 


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


[XFree86] BugReport

2003-07-31 Thread lhodas
Can you help me with this bug?
Thanks
Ladislav Hodas

BugReport
Description: Binary data


XFree86.0.log
Description: Binary data


Re: [XFree86] Driver Problem

2003-07-31 Thread Mark Vojkovich
   You need to be using XFree86 4.3.  It's not supported in older
versions.


Mark.

On Thu, 31 Jul 2003, RED_KOMISSAR wrote:

   Hi!
   I have a card GeForce FX 5200 AGP8x.
   What should I choose as a Video Card? For any kind of GeForce it
   gives an error. I have a FreeBSD 4.8 operating system.
 
   Thank you for support!
 
 
 -- 
 RED_KOMISSAR
 [EMAIL PROTECTED]   uin: 801960
 
 ERNESTO FERNANDO SANCHEZ
 Paramaribo (Suriname)
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] Fixed Frequency

2003-07-31 Thread Mark Vojkovich
On Thu, 31 Jul 2003, Nico Schottelius wrote:

 Hello!
 
 Howto add a fixed frequency monitor to a Linux system and running
 Xfree on it?
 What options do I need to pass ? hrefresh/vrefresh/resolution?
 

   Most fixed frequency monitors just need to have the horizontal
refresh within a percent or so of a particular value.  I've found
that resolution and vertical refresh tend to be more variable.

   Note that many fixed frequency monitors are sync-on-green
and therefore won't work with a PC graphics card unless it supports
that option.


Mark.

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


Re: [XFree86] Fixed Frequency

2003-07-31 Thread Yann E. MORIN
On Thursday 31 July 2003 20:09, you (Mark Vojkovich) wrote :
   Howto add a fixed frequency monitor to a Linux system and running
   Xfree on it?
   What options do I need to pass ? hrefresh/vrefresh/resolution?
 Most fixed frequency monitors just need to have the horizontal
  refresh within a percent or so of a particular value.  I've found
  that resolution and vertical refresh tend to be more variable.

Hmm... For mine, I had to specify all I could: Vert and Horiz freqs,
and full modeline, for X-4.2.1. Can't say for 4.3.x.

 Note that many fixed frequency monitors are sync-on-green
  and therefore won't work with a PC graphics card unless it supports
  that option.

Hmm... Or you could make a 'smart' cable that combines the sync. and green
signals into a sync-on-green one and feed this into the monitor. Look at
this site for explanations (in french, contact me privately if you can't
understand Moliere's tongue!) :
http://laurent.granjon.free.fr/electronique/sgi2pc.htm

Regards,
Yann.

-- 
.-..--..
|  Yann E. MORIN  | Real-Time Embedded | /\ ASCII RIBBON | Erics' conspiracy: |
| +0/33 662376056 | Software  Designer | \ / CAMPAIGN |  ___   |
| --== °_° ==-- °---.:  X  AGAINST  |  \e/  There is no  |
| web: ymorin.free.fr | [EMAIL PROTECTED] 1840 | / \ HTML MAIL|   v   conspiracy.  
|
°-°°--°°
 \__ np: Pierre Schott - Quand les jours se suivent __/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Re: [Solved] Black screen with RH 9.0 (mga + DVI)

2003-07-31 Thread Lionel Lecoq
I used the vesa driver to get a reasonable working environment and downloaded the 
latest matrox
drivers from the Matrox website...
Why RedHat does not provide the *right* driver to start with?...
cheers
Lionel


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] 1920x1200 on Compaq X1000 notebook?

2003-07-31 Thread John Ruttenberg
This notebook is capable of this resolution and has a ATI Radeon Mobility 9200
graphics chip.  I can only get 1200x800 working.  I have XFree86-4.3.0.

Attached are both the XF86Config file I am using and the log generated.  Any
help is very apprieciated.




XF86Config
Description: config file


XFree86.0.log
Description: log file


[XFree86] help with XFree86 Display

2003-07-31 Thread Ziad Nahas
I would really appreciate any input.

I am running XDarwin 1.1.0.1 on a Mac OS 10.2.6. Recently, it has been 
crashing and I can;t figure it out. If I launch it from the Terminal 
Window I get the following error:

XFree86 Version 4.2.0.1 / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 21 August 2002
If the server is older than 6-12 months, or if your hardware is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/FAQ)
Operating System: Darwin
Using keymapping provided in /System/Library/Keyboards/USA.keymapping.
_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root
Display mode: Rootless Quartz
Screen 0 added: 1440x879 @ (0,21)
Screen 0 placed at X11 coordinate (0,0).
Using keymapping provided in /System/Library/Keyboards/USA.keymapping.
Display mode: Rootless Quartz
Screen 0 added: 1440x879 @ (0,21)
Screen 0 placed at X11 coordinate (0,0).
Quitting XDarwin...
I have tried reinstalling without any success. Could it be conflicting 
with other software I have (not running at the same time like Virtual 
PC or VNC)?
Thank you

Cheers,
Ziad
Ziad Nahas, MD
Assistant Professor of Psychiatry and Behavioral Sciences
Medical Director, Brain Stimulation Laboratory
Medical University of South Carolina
67 President Street; Room 502 North
Charleston, SC 29403 USA
phone: 1 (843) 792 5710;  fax: 1 (843) 792 5702
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] I Don't Know What I'm Doing Wrong!

2003-07-31 Thread ynot . askme
Just installed Slackware 9.0, and console mode works fine.  The xf86cfg
programs works, too (graphically), so I can see that this system is
CAPABLE of running X.  However, when I try to start the X Windows system
-- I get a crash (see the XFree86.0.log below -- XF86Config file also
included).  Any insight would be appreciated!

=
=

XFree86.0.log

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.20 i686 [ELF] 
Build Date: 01 March 2003
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 Jul 31 12:07:53 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor MyFutura
(**) |   |--Device ONEMEGCHEAPVIDCARD
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) 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/100dpi/.
Entry deleted from font path.
(Run 'mkfontdir' on /usr/X11R6/lib/X11/fonts/100dpi/).
(**) FontPath set to
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R
6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11
R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/
(**) 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
(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 1039,0620 card , rev 02 class 06,00,00
hdr 80
(II) PCI: 00:00:1: chip 1039,5513 card , rev d0 class 01,01,80
hdr 80
(II) PCI: 00:01:0: chip 1039,0008 card , rev b1 class 06,01,00
hdr 80
(II) PCI: 00:01:1: chip 1039,0009 card , rev 00 class ff,00,00
hdr 80
(II) PCI: 00:01:2: chip 1039,7001 card , rev 11 class 0c,03,10
hdr 80
(II) PCI: 00:02:0: chip 1039,0001 card , rev 00 class 06,04,00
hdr 01
(II) PCI: 00:09:0: chip 5333,8811 card , rev 54 class 03,00,00
hdr 00
(II) PCI: 00:0d:0: chip 1102,0004 card 1102,0051 rev 03 class 04,01,00
hdr 80
(II) PCI: 00:0d:1: chip 1102,7003 card 1102,0040 rev 03 class 09,80,00
hdr 80
(II) PCI: 00:0d:2: chip 1102,4001 card 1102,0010 rev 00 class 0c,00,10
hdr 80
(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-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is
set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:2:0), (0,1,1), BCTRL: 0x (VGA_EN is
cleared)
(--) PCI:*(0:9:0) S3 Inc. 86c764/765 [Trio32/64/64V+] rev 84, Mem @
0xe000/26, BIOS @ 0xe400/16
(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) 

[XFree86] (no subject)

2003-07-31 Thread Pere Miralles Ribas
I can start linux with x window. I attach the log generated.

I use a pentium IV 2,4 Gb with a ATI 7500
My OS is a Red Hat Linux 8.0
I have damaged video card?Sometimes I can start x windows but now it's
impossible. I reinstalled my OS but the problem persists.
Can you help me please?

_
Charla con tus amigos en línea mediante MSN Messenger:  
http://messenger.microsoft.com/es
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 version 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: /var/log/XFree86.0.log, Time: Thu Jul 31 16:43:22 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device ATI Radeon 7500
(**) |--Input Device Mouse0
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc102
(**) XKB: model: pc102
(**) Option XkbLayout es
(**) XKB: layout: es
(==) Keyboard: CustomKeycode disabled
(**) 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.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 = 0x8090, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1695,4001 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 1695,4001 rev 05 class 01,01,80 hdr
00
(II) PCI: 00:1f:2: chip 8086,2442 card 1695,4001 rev 05 class 0c,03,00 hdr
00
(II) PCI: 00:1f:3: chip 8086,2443 card 1695,4001 rev 05 class 0c,05,00 hdr
00
(II) PCI: 00:1f:4: chip 8086,2444 card 1695,4001 rev 05 class 0c,03,00 hdr
00
(II) PCI: 00:1f:5: chip 8086,2445 card 1695,4001 rev 05 class 04,01,00 hdr
00
(II) PCI: 01:00:0: chip 1002,5157 card 1787,0207 rev 00 class 03,00,00 hdr
00
(II) PCI: 02:01:0: chip 10b7,9004 card 10b7,9004 rev 04 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: 0x0e (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0x9000 - 0x90ff (0x100) IX[B]
[1] -1  0x9400 - 0x94ff (0x100) IX[B]
[2] -1  0x9800 - 0x98ff (0x100) IX[B]
[3] -1  0x9c00 - 0x9cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xe000 - 0xe1ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xd800 - 0xdfff 

[XFree86] Problems with Old Card

2003-07-31 Thread Gustavo K. Ruziscka
Hi,

I have a computer with Sony CPD 200 sf and S3 968 Vision (2 Mega)pci video
card. When i try to configure X server(Red Hat 9.0 and XFree86 4.3.0)
always receive errors messages(Attached).

After search on the Web i tried many suggestions but don't solve this
problem.

Could someone help me?

Gustavo Klaus.
P.S: Sorry for poor english
-- 
Pontifícia Universidade Católica do Rio de Janeiro
CETUC - Centro de Estudos em Telecomunicações
Rua Marquês de São Vicente, 255 - Ala K - 7º andar
Tel: 3114-1149/1690
Fax: 2294-5748



XFree86.0.log
Description: Binary data
# 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
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_intl
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol PS/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
ModelNameUnknown monitor
HorizSync31.5 - 37.9
VertRefresh  50.0 - 70.0
Option  dpms
EndSection

Section Device
Identifier  Videocard0
Driver  s3
VendorName  Videocard vendor
BoardName   S3 968 (generic)
EndSection

Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 16
SubSection Display
Depth 16
Modes800x600 640x480
EndSubSection
EndSection

Section DRI
Group0
Mode 0666
EndSection




[XFree86] Todo Sobre Microsoft Visual Basic .NET 2003 (Válida hasta el 23/08/03)

2003-07-31 Thread Forum Access
Title: Visual Basic.NET 2003




  
  

  


  

  
  

  
  
  
  ¡Oferta válida hasta el 
  23/08/03!

  
  
  
  


  


EL MEJOR* CURSO CERTIFICADOVISUAL 
BASIC.NET2003por sólo 6 x US$ 
17.00UN DESCUENTO DEL 
50%

  
Revolucione 
su carrera ahora con:1 DVD (o 6 CDs) con 
Visual Basic.NET 2003Trial + 1 CD con Ejemplos + 6 
MódulosMateriales Didácticos + Profesor Personal 
+ Soporte Técnico + Certificado Exclusivo + 
¡Garantía Total de 
  Satisfacción!
  
  

  
  
  

  
  

  Estimado Usuario / Desarrollador de 
  Microsoft:Este 
  e-mail es una promoción exclusiva y conjunta entre MBI y 
  FórumAccess. FórumAccess es una empresa brasileña que funciona 
  desde hace 11 años y es socio mundial de 
  Microsoft.
  Esta promoción es exclusiva para Ud. y tiene validez 
  hasta el 23/08/2003.
  El Visual Basic es el lenguaje de bases de datos más 
  usado en el mercado nacional, siendo una nueva tendencia en el 
  desarrollo de sistemas a nivel mundial.
  En Brasil, el 65% de los sistemas de bases de datos 
  están desarrollados en Microsoft Visual Basic**.
  En Brasil, el precio promedio de una capacitación de 
  Visual Basic.NET es superior a US$ 330,00***.
  Cuatro de cada cinco directores de informática quiere 
  desarrollar sistemas para la Web.
  Microsoft lanzó recientemente Visual Basic.NET 2003 y 
  pocos profesionales lo dominan.
  Los profesionales que dominarán el Visual Basic.NET 
  2003 serán los más valorados en el mercado nacional de 
  informática a corto plazo.
  ¿Ud. va a perderse esta oportunidad? 
  Compre el 
  curso Visual Basic.NET 
  2003:
  


  

  
  

  








Un curso 
revolucionario


 
ÚNICA CAPACITACIÓN QUE DESARROLLA 
UN SISTEMA COMPLETOEl 
aprendizaje es mucho más rápido y eficiente 
cuando los estudios se convierten en 
aplicaciones prácticas de la vida real. Con este 
curso inédito Ud. aprende mucho más porque 
desarrolla, paso a paso, un sistema profesional 
completo, usado en el mundo real. (Vea el sistema 
en nuestro web site). 







Exclusivo 
Profesor 
Personal


 
UN PROFESOR SÓLO PARA 
UD.Todos sus estudios son seguidos y 
monitoreados por un especialista real, ¡con 
nombre y e-mail conocidos por Ud.! Él acompaña 
cada paso de su camino, sacándole las dudas y 
orientándolo si es necesario. Además, usted 
 

[XFree86] X Does Not Continue To Load

2003-07-31 Thread sam
I am having trouble with getting XFREE86 to run on FreeBSD 5.1.
The X will start up and seem to operate with no errors that I can detect but 
never actually loads the desktop. 

I have gone over the log file and cannot determine an error.
I also cannot see in any log files an actual problem. 

I do have to break out of X because nothing ever loads.
It looks like it is detecting the card correctly and loading the correct 
drivers. 

Below is my log file and config file. 

I am using a SIS 315 AGP video card. 

Thanks for any help.
Sam 

 LOG FILE  

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 5.1 i386 [ELF]
Build Date: 24 May 2003
	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 Jul 31 16:13:39 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor SamsMon
(**) |   |--Device samscard
(**) |--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/l 
ib/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/X 
11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/
(**) 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 

(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 freebsd
(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 10b9,1647 card , rev 02 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 10b9,5247 card , rev 00 class 06,04,00 hdr 
01
(II) PCI: 00:02:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 
00
(II) PCI: 00:03:0: chip 10b9,5451 card 10b9,5451 rev 02 class 04,01,00 hdr 
00
(II) PCI: 00:04:0: chip 10b9,5229 card 10b9,5229 rev c4 class 01,01,fa hdr 
00
(II) PCI: 00:06:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 
00
(II) PCI: 00:07:0: chip 10b9,1533 card 10b9,1533 rev 00 class 06,01,00 hdr 
00
(II) PCI: 00:0d:0: chip 11ad,0002 card 1385,f004 rev 20 class 02,00,00 hdr 
00
(II) PCI: 00:11:0: chip 10b9,7101 card 10b9,7101 rev 00 class 06,80,00 hdr 
00
(II) PCI: 01:00:0: chip 1039,0325 card 1682,5052 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: 0x000e (VGA_EN is set)
(II) Bus 1 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 1 non-prefetchable memory range:
	[0] -1	0	0xe800 - 0xe9ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xd000 - 0xdfff (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)
(--) PCI:*(1:0:0) Silicon Integrated Systems [SiS] SiS315PRO PCI/AGP VGA 
Display Adapter rev 0, Mem @ 0xd000/28, 0xe900/18, I/O @ 0xd000/7
(II) Addressable bus resource ranges are
	[0] -1	0	0x - 0x (0x0) MX[B]
	[1] -1	0	0x - 0x (0x1) IX[B]
(II) 

[XFree86] ATI Rage Mobility: internal vs. external display

2003-07-31 Thread Burjan Gabor
Hello,

I'm using XFree86 4.3.0 on a Compaq Evo N400c notebook.  This model
has an ATI Rage Mobility VGA controller.

At my workplace I have a quite good CRT monitor attached to the
docking station and elsewhere there is the built-in LCD display.
I also have two separate configuration file (see attachments), but now
I have to exit from my X session started with LCD config and start a new
one with CRT config in order to reach better refresh rate.  Vice versa
I have to exit from my X session started with CRT config and start a new
one with LCD config in order to reach working refresh rate on LCD.

It seems to me that this adapter doesn't support dualhead, but
changing between refresh rates and VGA displays together should work
if only the appropriate display is activated.  Is there any run-time
solution for this?

TIA,

Gabor Burjan


my current configuration files:

Section ServerLayout
Identifier XFree86 Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceMouse1 SendCoreEvents
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/X11R6/lib/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/Speedo/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
EndSection

Section Module
Load  dbe
Load  dri
Load  extmod
Load  glx
Load  record
Load  xtrap
Load  speedo
Load  type1
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  keyboard
EndSection

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

Section InputDevice
Identifier  Mouse1
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
EndSection

Section Monitor
#DisplaySize  320   240 # mm
Identifier   LCD
Option  DPMS
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option accel # [bool]
#Option crt_screen# [bool]
#Option composite_sync# [bool]
#Option hw_cursor # [bool]
#Option linear# [bool]
#Option mmio_cache# [bool]
#Option probe_clocks  # [bool]
#Option reference_clock   # freq
#Option shadow_fb # [bool]
#Option sw_cursor # [bool]

Identifier  InternalCard
Driver  ati
VendorName  ATI
BoardName   Mach64 LM
ChipSet ati
ChipId  0x4c4d
ChipRev 0x64
BusID   PCI:1:0:0
Option  crt_screen false
Option  panel_size 1024x768
Screen  0
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option accel # [bool]
#Option crt_screen# [bool]
#Option composite_sync# [bool]
#Option hw_cursor # [bool]
#Option linear# [bool]
#Option mmio_cache# [bool]
#Option probe_clocks  # [bool]
#Option reference_clock   # freq
#Option shadow_fb # [bool]
#Option sw_cursor # [bool]

Identifier  ExternalCard
Driver  ati
VendorName  ATI
BoardName   Mach64 LM
ChipSet ati
ChipId  0x4c4d
ChipRev 0x64
BusID   PCI:1:0:0
Option  crt_screen true
Screen  1
EndSection

Section Screen
Identifier Screen0
Device InternalCard
MonitorLCD
DefaultDepth24
SubSection Display
Depth   24
Modes   1024x768
EndSubSection
EndSection
Section ServerLayout
Identifier XFree86 Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceMouse1 SendCoreEvents
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  

[XFree86] ATI Rage Mobility: internal vs. external display

2003-07-31 Thread Burjan Gabor
Hello,

I'm using XFree86 4.3.0 on a Compaq Evo N400c notebook.  This model
has an ATI Rage Mobility VGA controller.

At my workplace I have a quite good CRT monitor attached to the
docking station and elsewhere there is the built-in LCD display.
I also have two separate configuration file (see attachments), but now
I have to exit from my X session started with LCD config and start a new
one with CRT config in order to reach better refresh rate.  Vice versa
I have to exit from my X session started with CRT config and start a new
one with LCD config in order to reach working refresh rate on LCD.

It seems to me that this adapter doesn't support dualhead, but
changing between refresh rates and VGA displays together should work
if only the appropriate display is activated.  Is there any run-time
solution for this?

TIA,

Gabor Burjan


my current configuration files:

Section ServerLayout
Identifier XFree86 Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceMouse1 SendCoreEvents
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/X11R6/lib/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/Speedo/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
EndSection

Section Module
Load  dbe
Load  dri
Load  extmod
Load  glx
Load  record
Load  xtrap
Load  speedo
Load  type1
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  keyboard
EndSection

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

Section InputDevice
Identifier  Mouse1
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
EndSection

Section Monitor
#DisplaySize  320   240 # mm
Identifier   LCD
Option  DPMS
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option accel # [bool]
#Option crt_screen# [bool]
#Option composite_sync# [bool]
#Option hw_cursor # [bool]
#Option linear# [bool]
#Option mmio_cache# [bool]
#Option probe_clocks  # [bool]
#Option reference_clock   # freq
#Option shadow_fb # [bool]
#Option sw_cursor # [bool]

Identifier  InternalCard
Driver  ati
VendorName  ATI
BoardName   Mach64 LM
ChipSet ati
ChipId  0x4c4d
ChipRev 0x64
BusID   PCI:1:0:0
Option  crt_screen false
Option  panel_size 1024x768
Screen  0
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option accel # [bool]
#Option crt_screen# [bool]
#Option composite_sync# [bool]
#Option hw_cursor # [bool]
#Option linear# [bool]
#Option mmio_cache# [bool]
#Option probe_clocks  # [bool]
#Option reference_clock   # freq
#Option shadow_fb # [bool]
#Option sw_cursor # [bool]

Identifier  ExternalCard
Driver  ati
VendorName  ATI
BoardName   Mach64 LM
ChipSet ati
ChipId  0x4c4d
ChipRev 0x64
BusID   PCI:1:0:0
Option  crt_screen true
Screen  1
EndSection

Section Screen
Identifier Screen0
Device InternalCard
MonitorLCD
DefaultDepth24
SubSection Display
Depth   24
Modes   1024x768
EndSubSection
EndSection
Section ServerLayout
Identifier XFree86 Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceMouse1 SendCoreEvents
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath