>Simple Trick for Console Login Fedora 15

>1. add “3” (without quote) at the end of kernel boot line options.
2. remove rhgb

and also… after you login on console… you may need startx manually… defaultly it will run your gnome, if not installed… you can make your own desktop environment for X…
create a file called
.Xclients
and the fill it with

“#! /bin/bash

# Created by Red Hat Desktop Switcher

if [ -e “$HOME/.Xclients-$HOSTNAME$DISPLAY” ]; then
    exec $HOME/.Xclients-$HOSTNAME$DISPLAY
else
    exec $HOME/.Xclients-default
fi

without quotes…
an make another too with
.Xclients-default and fiil it with
” #!/bin/bash
# (c) 2001 Red Hat, Inc.

WM=”openbox-session”
WMPATH=”/usr/bin /usr/X11R6/bin /usr/local/bin”

for p in $WMPATH ; do
   [ -x $p/$WM ] && exec $p/$WM
done

exit 1
” (without quotes)
you can change the WM= sction with anoter, just like.. startgnome, startxfce4, startkde, openbox-session, fluxbox…

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *