Jump to content

X problem on MDK 10.1 box


Recommended Posts

I have another Linux box for experimenting/playing etc with MDK 10.1 installed. The problem is that X won't start.

 

I always get this error:

 

[root@localhost alex]# startx

execve failed for /etc/X11/X (errno 13)
giving up.
xinit:  Connection refused (errno 111):  unable to connect to X server
xinit:  No such process (errno 3):  unexpected signal 15.

giving up.
xinit:  Connection refused (errno 111):  unable to connect to X server
xinit:  No such process (errno 3):  Server error.
[root@localhost alex]#

 

Here is the xorg.conf file:

 

# File generated by XFdrake.

# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************

Section "Files"
   # Multiple FontPath entries are allowed (they are concatenated together)
   # By default, Mandrake 6.0 and later now use a font server independent of
   # the X server to render fonts.
   FontPath "unix/:-1"
EndSection

Section "ServerFlags"
   #DontZap # disable <Crtl><Alt><BS> (server abort)
   AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
   #DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
   Load "dbe" # Double-Buffering Extension
   Load "v4l" # Video for Linux
   Load "extmod"
   Load "type1"
   Load "freetype"
EndSection

Section "InputDevice"
   Identifier "Keyboard1"
   Driver "kbd"
   Option "XkbModel" "pc105"
   Option "XkbLayout" "en_US"
   Option "XkbOptions" ""
EndSection

Section "InputDevice"
   Identifier "Mouse1"
   Driver "mouse"
   Option "Protocol" "Microsoft"
   Option "Device" "/dev/mouse"
   Option "Emulate3Buttons"
   Option "Emulate3Timeout" "50"
EndSection

Section "Monitor"
   Identifier "monitor1"
   VendorName "Plug'n Play"
   ModelName "Philips 107B(17inch/CM6800)"
   HorizSync 30.0-69.0
   VertRefresh 50.0-130.0
   
   # Sony Vaio C1(X,XS,VE,VN)?
   # 1024x480 @ 85.6 Hz, 48 kHz hsync
   ModeLine "1024x480"    65.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync
   
   # TV fullscreen mode or DVD fullscreen output.
   # 768x576 @ 79 Hz, 50 kHz hsync
   ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
   
   # 768x576 @ 100 Hz, 61.6 kHz hsync
   ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection

Section "ServerLayout"
   Identifier "layout1"
   InputDevice "Keyboard1" "CoreKeyboard"
   InputDevice "Mouse1" "CorePointer"
EndSection

 

The mouse and monitor are not attached to the box since I use ssh and webmin to do things.

 

The xorg log file from /var/log is missing. I don't know why.

 

[root@localhost X11]# updatedb
[root@localhost X11]# locate Xorg.1.log
[root@localhost X11]# locate Xorg.0.log
[root@localhost X11]#

 

The video card model is SiS 6326.

Link to comment
Share on other sites

Why would I want to do an init 3 since it doesn't boot into the graphical interface ?

 

Anyway here it goes:

 

[root@localhost alex]# init 3
[root@localhost alex]# startx

execve failed for /etc/X11/X (errno 13)
giving up.
xinit:  Connection refused (errno 111):  unable to connect to X server
xinit:  No such process (errno 3):  Server error.
[root@localhost alex]#

Link to comment
Share on other sites

...also

 

The video card model is SiS 6326.

 

There is no Device section in your config file. How should your card be identified?

I'm not sure and maybe things have changed now with Xorg, but a Device section was mandatory in the config file.

 

execve failed for /etc/X11/X (errno 13)

 

what about 'ls -l /etc/X11/X', it is correctly pointing to '/usr/X11R6/bin/Xorg'?

Edited by aru
Link to comment
Share on other sites

I knew something was missing, but I don't know what to write in the device section If it were an nvidia card it would have been easier. Should I run xorgconfig or whatever it's called ?

 

I'm not home right now, but when I get there I'll try it.

Edited by a13x
Link to comment
Share on other sites

We are getting closer. I've just checked if the X@ link is correct and I found out that it wasn't pointing in the reight place. I fixed this and now I get these errors:

 

(==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 16 02:12:33 2004
(==) Using config file: "/etc/X11/xorg.conf"
Data incomplete in file /etc/X11/xorg.conf
       At least one Device section is required.
(EE) Problem parsing the config file
(EE) Error parsing the config file

Fatal server error:
no screens found

Please consult the The X.Org Foundation support
        at http://wiki.X.Org
for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0.0"
     after 0 requests (0 known processed) with 0 events remaining.
[root@fileserver X11]#

 

I need that device section, it seems. But what do I write in it ?

Link to comment
Share on other sites

Why would I want to do an init 3 since it doesn't boot into the graphical interface ?

 

Anyway here it goes:

 

[root@localhost alex]# init 3
[root@localhost alex]# startx

execve failed for /etc/X11/X (errno 13)
giving up.
xinit:  Connection refused (errno 111):  unable to connect to X server
xinit:  No such process (errno 3):  Server error.
[root@localhost alex]#

#

Because you are still at init 5 even without graphbical interface so long as your inittab is set to init 5.

 

init 3 knocks you down reliably, stopping the dm which was probably running but not working!

 

startx : then gives errrors to stdout not /var/log or wherever the broken link was pointing... and ... get to see a bit more :D

 

OK, I'd recommend you just use vesa for now.

Sis is tricky because its closed source and the openbsource driver is basically guess work.....

 

so where you would normally put nv or nvidia put vesa :D

once you can get into X... we can work on the SIS driver ....

 

you can also just run (as root))

XFree86 --configure (and follow instructions)

and this should give a basic functioning XF86Config ....

 

 

once you have one and proper internet access/ cut and paste etc,. its easier to help ya :D

Link to comment
Share on other sites

I need that device section, it seems. But what do I write in it ?

man xorg.conf <--- tells you what you need to put in your xorg.conf file

man sis <--- shows you what options admit your graphic card

 

I can't post you an example of a Sis card because I don't own any, but here is my "Device" section --using nvidia--:

~$ sed -n '/Section "Device"/,/EndSection/p' /etc/X11/xorg.conf
Section "Device"
   Identifier "device1"
   VendorName "NVidia"
   BoardName "NVIDIA GeForce4 (generic)"
   Driver "nvidia" # closed source

   #Driver "nv"   # open source
   Option "DPMS"
EndSection
~$

 

HTH

Edited by aru
Link to comment
Share on other sites

man sis <--- shows you what options admit your graphic card

Which reminds me lsmod has a switch that gives the options too :D

 

If you just change nvidia for vesa... then you STILL need to add a line for the layout saying monitor1 and device1.

 

I'd honestly autogenerate a file then edit that....

the X.org is still symlinked to XFree86 I think so don't worry about that fact the command i used was Xfree86 :D

Link to comment
Share on other sites

That's exactly what I've just done.

I ran xorgconfig and generated a new xorg.conf file but now nothing happens when I give the startx cmd. I get no error but it just reaches a point and stays like that.

 

 

[root@box dev]# startx


This is a pre-release version of the The X.Org Foundation X11.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the The X.Org Foundation "monolithic tree" CVS
repository hosted at http://www.freedesktop.org/Software/xorg/
X Window System Version 6.8.1.99
Release Date: 2 October 2004 + cvs
X Protocol Version 11, Revision 0, Release 6.8.1.99
Build Operating System: Linux 2.6.7-2.tmb.6mdk i686 [ELF]
Current Operating System: Linux fileserver 2.6.3-20mdksecure #1 SMP Mon Nov 8 13:50:54 CET 2004 i686
Build Date: 14 October 2004
       Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Thu Dec 16 09:23:27 2004
(==) Using config file: "/etc/X11/xorg.conf"
Using vt 7

***I waited for 2-3 mins and then I pressed Ctrl+C here***

waiting for X server to shut down [root@fileserver dev]#

xinit:  unexpected signal 15.

[root@box dev]#

 

I've done all this using ssh.

 

Here is the new xorg.conf

 

# File generated by xorgconfig.

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

# **********************************************************************
# Refer to the xorg.conf(5x) man page for details about the format of
# this file.
# **********************************************************************

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

# This loads the DBE extension module.

   Load        "dbe"   # Double buffer extension

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

# This loads the font modules
   Load        "type1"
   Load        "speedo"
   Load        "freetype"
#    Load        "xtt"

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

EndSection

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

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

   RgbPath     "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
#

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

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

#    ModulePath "/usr/X11R6/lib/modules"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

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

#    Option "NoTrapSignals"

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

#    Option "DontVTSwitch"

# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

#    Option "DontZap"

# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
# sequences.  This allows clients to receive these key events.

#    Option "Dont Zoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

#    Option "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

   Option "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

   Option "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

   Option "AllowNonLocalModInDev"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

   Identifier  "Keyboard1"
   Driver      "kbd"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

   Option "AutoRepeat" "500 30"

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

#    Option "LeftAlt"     "Meta"
#    Option "RightAlt"    "ModeShift"

# 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 "XkbVariant"  "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#    Option "XkbOptions"  "ctrl:swapcaps"

# These are the default XKB settings for Xorg
#    Option "XkbRules"    "xorg"
#    Option "XkbModel"    "pc101"
#    Option "XkbLayout"   "us"
#    Option "XkbVariant"  ""
#    Option "XkbOptions"  ""

#    Option "XkbDisable"

   Option "XkbRules"   "xorg"
   Option "XkbModel"   "pc101"
   Option "XkbLayout"  "us"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

   Identifier  "Mouse1"
   Driver      "mouse"
   Option "Protocol"    "Microsoft"
   Option "Device"      "/dev/mouse"

# Mouse-speed setting for PS/2 mouse.

#    Option "Resolution"        "256"

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

#    Option "Protocol"  "Xqueue"

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

#    Option "BaudRate"  "9600"
#    Option "SampleRate"        "150"

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

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

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

#    Option "ChordMiddle"

EndSection


# **********************************************************************
# Other input device sections
# this is optional and is required only if you
# are using extended input devices.  This is for example only.  Refer
# to the xorg.conf man page for a description of the options.
# **********************************************************************
#
# Section "InputDevice"
#    Identifier  "Mouse2"
#    Driver      "mouse"
#    Option      "Protocol"      "MouseMan"
#    Option      "Device"        "/dev/mouse2"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball"
#    Driver     "magellan"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball2"
#    Driver     "spaceorb"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen0"
#    Driver     "microtouch"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "1412"
#    Option     "MaxX"          "15184"
#    Option     "MinY"          "15372"
#    Option     "MaxY"          "1230"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen1"
#    Driver     "elo2300"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "231"
#    Option     "MaxX"          "3868"
#    Option     "MinY"          "3858"
#    Option     "MaxY"          "272"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonThreshold"       "17"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

   Identifier  "monitor1"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

   HorizSync   30.0-69.0

#    HorizSync  30-64         # multisync
#    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

   VertRefresh 50.0-130.0

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
   Identifier  "Standard VGA"
   VendorName  "Unknown"
   BoardName   "Unknown"

# The chipset line is optional in most cases.  It can be used to override
# the driver's chipset detection, and should not normally be specified.

#    Chipset    "generic"

# The Driver line must be present.  When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module.  Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.

   Driver     "vesa"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for.  When this line isn't present, a device
# section can only match up with the primary video device.  For PCI
# devices a line like the following could be used.  This line should not
# normally be included unless there is more than one video device
# intalled.

#    BusID      "PCI:0:10:0"

#    VideoRam   256

#    Clocks     25.2 28.3

EndSection

# Device configured by xorgconfig:

Section "Device"
   Identifier  "device1"
   Driver      "vesa"
   #VideoRam    8192
   # Insert Clocks lines here if appropriate
EndSection


# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
   Identifier  "Screen 1"
   Device      "device1"
   Monitor     "monitor1"
   DefaultDepth 24

   Subsection "Display"
       Depth       8
       Modes       "1280x1024" "1024x768" "800x600" "640x480"
       ViewPort    0 0
   EndSubsection
   Subsection "Display"
       Depth       16
       Modes       "1280x1024" "1024x768" "800x600" "640x480"
       ViewPort    0 0
   EndSubsection
   Subsection "Display"
       Depth       24
       Modes       "1280x1024" "1024x768" "800x600" "640x480"
       ViewPort    0 0
   EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present.  Each describes
# the way multiple screens are organised.  A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option.  In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

Section "ServerLayout"

# The Identifier line must be present
   Identifier  "Simple Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens.  The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen.  In this example, screen 2 is located to the
# right of screen 1.

   Screen "Screen 1"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used.  Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

   InputDevice "Mouse1" "CorePointer"
   InputDevice "Keyboard1" "CoreKeyboard"

EndSection

# Section "DRI"
#    Mode 0666
# EndSection

Link to comment
Share on other sites

I replaced the xorg.conf again with my own xorg.conf but modified. The same thing happens when I run startx from the ssh connection. Anyway I followed these instructions from theYinYeti

 

yves@client$ X :1 &

 

... some output ...

 

... then I checked that X was indeed running on CtrlAltF8 ...

 

yves@client$ export DISPLAY=:1

 

yves@client$ ssh server

 

password for 'yves' on 'server': ... my password ...

 

connected.

 

yves@server$ echo $DISPLAY

 

localhost:10.0

 

yves@server$ icewm

 

... some output ...

 

I get to the point where I type icewm and this is what I get:

 

[root@Alex root]# export DISPLAY=:1
[root@Alex root]# ssh alex@192.168.1.1
alex@192.168.1.1's password:
Warning: No xauth data; using fake authentication data for X11 forwarding.
Last login: Sat Dec 18 02:41:08 2004 from 192.168.1.17
[alex@server alex]$ su
Password:
[root@server alex]# echo $DISPLAY
localhost:11.0
[root@server alex]# icewm
IceWM: using /root/.icewm for private configuration files
Xlib: connection to "localhost:11.0" refused by server
Xlib: Invalid MIT-MAGIC-COOKIE-1 key
IceWM: Can't open display: localhost:11.0. X must be running and $DISPLAY set.
[root@fileserver alex]# icewm
IceWM: using /root/.icewm for private configuration files
Xlib: connection to "localhost:11.0" refused by server
Xlib: Invalid MIT-MAGIC-COOKIE-1 key
IceWM: Can't open display: localhost:11.0. X must be running and $DISPLAY set.
[root@server alex]#

 

In the meanwhile this is the output of the console where I gave the " X :1 &" command.

 

[root@Alex X11]# X :1 &
[1] 14983
[root@Alex X11]#
This is a pre-release version of the The X.Org Foundation X11.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the The X.Org Foundation "monolithic tree" CVS
repository hosted at http://www.freedesktop.org/Software/xorg/
X Window System Version 6.8.1.99
Release Date: 2 October 2004 + cvs
X Protocol Version 11, Revision 0, Release 6.8.1.99
Build Operating System: Linux 2.6.8.1-12mdk i686 [ELF]
Current Operating System: Linux Alex 2.6.8.1-12mdk #1 Fri Oct 1 12:53:41 CEST 2004 i686
Build Date: 05 November 2004
       Before reporting problems, check http://wiki.X.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/Xorg.1.log", Time: Fri Dec 17 14:48:42 2004
(==) Using config file: "/etc/X11/xorg.conf"
Using vt 8
(EE) Failed to load module "/usr/X11R6/lib/modules/extensions/libglx.so" (once-only module, 136033427)
(EE) NVIDIA(0): Failed to load GLX
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
AUDIT: Fri Dec 17 14:50:04 2004: 14983 X: client 1 rejected from local host
 Auth name: MIT-MAGIC-COOKIE-1 ID: -1
AUDIT: Fri Dec 17 14:50:29 2004: 14983 X: client 1 rejected from local host
 Auth name: MIT-MAGIC-COOKIE-1 ID: -1
 

 

Sorry for the long console inputs but I think they are relevant to the problem.

Link to comment
Share on other sites

That file looks like a mess to me. Try this. Go back to your original xorg.conf file; it's a lot closer to what an actual working one should look like on mandrake but it's missing the Device section. Then run as root:

 

# XFdrake

 

That's mandrake's graphical X config utility. When launced from a terminal, you get the ncurses version of it which you can navigate using the keyboard(no mouse support). Select the "Graphics Card" entry. Sis 6326 is listed in the data base; select that one and then test the configuration by selecting the "Test" button. I assume you don't want X to start at boot, If that's the case, go to the "Options" button and select "No" when asked if you want X to start at boot.

Link to comment
Share on other sites

or...

You can't have 1280x1024 with a vesa driver I don't thgink it must be 800x600...

 

the problem seems to be that you are trying to start a new X on the client machine.

 

 

IceWM: Can't open display: localhost:11.0. X must be running and $DISPLAY set.

 

but ahem... its running.. and you haven't given permission

 

I have a feeling its actually working....

 

try going to run level 3 on the machine your ssh'ing from

then try a startx .. just to see it works... and CTRL+ALT+BKSPC to kill it...

then to the ssh...from the cli

Once you connect you need to

export DISPLAY=<ipyoucamefrom>:0.0

then try startx

:D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...