[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Problema en startx



Instale el slakware y me da un error estraño corre todo y no se por que, no el entorno grafico si esta instalado perfecto veran lo instale en 6 maquinas y en todas corre bien menos en esta, aki les mando el error que me esta dando cuando pulso startx
favor escribir sus sugerencias o soluciones, de antemano gracias

root@darkstar: startx
(**) XKB: keycodes: "xfree86"
(**) XKB: types: "default"
(**) XKB: compat: "default"
(**) XKB: symbols: "us(pc101)"
(**) XKB: geometry: "pc"
(**) XKB: rules: "xfree86"
(**) XKB: model: "pc104"
(**) XKB: layout: "us"
(**) Mouse: type: PS/2, device: /dev/mouse, resolution: 100
(**) Mouse: buttons: 3, 3 button emulation (timeout: 50ms)
(**) FBDev: Graphics device ID: "Primary Card"
(**) FBDev: Monitor ID: "Primary Monitor"
(**) FontPath set to
"/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/100dpi:unscaled,/usr/X11R6/lib/X11/fonts/Type1,/usr/X11R6/lib/X11/fonts/Speedo"

Fatal server error:
open_framebuffer: failed to open /dev/fb0 (No such device)


When reporting a problem related to a server crash, please send
the full server output, not just the last messages

X connection to :0.0 broken (explicit kill or server shutdown).



este es el archivo   /usr/X11R6/bin/startx


2000-01-08 13:09             /usr/X11R6/bin/startx             Page    1


#!/bin/sh

# $XConsortium: startx.cpp,v 1.4 91/08/22 11:41:29 rws Exp $
# $XFree86: xc/programs/xinit/startx.cpp,v 3.0.8.4 1998/12/27 13:10:18 dawes Exp $
#
# This is just a sample implementation of a slightly less primitive
# interface than xinit.  It looks for user .xinitrc and .xserverrc
# files, then system xinitrc and xserverrc files, else lets xinit choose
# its default.  The system xinitrc should probably do things like check
# for .Xresources files and merge them in, startup up a window manager,
# and pop a clock and serveral xterms.
#
# Site administrators are STRONGLY urged to write nicer versions.
#

bindir=/usr/X11R6/bin


userclientrc=$HOME/.xinitrc
userserverrc=$HOME/.xserverrc
sysclientrc=/usr/X11R6/lib/X11/xinit/xinitrc
sysserverrc=/usr/X11R6/lib/X11/xinit/xserverrc
clientargs=""
serverargs=""






if [ -f $userclientrc ]; then
   clientargs=$userclientrc
else if [ -f $sysclientrc ]; then
   clientargs=$sysclientrc
fi
fi




if [ -f $userserverrc ]; then
   serverargs=$userserverrc
else if [ -f $sysserverrc ]; then
   serverargs=$sysserverrc
fi
fi

whoseargs="client"
while [ "x$1" != "x" ]; do
   case "$1" in
	/''*|\.*)	if [ "$whoseargs" = "client" ]; then
		    if [ "x$clientargs" = x ]; then
			clientargs="$1"
		    else
			clientargs="$clientargs $1"
		    fi







2000-01-08 13:09             /usr/X11R6/bin/startx             Page    2


		else
		    if [ "x$serverargs" = x ]; then
			serverargs="$1"
		    else
			serverargs="$serverargs $1"
		    fi
		fi ;;
	--)	whoseargs="server" ;;
	*)	if [ "$whoseargs" = "client" ]; then
		    clientargs="$clientargs $1"
		else
		    serverargs="$serverargs $1"
		fi ;;
   esac
   shift
done

xinit $clientargs -- $serverargs











































56789

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.



Reply to: