RE: [Newbie]trembly screen

2002-11-22 Thread Elise . Huard
My particular laptop isn't there, but it's a good place to start looking.
And if i sort it out i might even contribute :-)  Thanks !

--
From:  Lionel Lecoq [SMTP:[EMAIL PROTECTED]]
Sent:  21 November 2002 17:46
To:  [EMAIL PROTECTED]
Subject:  Re: [Newbie]trembly screen

Usually, laptops *like* best the resolution they have been designed
for, any other resolution is
going to be obtained by interpolation and will not yield a good
image...
Whether this is the ground for your problem, I don't know. However
60Hz refresh is usually the
right value for most laptops...
more can be found at http://www.linux-laptop.net/
cheers
Lionel

--- Huard, Elise - D CW Consultant
[EMAIL PROTECTED] wrote:
 Hello,
 
 after trying a lot of different things on my Acer Aspire laptop, i
finally
 got an image using gdm and server 'savage' (it's supposed to be a
S3
 ProSavage card).
 The trouble is, i still haven't found ANY doc about the
frequencies of my
 LCD monitor, and the image is trembling.  What does that mean ?
Do you have
 any advice at how to find the right frequencies ?  Is it something
else ?
 Also the definition right now is not what i specified in
XF86Config-4 :
 1024x780 (or something), but the one higher up.  Is there another
config
 file to take into account ?
 Thanks,
 
 Elise


***
 This email and any accompanying files are confidential.  If
you are
 not  the  intended recipient  you  must not use,  copy or disclose
the
 content.   If you have received this email in error please contact
the 
 sender by return email and delete this message. 
 Thankyou for your co-operation.


*
 ___
 Newbie mailing list
 [EMAIL PROTECTED]
 *** To unsubscribe , or change message options, see:
 http://XFree86.Org/mailman/listinfo/newbie


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie
***
This email and any accompanying files are confidential.  If you are
not  the  intended recipient  you  must not use,  copy or disclose the
content.   If you have received this email in error please contact the 
sender by return email and delete this message. 
Thankyou for your co-operation.
*
___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie



[Newbie]Using an X server remotely.

2002-11-22 Thread Ian Duffy
I am currently doing a project on an embedded single-board computer (586 
based). It has 64MB RAM, 4GB HDD, a serial port and a ethernet port. Note 
it has no direct hardware support for a monitor, mouse, keyboard etc.

The source code for the project is stored locally on the HDD and is 
compiled locally using GCC 3.2.7. No problem.

I have installed Redhat 7.2 and currently develop code by 'telnet'ing in 
and using vi to edit the source code. Yuk.

I have recently installed cygwin on my 'normal' desktop PC (Windows XP on 
Athlon 1500) and would like to start X on the target embedded computer. 
That way I can develop on my desktop PC using the cygwin X-client and use 
emacs instead.

When I telnet into the embedded computer and run 'startx' I get
	Fatal server error :
	fs86OpenConsole: Cannot open /dev/tty0 (No such device)


Yet /dev/tty0 does exist ! It is mapped to the local serial port and works 
fine. I have a bash shell running on it !

I did remember to edit my startx script so that xinit is being called as 
follows :
	xinit /etc/X11/xinit/xinitrc -- :192.168.1.3:0 -auth /root/.Xauthority

How can I get X to start without needing a local console ?
I would like all I/O to be directed to my Windows PC and not to local hardware.


Any help would be appreciated.

Thanks

Ian


___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie


Re: [Newbie]Using an X server remotely.

2002-11-22 Thread Ed Lott
Ian:
You do not need to start X on the host.

If Cygwin supports XDM then you need to make sure one of (xdm or 
kdm or gdm) is running on the host and configured to allow remote logins.

If you can not use XDM then you can project X clients on the 
Cygwin machine. The host machine must have the Cygwin/Display machine in 
it's /etc/hosts table, in it's /etc/hosts.allow file. Then you can telnet 
into the host and set the DISPLAY environment variable and launch your X 
applications. For example:

telnet host.ipaddr
DISPLAY= display.ipaddr:0.0
export DISPLAY
xterm 
xedit 

Ed.

---
---
At 02:01 PM 11/22/2002 +, you wrote:
I am currently doing a project on an embedded single-board computer (586 
based). It has 64MB RAM, 4GB HDD, a serial port and a ethernet port. Note 
it has no direct hardware support for a monitor, mouse, keyboard etc.

The source code for the project is stored locally on the HDD and is 
compiled locally using GCC 3.2.7. No problem.

I have installed Redhat 7.2 and currently develop code by 'telnet'ing in 
and using vi to edit the source code. Yuk.

I have recently installed cygwin on my 'normal' desktop PC (Windows XP on 
Athlon 1500) and would like to start X on the target embedded computer. 
That way I can develop on my desktop PC using the cygwin X-client and use 
emacs instead.

When I telnet into the embedded computer and run 'startx' I get
Fatal server error :
fs86OpenConsole: Cannot open /dev/tty0 (No such device)


Yet /dev/tty0 does exist ! It is mapped to the local serial port and works 
fine. I have a bash shell running on it !

I did remember to edit my startx script so that xinit is being called as 
follows :
xinit /etc/X11/xinit/xinitrc -- :192.168.1.3:0 -auth 
/root/.Xauthority

How can I get X to start without needing a local console ?
I would like all I/O to be directed to my Windows PC and not to local 
hardware.


Any help would be appreciated.

Thanks

Ian


___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie

___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie



Re: [Newbie]Using an X server remotely.

2002-11-22 Thread Ian Duffy
Ed.
Thanks a lot!
It works.

Ian

At 09:32 22/11/2002 -0600, you wrote:

Ian:
You do not need to start X on the host.

If Cygwin supports XDM then you need to make sure one of (xdm or 
kdm or gdm) is running on the host and configured to allow remote logins.

If you can not use XDM then you can project X clients on the 
Cygwin machine. The host machine must have the Cygwin/Display machine in 
it's /etc/hosts table, in it's /etc/hosts.allow file. Then you can telnet 
into the host and set the DISPLAY environment variable and launch your X 
applications. For example:

telnet host.ipaddr
DISPLAY= display.ipaddr:0.0
export DISPLAY
xterm 
xedit 

Ed.

---
---
At 02:01 PM 11/22/2002 +, you wrote:
I am currently doing a project on an embedded single-board computer (586 
based). It has 64MB RAM, 4GB HDD, a serial port and a ethernet port. Note 
it has no direct hardware support for a monitor, mouse, keyboard etc.

The source code for the project is stored locally on the HDD and is 
compiled locally using GCC 3.2.7. No problem.

I have installed Redhat 7.2 and currently develop code by 'telnet'ing in 
and using vi to edit the source code. Yuk.

I have recently installed cygwin on my 'normal' desktop PC (Windows XP on 
Athlon 1500) and would like to start X on the target embedded computer. 
That way I can develop on my desktop PC using the cygwin X-client and use 
emacs instead.

When I telnet into the embedded computer and run 'startx' I get
Fatal server error :
fs86OpenConsole: Cannot open /dev/tty0 (No such device)


Yet /dev/tty0 does exist ! It is mapped to the local serial port and 
works fine. I have a bash shell running on it !

I did remember to edit my startx script so that xinit is being called as 
follows :
xinit /etc/X11/xinit/xinitrc -- :192.168.1.3:0 -auth 
/root/.Xauthority

How can I get X to start without needing a local console ?
I would like all I/O to be directed to my Windows PC and not to local 
hardware.


Any help would be appreciated.

Thanks

Ian


___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie

___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie



___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie



Re: [Newbie]Cursor problem, please help...

2002-11-22 Thread NicolH
You might have to specify the mouse protocol and the device file (i.e. /dev/mouse)

Nicolás  


On Wed, 20 Nov 2002 07:06:14 -0800
Vern W Heesch [EMAIL PROTECTED] wrote:

 You never said what mouse, but try Protocol Auto in the mouse section instead of 
Protocol Microsoft
 
 Vern
 
 On Wed, 20 Nov 2002 03:05:08 -0500 (EST)
 Ken Arromdee [EMAIL PROTECTED] wrote:
 
  Since my previous version of this message seems to have been wiped, here
  goes again...
  
  I'm having a problem, which I've had for several 4. versions of X, where when
  I start up X, the cursor briefly appears in the center of the screen and
  then moves to an odd position.
  
  Details:
  -- This is a new Mandrake Linux 9.0 installation.
  -- I am normally starting X using startx.
  -- The bad cursor position is the same every time.  It's at about (650,150),
  in the upper right corner, on an 800x600 screen.  If I use a 1024x768 screen
  instead, I still get a bad cursor position, but not in the same location as
  the 800x600 one.
  -- It appears to be happening in X, not in my window manager (fvwm2) or
  anywhere else.  If I add a sleep 15 to my .xinitrc, the cursor moves to the
  wrong position before the sleep.  If I start X using just X, I get a blank
  screen, no xinitrc, no window manager (the xinitrc runs the window manager),
  and the cursor in the same bad position.
  -- It isn't X server specific.  If I change my X server to Vesa, it still
  happens.  (I am using a Matrox G400.)
  
  Here's my XF86Config-4 (a stripped down test version, that still shows the
  problem).
  
  Section Files
  
  RgbPath /usr/X11R6/lib/X11/rgb
  FontPath   unix/:-1
  
  EndSection
  
  Section ServerFlags
  
  AllowMouseOpenFail
  
  EndSection
  
  # **
  # Input devices
  # **
  
  # **
  # Keyboard section
  # **
  
  Section InputDevice
  
  Identifier Keyboard1
  Driver  Keyboard
  Option AutoRepeat  250 30
  
  Option XkbRules xfree86
  Option XkbModel pc105
  Option XkbLayout us
  
  EndSection
  
  # **
  # Pointer section
  # **
  
  Section InputDevice
  
  Identifier  Mouse1
  Driver  mouse
  Option ProtocolMicrosoft
  Option Device  /dev/ttyS0
  
  EndSection
  
  
  # **
  # Monitor section
  # **
  
  # Any number of monitor sections may be present
  
  Section Monitor
  Identifier Generic|High Frequency SVGA, 1024x768 at 70 Hz
  VendorName Unknown
  ModelName  Unknown
  
  HorizSync  31.5-65.0
  
  VertRefresh 50-90
  EndSection
  
  
  # **
  # Graphics device section
  # **
  
  Section Device
  Identifier Generic Vesa
  Driver vesa
  EndSection
  
  # **
  # Screen sections
  # **
  
  # Matrox cards will require depth of 24 and bpp of 32.
  Section Screen
  Identifier screen1
  Device  Generic Vesa
  Monitor Generic|High Frequency SVGA, 1024x768 at 70 Hz
  DefaultDepth 8
  DefaultFbBpp 8
  Subsection Display
  Depth   8
  Modes   800x600 640x480 512x384 400x288 400x256 384x256 
384x240 384x224 360x288 320x240 240x256 224x256
  ViewPort0 0
  EndSubsection
  EndSection
  
  Section ServerLayout
  Identifier layout1
  Screen screen1
  
  InputDevice Mouse1 CorePointer
  
  InputDevice Keyboard1 CoreKeyboard
  EndSection
  ___
  Newbie mailing list
  [EMAIL PROTECTED]
  *** To unsubscribe , or change message options, see:
  http://XFree86.Org/mailman/listinfo/newbie
  
 ___
 Newbie mailing list
 [EMAIL PROTECTED]
 *** To unsubscribe , or change message options, see:
 http://XFree86.Org/mailman/listinfo/newbie
___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie



Re: [Newbie]Help: Installation of Video / Sound / Modem Drivers -RH Ver 8.0

2002-11-22 Thread Oisin C. Feeley
On Fri, 22 Nov 2002, N Sriram wrote:

snip
 Yesterday, I had successfully installed RH Ver 8.0 in my machine.
 
 My Machine Configuration is as follows:
 
 P4 1.7
 Intel D845GLLY Mother Board
 with integrated Sound and Video
 40 GB HDD
 Samtron 56v 15 Monitor
 Logitec Optical Mouse...
 
 I have the following problem,
 
 1. X Configurator auto deducted my on-board Video Card by installed
 the i810/815 Chipset Video Drivers I think... due to which, the X when
 started distorted image appears on the screen.., but I am able to
 login, the resolution is such that the fonts are too big and
 everything id out of focus in the monitor.
 
If you were using Red Hat 8.0 then you CAN'T have been using Xconfigurator 
because it doesn't exist in the distribution.  The appropriate tool is 
redhat-config-xfree86.  You need to read the release-notes and the 
manuals included in your distribution. 

snip
All the rest of your questions are inappropriate for this mailing list 
which deals with XFree86 configuration problems also.  As you are 
concerned with Red Hat 8.0 you may wish to subscribe to the Red Hat 
mailing list for this distribution here:
https://listman.redhat.com/mailman/listinfo/psyche-list
If you do decide to subscribe, make sure that you read the information 
about _unsubscribing_ and save your password, because quite a few people 
don't seem to figure this out.

HTH,
Oisin Feeley

___
Newbie mailing list
[EMAIL PROTECTED]
*** To unsubscribe , or change message options, see:
http://XFree86.Org/mailman/listinfo/newbie