Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Xorg woes
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Tom Lehr
n00b
n00b


Joined: 21 Mar 2005
Posts: 2

PostPosted: Mon Mar 21, 2005 4:05 pm    Post subject: Xorg woes Reply with quote

I just installed my gentoo system from stage 3. I am trying to install x windows but whenever I type Xorg, Xorg -configure or xstart the only result is some cryptic error messages.

The video card is an SiS, possibly an SiS300.

uname -a
Code:

Linux bird 2.4.28-gentoo-r8 #1 Fri Mar 18 00:48:05 Local time zone must be set--see zic manu i686 Intel(R) Pentium(R) 4 CPU 1.80GHz GenuineIntel GNU/Linux


I don't know why it's saying that the timezone is not set up. The link is there.

Xorg -configure
Code:


_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/turd:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.4.28-gentoo-r8 i686 [ELF]
Current Operating System: Linux turd 2.4.28-gentoo-r8 #1 Fri Mar 18 00:48:05 Local time zone must be set--see zic manu i686
Build Date: 20 March 2005
   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: Sun Mar 20 20:44:06 2005
Killed


Xorg.0.log
Code:


_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/turd:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.4.28-gentoo-r8 i686 [ELF]
Current Operating System: Linux turd 2.4.28-gentoo-r8 #1 Fri Mar 18 00:48:05 Local time zone must be set--see zic manu i686
Build Date: 20 March 2005
   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: Sun Mar 20 20:44:46 2005
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.2
   X.Org Video Driver: 0.7
   X.Org XInput driver : 0.4
   X.Org Server Extension : 0.2
   X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4


I had previously installed xorg and gotten the same results. I thought that it might have something to do with the fact that I installed enlightenment first (doh!) which for some reason does not depend on xorg. I unmerged both packages, did an emerge --cleandep, emerged xorg again and got the same problem.

The first time I installed xorg I tried running xorgconfig and it created the following xorg.conf file:

Code:


Section "Module"
    Load        "dbe"     # Double buffer extension

    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

    Load        "type1"

    Load        "freetype"


EndSection


Section "Files"

    RgbPath   "/usr/lib/X11/rgb"

    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/Type1/"

    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/local/"


EndSection

Section "ServerFlags"

EndSection

Section "InputDevice"

    Identifier   "Keyboard1"
    Driver   "kbd"

    Option "AutoRepeat" "500 30"

    Option "XkbModel"   "pc104"
    Option "XkbLayout"   "us"

EndSection

Section "InputDevice"

    Identifier   "Mouse1"
    Driver   "mouse"
    Option "Protocol"    "PS/2"
    Option "Device"      "/dev/mouse"

    Option "Emulate3Buttons"

EndSection

Section "Monitor"

    Identifier  "Studioworks 563A"

    HorizSync   31.5 - 35.1

    VertRefresh 50-70

EndSection

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

    Driver     "vga"

EndSection

Section "Device"
    Identifier  "SiS"
    Driver      "sis"
    #VideoRam    8192

    # Insert Clocks lines here if appropriate
EndSection

Section "Screen"
    Identifier  "Screen 1"
    Device      "SiS"
    Monitor     "Studioworks 563A"
    DefaultDepth 16

    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

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection


Because there was some IPv6 error at the start of the log some network details might be worth explaining. My ethernet card is an SiS900. The local router filters all traffic coming from unknown MAC addresses so on startup I run a custom script which brings down eth0, changes the hw address, and then brings eth0 back up. Networking works and is able to download the necessary files for emerge.

ifconfig
Code:


eth0      Link encap:Ethernet  HWaddr 00:E0:06:09:55:66
          inet addr:192.168.11.65  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:127 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:14525 (14.1 Kb)  TX bytes:476 (476.0 b)
          Interrupt:5 Base address:0x8800

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)


Thanks for your help!
Back to top
View user's profile Send private message
hawkz
n00b
n00b


Joined: 21 Sep 2003
Posts: 14
Location: UK

PostPosted: Thu Mar 31, 2005 4:09 pm    Post subject: Reply with quote

Quote:
whenever I type Xorg, Xorg -configure or xstart the only result is some cryptic error messages.

are those commands right?

I thought it was

X --configure
and startx ?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum