CVS Update: xc (branch: )

2003-06-17 Thread Ivan Pascal
[EMAIL PROTECTED]
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/17 05:39:18

xc/programs/xkbcomp/geometry/HP

Update of /home/x-cvs/xc/programs/xkbcomp/geometry/HP
In directory public.xfree86.org:/tmp/cvs-serv14923/HP

Log Message:
Directory /home/x-cvs/xc/programs/xkbcomp/geometry/HP added to the repository

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


CVS Update: xc (branch: trunk)

2003-06-17 Thread Ivan Pascal
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/17 05:41:37

Log message:
   217. Fixes and updates for XKB keyboard maps:
- add more EuroSign to us_intl keyboard map (Paul Bolle)
- update geometry files (Alexander Pohoyda)
- add AudioMute key to inet(hpxe3gc) (Bugzilla #350, Paul Pacheco)
- add option for replacing RCtrl key with Right Alt (Bugzilla #343,
  Adam Tlalka)
- add Uzbek keyboard map (Bugzilla #372, Mashrab Kuvatov)

Modified files:
  xc/programs/xkbcomp/geometry/:
Imakefile 
  xc/programs/xkbcomp/rules/:
xfree86 
Added files:
  xc/programs/xkbcomp/geometry/HP/:
Imakefile hp omnibook 
  
  Revision  ChangesPath
  3.15  +2 -2  xc/programs/xkbcomp/geometry/Imakefile
  3.65  +2 -2  xc/programs/xkbcomp/rules/xfree86

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


CVS Update: xc (branch: trunk)

2003-06-17 Thread Ivan Pascal
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/17 05:47:03

Log message:
  updates

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  3.2739+8 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

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


Re: Keyboard driver for X

2003-06-17 Thread Robert Woerle
Ricardo Baratto schrieb:

At some point in the past you (Matthieu Herrb [EMAIL PROTECTED]) said:
 

Robert wrote (in a message from Sunday 15)
 Brad Hards schrieb:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Thu, 12 Jun 2003 14:57 pm, Jason Kim wrote:
   
 
 Has anyone developed keyboard driver for X ?   Or does anyone know current
 situation?
 
 
 XFree86 4.x has loadable drivers, including keyboard. 
 
 really ?
 i thought the keyboard is compiled into server???
 

There are 2 keyboard drivers in XFree86 4.3.0. One is the legacy X
driver which is part of the base X server and the 2nd one is a new
Xinput based driver which is dynamically loadable. The name of this
loadable module is kbd (while the legacy driver is named
keyboard). 

   

and is it possible to disable the legacy keyboard driver and
use only kbd (or a custom keyb driver)?
 

yeah .. just replace  keyboard as driver with kbd like this

Driver kbd


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

--
_
*Robert Woerle
Linux  Customer Support*
*PaceBlade Technology Europe SA*
phone:  +49 89 552 99935
fax:+49 89 552 99910
mobile: +49 179 474 45 27
email:  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
web:http://www.paceblade.com
_


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


Re: Keyboard driver for X

2003-06-17 Thread Robert Woerle
David Dawes schrieb:

On Sun, Jun 15, 2003 at 01:49:56PM +0200, Robert wrote:
 

Matthieu Herrb schrieb:

   

Robert wrote (in a message from Sunday 15)
 

Brad Hards schrieb:

   

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Thu, 12 Jun 2003 14:57 pm, Jason Kim wrote:

 

Has anyone developed keyboard driver for X ?   Or does anyone know current
situation?
  

   

XFree86 4.x has loadable drivers, including keyboard. 

 

really ?
i thought the keyboard is compiled into server???
   

There are 2 keyboard drivers in XFree86 4.3.0. One is the legacy X
driver which is part of the base X server and the 2nd one is a new
Xinput based driver which is dynamically loadable. The name of this
loadable module is kbd (while the legacy driver is named
keyboard). 

 

so what is the deal then with the keyboard 

my problem now is that i need to prevent X to generally map cetrain 
Scancodes to a generic keycode ...which then makes some extra buttons on 
my Tablet Pc send the samy keycode as Key-Up and i cannot put function 
on this keycode so i ll loose my KEY_UP also ...
i changed also the file atKeynames .h   accordingly ...

I read then that the keyboard is compiled into the server , and also 
changing the Driver Keyboard  into
Driver  kbd did not start the X-server 

the scancodes i need to be free to get a free keycode are

0x5a and 0x59
   

It looks like all of the other scancodes like these that are currently
returned for various 2-byte codes need to be remapped.  I recently did
this for 0x5c, which is KP_Equal on Macs.  The attached patch (relative
to the current CVS trunk) should handle the rest of them.  Let me know
if it works for you.  If it does, I'll commit it.  The patch handles both
the built-in keyboard driver, and the modular kbd driver.
If we were starting over with this, we'd handle the mappings more cleanly.
We should probably do that for 5.0.
 

pls tell me some more things ...

i did these changes by hand in the vanilla X-4.3 source 
then i did only recompile the kbd.o module and started but still i  get 
KEY_UP as keysym and keycode 98 ( using xev ) for my key with scancode 
0x5a and KEY_HOME and keycode 97 for my key with scancode 0.59 ... .and 
i did use kbd as driver in my InputSection !!!
will i have to recompile the whole X-server  (XFree86 executable ) to 
make these changes work ???

So the question is what parts will be needed to exchange to make these 
cchanges valid !!!

David
 



Index: programs/Xserver/hw/xfree86/common/atKeynames.h
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/common/atKeynames.h,v
retrieving revision 3.18
diff -u -r3.18 atKeynames.h
--- programs/Xserver/hw/xfree86/common/atKeynames.h 29 Sep 2001 20:40:30 - 
 3.18
+++ programs/Xserver/hw/xfree86/common/atKeynames.h 16 Jun 2003 16:23:40 -
@@ -199,6 +199,55 @@
#define KEY_NFER /* No Kanji Transfer 0x7b  */  123
#define KEY_Yen  /* Yen   0x7d  */  125
+/*
+ * Fake 'scancodes' in the following ranges are generated for 2-byte
+ * codes not handled elsewhere.  These correspond to most extended keys
+ * on so-called Internet keyboards:
+ *
+ *	0x79-0x93
+ *	0x96-0xa1
+ *	0xa3-0xac
+ *	0xb1-0xb4
+ *	0xba-0xbd
+ *	0xc2
+ *	0xcc-0xd2
+ *	0xd6-0xf7
+ */
+
+/*
+ * Remapped 'scancodes' are generated for single-byte codes in the range
+ * 0x59-0x5f,0x62-0x76.  These are used for some extra keys on some keyboards.
+ */
+
+#define KEY_0x59		0x95
+#define KEY_0x5A		0xA2
+#define KEY_0x5B		0xAD
+#define KEY_0x5C		KEY_KP_EQUAL
+#define KEY_0x5D		0xAE
+#define KEY_0x5E		0xAF
+#define KEY_0x5F		0xB0
+#define KEY_0x62		0xB5
+#define KEY_0x63		0xB6
+#define KEY_0x64		0xB7
+#define KEY_0x65		0xB8
+#define KEY_0x66		0xB9
+#define KEY_0x67		0xBE
+#define KEY_0x68		0xBF
+#define KEY_0x69		0xC0
+#define KEY_0x6A		0xC1
+#define KEY_0x6B		0xC3
+#define KEY_0x6C		0xC4
+#define KEY_0x6D		0xC5
+#define KEY_0x6E		0xC6
+#define KEY_0x6F		0xC7
+#define KEY_0x70		0xC8
+#define KEY_0x71		0xC9
+#define KEY_0x72		0xCA
+#define KEY_0x73		0xCB
+#define KEY_0x74		0xD3
+#define KEY_0x75		0xD4
+#define KEY_0x76		0xD5
+
/* These are for notused and unknown entries in translation maps. */
#define KEY_NOTUSED	  0
#define KEY_UNKNOWN	255
Index: programs/Xserver/hw/xfree86/common/xf86Events.c
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v
retrieving revision 3.151
diff -u -r3.151 xf86Events.c
--- programs/Xserver/hw/xfree86/common/xf86Events.c	11 Jun 2003 16:06:27 -	3.151
+++ programs/Xserver/hw/xfree86/common/xf86Events.c	16 Jun 2003 16:25:30 -
@@ -490,7 +490,34 @@
#endif /* i386  SVR4 */
{
  switch (scanCode) {
+  case 0x59:scanCode = KEY_0x59; break;
+  case 0x5a:

Re: Keyboard driver for X

2003-06-17 Thread David Dawes
On Tue, Jun 17, 2003 at 10:08:11AM +0200, Robert Woerle wrote:
David Dawes schrieb:

On Sun, Jun 15, 2003 at 01:49:56PM +0200, Robert wrote:
  

Matthieu Herrb schrieb:



Robert wrote (in a message from Sunday 15)
  

Brad Hards schrieb:



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, 12 Jun 2003 14:57 pm, Jason Kim wrote:
 

  

Has anyone developed keyboard driver for X ?   Or does anyone know current
situation?
   



XFree86 4.x has loadable drivers, including keyboard. 

  

really ?
i thought the keyboard is compiled into server???



There are 2 keyboard drivers in XFree86 4.3.0. One is the legacy X
driver which is part of the base X server and the 2nd one is a new
Xinput based driver which is dynamically loadable. The name of this
loadable module is kbd (while the legacy driver is named
keyboard). 
 

  

so what is the deal then with the keyboard 

my problem now is that i need to prevent X to generally map cetrain 
Scancodes to a generic keycode ...which then makes some extra buttons on 
my Tablet Pc send the samy keycode as Key-Up and i cannot put function 
on this keycode so i ll loose my KEY_UP also ...
i changed also the file atKeynames .h   accordingly ...

I read then that the keyboard is compiled into the server , and also 
changing the Driver Keyboard  into
Driver  kbd did not start the X-server 

the scancodes i need to be free to get a free keycode are

0x5a and 0x59



It looks like all of the other scancodes like these that are currently
returned for various 2-byte codes need to be remapped.  I recently did
this for 0x5c, which is KP_Equal on Macs.  The attached patch (relative
to the current CVS trunk) should handle the rest of them.  Let me know
if it works for you.  If it does, I'll commit it.  The patch handles both
the built-in keyboard driver, and the modular kbd driver.

If we were starting over with this, we'd handle the mappings more cleanly.
We should probably do that for 5.0.
  


pls tell me some more things ...

i did these changes by hand in the vanilla X-4.3 source 
then i did only recompile the kbd.o module and started but still i  get 
KEY_UP as keysym and keycode 98 ( using xev ) for my key with scancode 
0x5a and KEY_HOME and keycode 97 for my key with scancode 0.59 ... .and 
i did use kbd as driver in my InputSection !!!
will i have to recompile the whole X-server  (XFree86 executable ) to 
make these changes work ???

These translations are built-in to the XFree86 server, even when using
the kbd module.  The kbd module is platform independent, but the
translations may not be.

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: Keyboard driver for X

2003-06-17 Thread David Dawes
On Tue, Jun 17, 2003 at 02:50:28PM +0200, Robert Woerle wrote:
David Dawes schrieb:

On Sun, Jun 15, 2003 at 01:49:56PM +0200, Robert wrote:
  

Matthieu Herrb schrieb:



Robert wrote (in a message from Sunday 15)
  

Brad Hards schrieb:



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, 12 Jun 2003 14:57 pm, Jason Kim wrote:
 

  

Has anyone developed keyboard driver for X ?   Or does anyone know current
situation?
   



XFree86 4.x has loadable drivers, including keyboard. 

  

really ?
i thought the keyboard is compiled into server???



There are 2 keyboard drivers in XFree86 4.3.0. One is the legacy X
driver which is part of the base X server and the 2nd one is a new
Xinput based driver which is dynamically loadable. The name of this
loadable module is kbd (while the legacy driver is named
keyboard). 
 

  

so what is the deal then with the keyboard 

my problem now is that i need to prevent X to generally map cetrain 
Scancodes to a generic keycode ...which then makes some extra buttons on 
my Tablet Pc send the samy keycode as Key-Up and i cannot put function 
on this keycode so i ll loose my KEY_UP also ...
i changed also the file atKeynames .h   accordingly ...

I read then that the keyboard is compiled into the server , and also 
changing the Driver Keyboard  into
Driver  kbd did not start the X-server 

the scancodes i need to be free to get a free keycode are

0x5a and 0x59



It looks like all of the other scancodes like these that are currently
returned for various 2-byte codes need to be remapped.  I recently did
this for 0x5c, which is KP_Equal on Macs.  The attached patch (relative
to the current CVS trunk) should handle the rest of them.  Let me know
if it works for you.  If it does, I'll commit it.  The patch handles both
the built-in keyboard driver, and the modular kbd driver.

If we were starting over with this, we'd handle the mappings more cleanly.
We should probably do that for 5.0.
  


so i merged this changes for my specific 2 keys to the vanilla X-Free 
4.3 sources and it works ..
the only thing now is that  i cannot use kdm as Loginmanager anymore 

what i have i s SUSE 8.2
what i do is recompile the XFree86 and kbd.o module then
i copy them to their position and restart the X-server
then when i let it start normally vi init() using kdm i get a


II) XINPUT: Adding extended input device PaceBook (type: TOUCHSCREEN)
(II) XINPUT: Adding extended input device Mouse[1] (type: MOUSE)
(II) XINPUT: Adding extended input device Keyboard[0] (type: KEYBOARD)
(II) Mouse[1]: ps2EnableDataReporting: succeeded
AUDIT: Tue Jun 17 15:22:50 2003: 2519 X: client 2 rejected from local host
  Auth name: XDM-AUTHORIZATION-1 ID: -1
AUDIT: Tue Jun 17 15:22:51 2003: 2519 X: client 2 rejected from local host
  Auth name: XDM-AUTHORIZATION-1 ID: -1

XFree86 does not include XDM-AUTHORIZATION support (for reasons related
to crypto export restrictions).  You'll either need to add that in to
your build (there should be someone here who can tell you how to do
that), or disable its use by kdm.

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


[Fonts] CC:Treat your mom and dad to a second honeymoon

2003-06-17 Thread Anderson Hooker
CC:Treat your mom and dad to a second honeymoon

IT'S TRUE!

You can go on a fabulous cruise where
all your meals and activities are included,
where your destination is the beautiful Freeport
in the Bahamas Islands, a place that will take
your breath away. You'll stay 4 glorious days
in the sun at the Island Palm Resort before
leaving on a romantic moonlit cruise back to Florida.

You'll then have 4 fun days to spend in magical Orlando,
the home of Disney World, an enchanted place you'll
also get a FREE pass into.

OK WHAT'S THE CATCH?

Not a one...

Except space is limited and will be booked on
a first come first serve basis.

The cruise lines and hotels do not want any empty space.
They would rather practically give the rooms away in hopes
that you'll spend time and money in the casino or some of
the many gift shops.

Even if you don't know a travel date now, you can
book any time in the next 18 months with 60 days notice.

They don't expect this drop in tourism to last forever
so take advantage now while you can.

At this price, you can take the kids or treat your
mom and dad or do a mother daughter thing or
take a second honeymoon.

With the actual vacation costs so low,
you'll be able to do the things you've
always wanted to on vacation.

To learn more about this memory making limited offer.

The information is free with no obligation.

Must be at least 21 years of age to participate!

Respond back with your:
Name:
Phone Number including area code:
Best Time To Call:

Mailto:[EMAIL PROTECTED]





o*p*t - - o*u*t
send your [EMAIL PROTECTED] email to:
Mailto:[EMAIL PROTECTED]@xfree86.org


Re: [I18n] ISO 10646:2003 to become single part standard

2003-06-17 Thread Roozbeh Pournader
On Tue, 17 Jun 2003, Markus Kuhn wrote:

 I just read the meeting resolutions of ISO/IEC JTC1/SC 2 WG 2 meeting
 43, which happened in Tokyo, 2002-12-09/12. It was decided there
 (resolution M12-02) that ISO/IEC 10646:2003 will be a single-part
 standard, to be finalized by May 2003.

I was there. One very interesting thing in the discussions was that WG2
member were trying to attach a Third Edition label to ISO/IEC
10646:2003, which it really is (10646-1:2000 had a Second Edition  
label), but ITTF (the guys who publish the ISO standards?) told that no,
it's the first 10646 proper, and so can not have that label.

roozbeh

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


Re: [XFree86] question on modules

2003-06-17 Thread Bob Lockie
On 06/17/03 00:37 Miles Roper spoke thusly

Hi,

Several times the project I'm working on has had queries regarding what are
all the libraries used in XFree.  Is there, or can, we get a description of
all the modules.  The ones below are the ones we are most interested.  We
are interested in this so we can remove the unnecessary ones from the build
as space is quite tight.
Note that we are supporting many different screen cards, so would like to
know which modules are used with which screen cards.
Cheers

Miles

libafb.a
libcfb16.a
libcfb24.a
libcfb32.a 
libcfb.a
libint10.a 
liblayer.a
libmfb.a
librac.a
libshadow.a
libshadowfb.a
libxf24_32bpp.a
libxf8_16bpp.a
libxf8_32bpp.a
libddc.a
libfb.a
libi2c.a
libpcidata.a
libramdac.a
libvbe.a
libvgahw.a
libxaa.a
libint10.a
libxf4bpp.a
Do a search on the web.
http://rpm.pbone.net/index.php3/stat/4/idpl/147664/com/XFree86-modules-afb-4.2.0-21U80_2cl.i386.rpm.html
afb is Planar framebuffer layer modules for XFree86.
--

Sent from Mozilla and GNU/Linux.
Powered by an AMD processor.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] fatal server error

2003-06-17 Thread jeffrey
Hi

I have the following error message when trying to open default font 'fixed' 

Error loading keymap/var/tmp/server-0.xkm
Couldn't loadXKM keymap,falling back to pre-XKM keymap
Couldn't init font path element unix/:7100,removing from list!

So what could the problem be?

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


Re: [XFree86] ati probs

2003-06-17 Thread Bob Lockie
On 06/16/03 13:40 Frank spoke thusly

does someone know why it doesn´t work?
i´m a real newbie with Xfree so please slow :)
thx

frank

-

Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
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: Mon Jun 16 18:39:39 2003
(==) Using config file: /etc/X11/XF86Config-4
Using vt 7
waiting for X server to shut down ..
You have the wrong driver for your card.

In /etc/X11/XF86Config or /etc/X11/XF86Config-4 what do you have for the 
line that says Driver?

Have you modified your config file from the example?
If not the run 'xf86config'.
--

Sent from Mozilla and GNU/Linux.
Powered by an AMD processor.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Automatic GUI mode changing preferrence

2003-06-17 Thread Anirban Sinha
Hi!!

I have a peculiar problem. I would be really grateful
if anyone herecan give me a solution to this problem.
When I installed RedHat linux 8 in my machine, during
XConfiguration, I had told it to load the GUI
automatically. So, during booting, my machine
automatically loads the graphical log-on screen. But
now I want to change this. I want to use character
user interface as default and start the graphical
interface later, whenever i please, using the 'startx'
command. Where and how can i change this setting and
in which file is this settng stored?

Thanking you in anticipation,

Anirban


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] GNOME desktop and X backing store

2003-06-17 Thread Stuart Merrylees
 

I have a problem with backing store on DELL Inspiron 8500 laptop 

I have several Motif applications which require backing store to be
enabled. I am running
RedHat 8.0 and have modified /etc/X11/gdm/gdm.conf as follows


[server-Standard]
name=Standard server
##command=/usr/X11R6/bin/X
command=/usr/X11R6/bin/X +bs
flexible=true


Adding a +bs makes my applications work, but the gnome desktop is
seriously confused.  Popup menus do not pop down and when I point at the
menus with the mouse pointer, a kind of vapour trail is left behind...!
Is this a bug in gdm ?

The same +bs qualifier has worked on other RedHat 8.0 installations here
(except one other).   
-- 

Regards

Stuart
 


  Stuart Merryleesemail: [EMAIL PROTECTED]
  Robertson Research International Ltd, 
  Horizon House, Azalea Drive,Tel:   +44 1322 668011
  Swanley, Kent BR8 8JR, UK.  Fax:   +44 1322 613650
 


   This E-mail is not intended to create legal relations

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


[XFree86] sis 315 not detected in RH9

2003-06-17 Thread ody yudah
hello seniors,
I am about to install RH 9. But in instalation when I
was asked to choose my VGA, surprisingly my VGA wasn't
detected, so the driver suggested for my VGA is
VESA(generic). I choose my VGA in SIS directory but
none of my VGA was listed there, there's only sis 305
and etc.
I've come to xfree site, again surprisingly sis 315
was listed in xfree 4.3's support.
Then I kept installing RH9 and choosed VESA driver,
and yes I can use GNOME. But I can't play game, video
because  the graphic's display is very slow.
So, Is there any solution so I can use my VGA properly
?  
BTW, RH9 uses xfree 4.3, doesn't it ?

Please, forgive if my english is bad.
Thank You


=
---
ody yudah

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] XFree on Toshiba Satellite 1410

2003-06-17 Thread Monika Dekster
Hello,

I've just installed RedHat 7.3 on my Toshiba Satellite 1410
laptop but I cannot get the proper display parameters
to get Xwindows running. The grafics is Nvidia GeForce4 420,
1024X768 resolution. I tried several configurations
but none worked. May be someone knows the proper parameters
for the Xconfigurator or XF86Config file working for this
hardware.

Thanks



Dr. Monika Deksterhttp://www.icsr.agh.edu.pl/~mbargiel/
Institute of Computer Science,
University of Mining and Metallurgy
al. Mickiewicza 30 C2/419 30-059 Cracow, Poland
[EMAIL PROTECTED]  phone +48 12 617-34-92
___

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


[XFree86] X compression over slow network?

2003-06-17 Thread Sameer Zeidat
Hi ..

Sorry if this has been asked before, but I didn't find anything
related.

Is there any option in X11 or an add on software that provides
compression for X running over a network connection? 

If compression is not possible, what options do I have to speed up X
over a network?

I've tried to run X through SSH tunneling with compression, but the
speed difference is negligible.

Many thanks for any hint.



__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XFree on Toshiba Satellite 1410

2003-06-17 Thread Damian Kolkowski
On Tue, Jun 17, 2003 at 01:22:31PM +0200, Monika Dekster wrote:
 I've just installed RedHat 7.3 on my Toshiba Satellite 1410
 laptop but I cannot get the proper display parameters
 to get Xwindows running.
 

First of all man X. Not Xwindows only X Window System :-)

 The grafics is Nvidia GeForce4 420, 1024X768 resolution. I tried several
 configurations but none worked. May be someone knows the proper parameters
 for the Xconfigurator or XF86Config file working for this hardware.

Try X -configure, then make some changes in that config, thats all.

Besides, what is your X version..? Would you like to load glx??? (Binary
drivers from NVidia are the best).

One small hint, namely if you wont too use _rivafb_ with _nvidia_ in X, you
will see that NV binary drivers have some errors with that FB.
So the best way too use binary drivers with OpenGL in X (nvidia) with FB is
too load vesafb, or simply don't use the FB only svga :-)

P.S. In the future, the best way to have some help is to attach the config
file from X.

-- 
# Damian *dEiMoS* Kokowski # http://deimos.one.pl/ #
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Server_Terminate keybinding not found

2003-06-17 Thread jef peeraer
i have an epia-m6000 motherboard with the cle266 graphics chipset. I noticed 
that this chipset is included in xfree 4.3.99. I did a complete new build, 
and install. After i start xfree, i get my login screen xdm, with a perfect 
resolution and timing, but i don't get keyboard / mouse access ( no response 
at all ). These are both ps/2 devices. My kernel is version 2.4.19 . The tail 
of my log files is this 


(**) Option CorePointer
(**) Mouse1: Core Pointer
(**) Option Device /dev/psaux
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse1: Buttons: 3
(II) Keyboard Keyboard1 handled by legacy driver
(II) XINPUT: Adding extended input device Mouse1 (type: MOUSE)
Couldn't load XKB keymap, falling back to pre-XKB keymap
(II) Server_Terminate keybinding not found
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing 
from list!

config file 


#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/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/

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

ModulePath /usr/X11R6/lib/modules

EndSection



Section InputDevice

Identifier  Keyboard1
Driver  Keyboard
#Option AutoRepeat 500 30
#Option XkbRules  xfree86
#Option XkbKeycodes   xfree86
#Option XkbModel  pc104
#Option XkbLayout us

EndSection


Section InputDevice


Identifier  Mouse1
Driver  mouse
Option ProtocolPS/2
Option Device  /dev/psaux


EndSection



Section Monitor

Identifier  ctx
HorizSync   30 - 72
VertRefresh 55-130

  #Refresh Rate 60Hz
  ModeLine 720x480 26.7 720 736 808 896 480 481 484 497
  ModeLine 720x576 32.7 720 744 816 912 576 577 580 597
  ModeLine 848x480 31.5 848 864 952 1056 480 481 484 497
  ModeLine 856x480 31.7 856 872 960 1064 480 481 484 497
  ModeLine 1024x512 41.3 1024 1056 1160 1296 512 513 516 531
  ModeLine 1280x768 80.1 1280 1344 1480 1680 768 769 772 795
  ModeLine 1440x1050 126.2 1440 1536 1688 1936 1050 1051 1054 1087
  #Refresh Rate 75Hz
  ModeLine 720x480 34.9 720 752 824 928 480 481 484 502
  ModeLine 720x576 42.6 720 760 832 944 576 577 580 602
  ModeLine 848x480 41.0 848 880 968 1088 480 481 484 502
  ModeLine 856x480 41.3 856 888 976 1096 480 481 484 502
  ModeLine 1024x512 53.3 1024 1072 1176 1328 512 513 516 535
  ModeLine 1280x768 103.0 1280 1360 1496 1712 768 769 772 802
  ModeLine 1440x1050 160.0 1440 1536 1696 1952 1050 1051 1054 1096
  #Refresh Rate 85Hz
  ModeLine 1280x768 118.5 1280 1368 1504 1728 768 769 772 807
  ModeLine 1440x1050 184.5 1440 1544 1704 1968 1050 1051 1054 1103
  ModeLine 848x480 47.4 848 888 976 1104 480 481 484 505
 
EndSection
 
 
 
Section Device
Identifier  Standard VGA
VendorName  Unknown
BoardName   Unknown
Driver vga
EndSection
 
# Device configured by xf86config:
 
Section Device
Identifier  via
Driver  via
Option  SWcursor  On
#Option ActiveDevice  CRT
EndSection
 
 
Section Screen
Identifier  Screen 1
Device  via
Monitor ctx
DefaultDepth 16
 
Subsection Display
Depth   8
Modes   1024x768 640x480 800x600 1280x1024
EndSubsection
Subsection Display
Depth   16
Modes   1024x768 640x480 800x600 1280x1024
EndSubsection
Subsection Display
Depth   24
Modes   640x480 800x600 1024x768 1280x1024
EndSubsection
EndSection
 
Section ServerLayout
 
Identifier Server 1
Screen Screen 1
InputDevice Mouse1CorePointer
InputDevice Keyboard1 CoreKeyboard
 
EndSection
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: Re[2]: [XFree86] 4.3.0 and ATI Radeon

2003-06-17 Thread Cynthia Grossen
You have the same name as my cat. (Shadow--No, I don't use his name for any
of my password secrets.)

I think that you need the cvs version of 4.3.0 or there is a patch floating
around out there for radeon drivers for 4.3.0. But it looks like you are
having problems with a bug that was fixed in cvs.

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


RE: [XFree86] Help With Configuration.

2003-06-17 Thread Cynthia Grossen
4.2.0 doesn't support that card.

(--) PCI:*(0:13:0) S3 Trio64V2/DX or /GX rev 22, Mem @ 0xf800/26

(II) S3: driver (version 0.3.5 for S3 chipset: 964-0, 964-1, 968,
Trio32/64, Aurora64V+
(II) Primary Device is: PCI 00:0d:0
(--) Assigning device section with no busID to primary device
(EE) No devices detected.

So upgrade to 4.3.0


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/)


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 11:57:57
EDT 2002

(==) Log file: /var/log/XFree86.0.log, Time: Mon Jun 16 21:51:27 2003
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Option for driver

2003-06-17 Thread kligon



Hi,
I have a Genius Tablet "easypen", and i can 
configure it
I try the summa_drv.o driver but i don't know where 
is the option for this driver (and i don't know if it is the right driver 
!!)

if someone have a solution 
thx



RE: [XFree86] Automatic GUI mode changing preferrence

2003-06-17 Thread Cynthia Grossen
 Init
   Init  is the parent of all processes.  Its primary role is
   to create processes from  a  script  stored  in  the  file
   /etc/inittab  (see  inittab(5)).   This  file  usually has
   entries which cause init to spawn gettys on each line that
   users  can  log in.  It also controls autonomous processes
   required by any particular system.

http://www.die.net/doc/linux/man/man8/init.8.html

Level - 5 GUI
Level - 3 shell

/etc/inittab file

HTH,
cyn

 -Original Message-
 From: Anirban Sinha [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, June 17, 2003 4:24 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] Automatic GUI mode changing preferrence
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] makedepend, is it xfree86 tool ? I have problems with it.

2003-06-17 Thread Tomasz Sztejka
Hi,
 I recently started to moving from old DOS'like development to
makefiles and makedepend. Now I have found some problems with
makedepend. Am I correct, that this tool belongs to Xfree86 (I mean,
Xfree86 is maintaing it) or there is another place where I should ask
about problems with makedepend?

 Now to the problem itself. I have a file:

FILE : z.h
#ifndef Z_H1
#define Z_H1
 #include z2.h
#endif

 and

FILE: z2.h - empty.

when I run:
  makedepend -f- z.h

the dependency list is empty, but when I change file to:
FILE : z.h
#ifndef Z_H1
#define Z_H1
#include z2.h
#endif

 and run the same, output is correct. Did you noticed the difference?
It appears no space nor tab is allowed in front of #include.
 Can anybody confirm it or correct me if I'm wrong? I'm using Cygwin
now, so it may be related to it.

kind regards,
  Tomasz Sztejka




 


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] fonts

2003-06-17 Thread Ariel Fritz
Hi all

I made up an appñication in gtk. I've used two kind of fonts in it 
(-adobe-helvetica-*-r-*-*-*-240-*-*-*-*-*-* and 
-etl-*-*-*-*-*-*-400-*-*-*-*-*-*).
Now I need an small XFree in my computer.
How can choose fonts files for this two kind of fonts that I've used? 
What files should I copy to be able to use these fonts?

I hope somebody can help me soon !!!

Thanks in advance and regards



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


[XFree86] XLib question: Using XImage

2003-06-17 Thread Tim
I'm trying to implement a image loader that uses
XImage(for the speed offered by direct access to
XImage::data). The problem is that Xlib is so poorly
documented that it's difficult to find anything beyond
the manpages(or a PDF version of them) and this
especially includes XImage. I've been searching for
days but could not find any docs that explain the
XImage::data format or offer a good example of using
XImage with loaded data(No hard coded values or
colors). While using the same DIB format in BMP files
seems the most logical to me some sources I've looked
at seem to indicate that the format is just a list of
pixel values. Does anyone have experience working with
XImage or know where to find source of a program that
loads BMPs or PCMs or TIFFs and uses XImage to display them?

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X

2003-06-17 Thread Daksh Chauhan



I am trying to configure X in Yellow Dog Linux on 
XServe, and getting following message. This message referes to a log file, and I 
have attached that file with this email.


XFree86 Version 4.3.0 (Yellow Dog Linux release: 
4.3.0-2.1c)Release Date: 27 February 2003X Protocol Version 11, Revision 
0, Release 6.6Build Operating System: Linux 2.4.20-7csmp ppc [ELF]Build 
Date: 12 March 2003Build Host: skyfox.terraplex.com

 Before 
reporting problems, check http://www.XFree86.Org/ 
to make sure that you have the latest version.Module Loader presentOS 
Kernel: Linux version 2.4.20-10c ([EMAIL PROTECTED]) 
(gcc version 3.2.2 20030217 (Yellow Dog Linux 3.0 3.2.2-2a)) #1 Fri May 23 
12:04:56 MDT 2003Markers: (--) probed, (**) from config file, (==) default 
setting, (++) from command 
line, (!!) notice, (II) 
informational, (WW) warning, 
(EE) error, (NI) not implemented, (??) unknown.(==) Log file: 
"/var/log/XFree86.0.log", Time: Tue Jun 17 14:16:41 2003(++) Using config 
file: "/root/XF86Config.new"Symbol xf86SetDDCproperties from module 
/usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved!

 *** If unresolved symbols were 
reported above, they might not *** be the reason for the server 
aborting.

Fatal server error:Caught signal 11. 
Server aborting

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

Aborted


Thanks
D. ChauhanInformation TechnologyAll 
American Moving  Storage901.353.3900x1385


XFree86.0.log
Description: Binary data


Re: [XFree86] ati probs

2003-06-17 Thread Frank
Bob Lockie schrieb:

On 06/16/03 13:40 Frank spoke thusly

does someone know why it doesn´t work?
i´m a real newbie with Xfree so please slow :)
thx

frank

-

Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
Using authority file /root/.Xauthority
Writing authority file /root/.Xauthority
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: Mon Jun 16 18:39:39 2003
(==) Using config file: /etc/X11/XF86Config-4
Using vt 7
waiting for X server to shut down ..


You have the wrong driver for your card.

In /etc/X11/XF86Config or /etc/X11/XF86Config-4 what do you have for 
the line that says Driver?

Have you modified your config file from the example?
If not the run 'xf86config'.

Thx but now i have an other prob. where you will not help me :(
the hardware broke down and i have to repair it first :(
but i think it a prob. because it´s a vivo, i need a special driver?

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


RE: [XFree86] Automatic GUI mode changing preferrence

2003-06-17 Thread Sadanapalli, Pradeep Kumar (MED, TCS)
Edit the file /etc/inittab and replace the line
 id:5:initdefault:   with
 id:3:initdefault:   


-Original Message-
From: Cynthia Grossen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 17, 2003 8:23 AM
To: '[EMAIL PROTECTED]'
Subject: RE: [XFree86] Automatic GUI mode changing preferrence


 Init
   Init  is the parent of all processes.  Its primary role is
   to create processes from  a  script  stored  in  the  file
   /etc/inittab  (see  inittab(5)).   This  file  usually has
   entries which cause init to spawn gettys on each line that
   users  can  log in.  It also controls autonomous processes
   required by any particular system.

http://www.die.net/doc/linux/man/man8/init.8.html

Level - 5 GUI
Level - 3 shell

/etc/inittab file

HTH,
cyn

 -Original Message-
 From: Anirban Sinha [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, June 17, 2003 4:24 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] Automatic GUI mode changing preferrence
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] cle266 (epia-m) and xfree 4.3.99

2003-06-17 Thread jef peeraer
i have an epia-m6000 motherboard with the cle266 graphics chipset. I noticed 
that this chipset is included in xfree 4.3.99. I did a complete new build, 
and install. After i start xfree, i get my login screen xdm, with a perfect 
resolution and timing, but i don't get keyboard / mouse access ( no response 
at all ). These are both ps/2 devices. My kernel is version 2.4.19 . The tail 
of my log files is this 


(**) Option CorePointer
(**) Mouse1: Core Pointer
(**) Option Device /dev/psaux
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse1: Buttons: 3
(II) Keyboard Keyboard1 handled by legacy driver
(II) XINPUT: Adding extended input device Mouse1 (type: MOUSE)
Couldn't load XKB keymap, falling back to pre-XKB keymap
(II) Server_Terminate keybinding not found
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing 
from list!

config file 


#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/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/

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

ModulePath /usr/X11R6/lib/modules

EndSection



Section InputDevice

Identifier  Keyboard1
Driver  Keyboard
#Option AutoRepeat 500 30
#Option XkbRules  xfree86
#Option XkbKeycodes   xfree86
#Option XkbModel  pc104
#Option XkbLayout us

EndSection


Section InputDevice


Identifier  Mouse1
Driver  mouse
Option ProtocolPS/2
Option Device  /dev/psaux


EndSection



Section Monitor

Identifier  ctx
HorizSync   30 - 72
VertRefresh 55-130

  #Refresh Rate 60Hz
  ModeLine 720x480 26.7 720 736 808 896 480 481 484 497
  ModeLine 720x576 32.7 720 744 816 912 576 577 580 597
  ModeLine 848x480 31.5 848 864 952 1056 480 481 484 497
  ModeLine 856x480 31.7 856 872 960 1064 480 481 484 497
  ModeLine 1024x512 41.3 1024 1056 1160 1296 512 513 516 531
  ModeLine 1280x768 80.1 1280 1344 1480 1680 768 769 772 795
  ModeLine 1440x1050 126.2 1440 1536 1688 1936 1050 1051 1054 1087
  #Refresh Rate 75Hz
  ModeLine 720x480 34.9 720 752 824 928 480 481 484 502
  ModeLine 720x576 42.6 720 760 832 944 576 577 580 602
  ModeLine 848x480 41.0 848 880 968 1088 480 481 484 502
  ModeLine 856x480 41.3 856 888 976 1096 480 481 484 502
  ModeLine 1024x512 53.3 1024 1072 1176 1328 512 513 516 535
  ModeLine 1280x768 103.0 1280 1360 1496 1712 768 769 772 802
  ModeLine 1440x1050 160.0 1440 1536 1696 1952 1050 1051 1054 1096
  #Refresh Rate 85Hz
  ModeLine 1280x768 118.5 1280 1368 1504 1728 768 769 772 807
  ModeLine 1440x1050 184.5 1440 1544 1704 1968 1050 1051 1054 1103
  ModeLine 848x480 47.4 848 888 976 1104 480 481 484 505
 
EndSection
 
 
 
Section Device
Identifier  Standard VGA
VendorName  Unknown
BoardName   Unknown
Driver vga
EndSection
 
# Device configured by xf86config:
 
Section Device
Identifier  via
Driver  via
Option  SWcursor  On
#Option ActiveDevice  CRT
EndSection
 
 
Section Screen
Identifier  Screen 1
Device  via
Monitor ctx

DefaultDepth 16
 
Subsection Display
Depth   8
Modes   1024x768 640x480 800x600 1280x1024
EndSubsection
Subsection Display
Depth   16
Modes   1024x768 640x480 800x600 1280x1024
EndSubsection
Subsection Display
Depth   24
Modes   640x480 800x600 1024x768 1280x1024
EndSubsection
EndSection
 
Section ServerLayout
 
Identifier Server 1
Screen Screen 1
InputDevice Mouse1CorePointer
InputDevice Keyboard1 CoreKeyboard
 
EndSection
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] sis 315 not detected in RH9

2003-06-17 Thread Erick Peirson
Ahoy! I have a SiS 315 myself. Unfortunately, I do not believe that
changing your driver to sis will solve your problem. If I remember
correctly, after changing, everything pretty much stayed the same. 
Check out http://www.winischhofer.net/.

Peace
Erick

On Tue, 2003-06-17 at 10:12, Bob Lockie wrote:
 On 06/17/03 07:06 ody yudah spoke thusly
 
  hello seniors,
  I am about to install RH 9. But in instalation when I
  was asked to choose my VGA, surprisingly my VGA wasn't
  detected, so the driver suggested for my VGA is
  VESA(generic). I choose my VGA in SIS directory but
  none of my VGA was listed there, there's only sis 305
  and etc.
  I've come to xfree site, again surprisingly sis 315
  was listed in xfree 4.3's support.
  Then I kept installing RH9 and choosed VESA driver,
  and yes I can use GNOME. But I can't play game, video
  because  the graphic's display is very slow.
  So, Is there any solution so I can use my VGA properly
  ?  
  BTW, RH9 uses xfree 4.3, doesn't it ?
  
  Please, forgive if my english is bad.
  Thank You
 
 In the /etc/X11/XF86Config (or if you have one, /etc/X11/XF86Config-4) 
 file, change Driver from vesa to sis.
 

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


Re: [XFree86] XFree on Toshiba Satellite 1410

2003-06-17 Thread Mark Vojkovich
On Tue, 17 Jun 2003, Monika Dekster wrote:

 Hello,
 
 I've just installed RedHat 7.3 on my Toshiba Satellite 1410
 laptop but I cannot get the proper display parameters
 to get Xwindows running. The grafics is Nvidia GeForce4 420,
 1024X768 resolution. I tried several configurations
 but none worked. May be someone knows the proper parameters
 for the Xconfigurator or XF86Config file working for this
 hardware.

   That chip wasn't supported by the nv driver that came
with XFree86 until XFree86 4.3.  You'll either want to 
upgrade to XFree86 4.3 or use NVIDIA's binary drivers available
from the NVIDIA web site.  Those will work with your current
X-server.


Mark.

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


Re: [XFree86] HELP ME PLEASE, problem with xfree86

2003-06-17 Thread Mark Vojkovich
   We need to see your /var/log/XFree86.0.log file.


Mark.

On Tue, 17 Jun 2003, [iso-8859-1] fedesciro wrote:

 Good morning i have a problem with xfree86 grafical interface. i have red hat linux 
 8.0
 the problem is that only the text mode start with the text console. the grafical 
 mode is crashed.
 Is possible  reistall xfree86 from the cd rom. Have you another solution to the 
 problem?
 Thank you, please help me.
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] HELP ME PLEASE, problem with xfree86

2003-06-17 Thread Jesse Hutton
Yes, send us your /var/log/XFree86.0.log file and perhaps
/etc/X11/XF86Config-4 as well.

Jesse

On Tue, 17 Jun 2003, [iso-8859-1] fedesciro wrote:

 Good morning i have a problem with xfree86 grafical interface. i have red hat linux 
 8.0
 the problem is that only the text mode start with the text console. the grafical 
 mode is crashed.
 Is possible  reistall xfree86 from the cd rom. Have you another solution to the 
 problem?
 Thank you, please help me.


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




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


[XFree86] HELP ME PLEASE, problem with xfree86

2003-06-17 Thread fedesciro
Good morning i have a problem with xfree86 grafical interface. i have red hat linux 8.0
the problem is that only the text mode start with the text console. the grafical mode 
is crashed.
Is possible  reistall xfree86 from the cd rom. Have you another solution to the 
problem?
Thank you, please help me.


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


Re: [XFree86] keyboards with special keys

2003-06-17 Thread Henrik Sandklef
Take a look at xkeymomuse:
http://sourceforge.net/projects/xkeymouse/
/hesa
On Mon, 2003-06-16 at 23:16, Bryan Koschmann - GKT wrote:
 Hey everyone,
 
 I'm looking for information on howto setup/configure a keyboard (namely a
 logitech elite w/ volume, www, mail, etc. buttons) to use under X. It uses
 a standard PS/2 port, so I would imagine it should be possible. I just
 want to be able to setup each key to do whatever I like.
 
 I'm more looking for a how-to with some detailed examples. Maybe this
 would also have some information for mouse buttons as well?
 
 Thank you,
 
   Bryan
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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


Re: [XFree86] wrong list?

2003-06-17 Thread Bryan Koschmann - GKT
Yann,

Thanks for the reply.

 You're wrong. It's the correct place to ask your question. Most if not all
 people here are volunteers. If they can't help (no time, no answer), don't
 blame them. Maybe someone will answer you in a short time. Maybe the
 knowledgeable people missed your posts, are on vacancy, have their own life
 to go on with (hopefuly they have! ;-) )... Maybe no one as the answer...

I do understand that everyone here volunteers their time. I'm on a number
of mailing lists such as this, and I think I have a pretty good feel for
how they work and I also volunteer a lot of my time answering as well.
But, this is also a community effort. Xfree has to be one of the biggest
parts of using linux other than the kernel. Being such, I was expecting
more traffic and therefore more information. Personally, I think the xfree
site should have more information about configuring mice/keyboards with an
explanation on how to expand it for each button/key.

I apologize if my expectations were too high. To be perfectly honest, it
seemed a very simple question with probably a very simple answer, just
that I couldn't find it. If this were a branched-ff list I would expect
few/no responses, but supposedly being the *main* list, I couldn't see any
reason to not have half a dozen replies either saying heres how to do it
or heres a url that explains it.

I see there is an average of about 40+ messages a day (since I subscribed
anyway), which is a fairly high-traffic list.

I guess I am really curious now, is setting up extra mouse buttons and
special keyboard keys such a rare occurence that the majority of people on
this list have no idea how to do it, nor where to find out?

Please don't take me the wrong way here, as I don't mean to sound
unappreciative or disrespectful. It's just that it is very frustrating
when after looking everywhere else, you come to the one place that you
just *know* has the answer, and end up feeling ignored. It's a very rare
occasion that I've had this happen on other lists, even with odd and tough
questions.

 Try 'xev' to check for scancodes if they make some (some PCs have buttons that
 are handled by the BIOS/whatever, and do not have scancode associated).

I was able to get the scancodes, but my biggest issue is where to tell it
scancode 226 will do this and mouse button 4 will do this.

 Try: man setxkbmap, maybe that will help (this is a wild guess, I know
 almost nothing regarding KB  Mice in XFree).

I just took a look at that, seems more to simple change the layout, but
not set specific keys.

 Also, Google for xfree86 keyboard special buttons and skip the first three
 match, they are 'dead'. Digging into third match gives a ML archive:
 http://mailman.linux-thinkpad.org/pipermail/linux-thinkpad/2002-June/thread.html
 Look for Grey volume buttons.

 The fourth match looks quite interesting...

The archived thread looked right at first, but turned out there was no
discussion pertaining to what I needed.

However, that google search turned up a few things that will point me in
the right direction. I had done some searching for something other than
that, but I can't remember what. However they didn't turn up what I
needed.


Thank you for the reply and all the information. It is very much
appreciated.


Bryan

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


[XFree86] No Screen Errors

2003-06-17 Thread Pfp333
I also have a "no screen" error problem similar to the one mentioned in a letter dated 18 April 2003 in the forum. I am trying to install Red Hat Linux 7.3 as described in the Bible written by Christopher Negus. Can you suggest a fix?

[EMAIL PROTECTED] 


Re: [XFree86] wrong list?

2003-06-17 Thread Bob Lockie
On 06/17/03 18:59 Bryan Koschmann - GKT spoke thusly

Yann,

Thanks for the reply.


You're wrong. It's the correct place to ask your question. Most if not all
people here are volunteers. If they can't help (no time, no answer), don't
blame them. Maybe someone will answer you in a short time. Maybe the
knowledgeable people missed your posts, are on vacancy, have their own life
to go on with (hopefuly they have! ;-) )... Maybe no one as the answer...


I do understand that everyone here volunteers their time. I'm on a number
of mailing lists such as this, and I think I have a pretty good feel for
how they work and I also volunteer a lot of my time answering as well.
But, this is also a community effort. Xfree has to be one of the biggest
parts of using linux other than the kernel. Being such, I was expecting
more traffic and therefore more information. Personally, I think the xfree
site should have more information about configuring mice/keyboards with an
explanation on how to expand it for each button/key.
I apologize if my expectations were too high. To be perfectly honest, it
seemed a very simple question with probably a very simple answer, just
that I couldn't find it. If this were a branched-ff list I would expect
few/no responses, but supposedly being the *main* list, I couldn't see any
reason to not have half a dozen replies either saying heres how to do it
or heres a url that explains it.
I see there is an average of about 40+ messages a day (since I subscribed
anyway), which is a fairly high-traffic list.
I guess I am really curious now, is setting up extra mouse buttons and
special keyboard keys such a rare occurence that the majority of people on
this list have no idea how to do it, nor where to find out?
Please don't take me the wrong way here, as I don't mean to sound
unappreciative or disrespectful. It's just that it is very frustrating
when after looking everywhere else, you come to the one place that you
just *know* has the answer, and end up feeling ignored. It's a very rare
occasion that I've had this happen on other lists, even with odd and tough
questions.

Try 'xev' to check for scancodes if they make some (some PCs have buttons that
are handled by the BIOS/whatever, and do not have scancode associated).


I was able to get the scancodes, but my biggest issue is where to tell it
scancode 226 will do this and mouse button 4 will do this.

Try: man setxkbmap, maybe that will help (this is a wild guess, I know
almost nothing regarding KB  Mice in XFree).


I just took a look at that, seems more to simple change the layout, but
not set specific keys.

Also, Google for xfree86 keyboard special buttons and skip the first three
match, they are 'dead'. Digging into third match gives a ML archive:
http://mailman.linux-thinkpad.org/pipermail/linux-thinkpad/2002-June/thread.html
Look for Grey volume buttons.
The fourth match looks quite interesting...


The archived thread looked right at first, but turned out there was no
discussion pertaining to what I needed.
However, that google search turned up a few things that will point me in
the right direction. I had done some searching for something other than
that, but I can't remember what. However they didn't turn up what I
needed.
Thank you for the reply and all the information. It is very much
appreciated.
	Bryan
I missed your question.
You want to set up short-cut keys?
That is configurable by your window manager so see the documentation for 
that.

--

Sent from Mozilla and GNU/Linux.
Powered by an AMD processor.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Problems with configuring finding X

2003-06-17 Thread Joseph Felps




Ok I must be doing something wrong because when
I try to compile programs, the config files can't find X.  Even though
it's installed and I can startx. 

Here's what I did.  I installed debian with the base system and only C
development software.  Then compiled my kernal v2.4.21.  Then I tried
install the binaries 4.3.0 for my system, but X wouldn't start at all. 
It seemed like not all the files were being installed in the /etc/X11
directory.  So i installed the X from debian cds, then 4.3.0 and it
starts fine.  Next I wanted to installed the nvidia drivers.  I got the
2 tar files, Kernel and GLX.  They installed fine, so I edit my config
but X couldn't load the modules.  It seems I can't get my X installed
properally.  Anyway I went with the default driver "nv" instead of
"nvidia"(the one that should work) and installed kde.  I'm not sure
exactlly how to get kde to boot up without starting X first. Because I
don't get the kde login, I get the X login, and kde is started in X. 

With not X on my system at all, what is the best method of
installation?  Should I compile the sources?

Thanks.




RE: [Thinstation-developer] Re: [XFree86] question on modules

2003-06-17 Thread Mark Vojkovich
On Wed, 18 Jun 2003, Miles Roper wrote:

 Really thanks for your indications!
 
 ...Do you also know something about these other libs, and in particular
 if they are really required?
 
 extensions/libdbe.a

   This is the double buffer extension.  No it's not strictly
required.   The X screensavers will use it if available but they
can work without it.

 extensions/libextmod.a

   The server will run without it but it has alot of stuff in it
that most people want, such as the shape extension (in case you
want to have windows that aren't rectangular) or the shared
memory extension (in case you actually want to have resonable
performance displaying images or video).


 fonts/libbitmap.a

   I think this is required.  This is support for the most basic font
rendering.

 linux/libint10.a

   You need an int10 module.  There are two: libint10.a and linux/libint10.a.
On Linux, the Linux one works better.


 
 Do you also have some particular suggestion to help us strip xf43 to the
 minimum?


   I depends what graphics hardware you're using and what you want
to do with it.  What you're doing currently is making the disk
footprint as small as possible.  Is that what you wanted to do 
or are you more concerned with memory footprint?  Deleting unused
modules is going to have no impact on your memory footprint.


Mark.

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


Re: [XFree86] Automatic GUI mode changing preferrence

2003-06-17 Thread Yves Caniou
Hi,

 Thankx a ton!!! but I have another problem. I have Original Intel D845 GLVA
 motherboard with integrated graphics and use RedHat 8. Since i do not get a
 resolution higher than 800x600 ( i desperately need a higher resolution),
 I downloaded the XFree86 4.3 and installed it. But whatever i do in order
 to configure XFree86 ( i tried everything, just every configuration tweak i
 can think of), the graphical interface neither works in the old 800*600
 resolution, nor in 1024*768 resolution. The monotir led keeps blinking
 while I get a dark screen. I have a Samtron 50 E monitor.

 I am attaching the Xfree86.0.log as well as XF86Config file. Can anyone
 please help me out of this? Pleaseee?

 Thanking you in anticipation ...

I am not pro but I can see in your log file
II) I810(0): Monitor0: Using hsync range of 50.00-120.00 kHz
(II) I810(0): Monitor0: Using vrefresh range of 30.00-61.00 Hz

Are you sure you have not swapped the info concerning the frequencies of your 
monitor (the vertical and horizontal frequency) ?
In your XF86Config-4 file, invert HorizSync and VertRefresh... after verifiyng 
that is correct of course :)
Moreover, your Section Screen could be : 
Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth24
Subsection Display
Depth 1
Modes 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection
htp.

.Yves.

-: Unix IS user-friendly, it just chooses its friends very carefully. :-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86