LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   xdm.. (https://www.linuxquestions.org/questions/slackware-14/xdm-202480/)

miguetoo 07-08-2004 02:50 AM

xdm..
 
is there a way of switching between the loader of desktop managers.. i issued the command "init 4" and it makes a graphical boot.. but whenever i boot, it only boots gnome (gdm).. i'd like to switch from gdm to xdm.. answers..?

c31c 07-08-2004 03:08 AM

i don't know exactly which file it is, but in some /etc/rc.d/rc.?
there are the options for runlevel 4, maybe rc.M or alike?
there you just have to comment the lines with gdm/kdm out (use #)

BEI 07-08-2004 03:15 AM

edit /etc/rc.d/rc.4

and comment out all the lines except xdm:


# Try to use GNOME's gdm session manager:
#if [ -x /usr/bin/gdm ]; then
# exec /usr/bin/gdm -nodaemon
#fi

# Not there? OK, try to use KDE's kdm session manager:
#if [ -x /opt/kde/bin/kdm ]; then
# exec /opt/kde/bin/kdm -nodaemon
#fi

# If all you have is XDM, I guess it will have to do:
if [ -x /usr/X11R6/bin/xdm ]; then
exec /usr/X11R6/bin/xdm -nodaemon
fi

--BEI

miguetoo 07-08-2004 03:19 AM

did that.. done.. works like apple pie..


All times are GMT -5. The time now is 08:20 AM.