On 7/13/07, Sabyasachi Ghosh <[EMAIL PROTECTED]> wrote:
you might try running :

XSESSION="gnome" startx
[...]

That did the trick :)


[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ cat /etc/conf.d/xdm
# Tell X to always start on VT7. Otherwise it autodetects the first available
# VT, which means it has to wait until all gettys are started so it doesn't suck
# up a VT that should have had a login prompt (very slow).
# If XSTATICVT is on, the login manager will start as soon as possible during
# the boot process. If you want X to dynamically start on the first unoccupied
# VT after all gettys have started and you are using xdm, also remove the "vt7"
# from /etc/X11/xdm/Xservers.
XSTATICVT="yes"

# What display manager do you use ?  [ xdm | gdm | kdm | entrance ]
# NOTE: If this is set in /etc/rc.conf, that setting will override this one.
DISPLAYMANAGER="gdm"
[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ cat /etc/rc.conf
# /etc/rc.conf: Global startup script configuration settings

# UNICODE specifies whether you want to have UNICODE support in the console.
# If you set to yes, please make sure to set a UNICODE aware CONSOLEFONT and
# KEYMAP in the /etc/conf.d/consolefont and /etc/conf.d/keymaps config files.

UNICODE="yes"

# Set EDITOR to your preferred editor.
# You may use something other than what is listed here.

EDITOR="/bin/nano"
#EDITOR="/usr/bin/vim"
#EDITOR="/usr/bin/emacs"

# DISPLAYMANAGER has moved to /etc/conf.d/xdm

# XSESSION is a new variable to control what window manager to start
# default with X if run with xdm, startx or xinit.  The default behavior
# is to look in /etc/X11/Sessions/ and run the script in matching the
# value that XSESSION is set to.  The support scripts are smart enough to
# look in all bin directories if it cant find a match in /etc/X11/Sessions/,
# so setting it to "enlightenment" can also work.  This is basically used
# as a way for the system admin to configure a default system wide WM,
# allthough it will work if the user export XSESSION in his .bash_profile, etc.
#
# NOTE:  1) this behaviour is overridden when a ~/.xinitrc exists, and startx
#           is called.
#        2) even if ~/.xsession exists, if XSESSION can be resolved, it will
#           be executed rather than ~/.xsession, else KDM breaks ...
#
# Defaults depending on what you install currently include:
#
# Gnome - will start gnome-session
# kde-<version> - will start startkde (look in /etc/X11/Sessions/)
# Xsession - will start a terminal and a few other nice apps

#XSESSION="Gnome"
[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ cat /etc/X11/xinit/xinitrc
#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
xinitdir=/etc/X11
sysresources=$xinitdir/Xresources
sysmodmap=$xinitdir/Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
   xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
   xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
   xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
   xmodmap $usermodmap
fi

# First try ~/.xinitrc
if [ -f "$HOME/.xinitrc" ]; then
       XINITRC="$HOME/.xinitrc"
       if [ -x $XINITRC ]; then
               # if the x bit is set on .xinitrc
               # it means the xinitrc is not a
               # shell script but something else
               exec $XINITRC
       else
               exec /bin/sh "$HOME/.xinitrc"
       fi
# If not present, try the system default
elif [ -n "`/etc/X11/chooser.sh`" ]; then
       exec "`/etc/X11/chooser.sh`"
# Failsafe
else
       # start some nice programs
       twm &
       xclock -geometry 50x50-1+1 &
       xterm -geometry 80x50+494+51 &
       xterm -geometry 80x20+494-0 &
       exec xterm -geometry 80x66+0+0 -name login
fi
[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ date
Fri Jul 13 06:26:34 UTC 2007
[EMAIL PROTECTED] ~ $



Going to uncomment some stuff, looks like not a big deal. Yes, appears
to be cause by emerging some packages.  Not everything emerged.


-Thufir
--
[EMAIL PROTECTED] mailing list

Reply via email to