hi ambelos,
as far as I can see you're running RH 9.
If you haven't changed the initial init level when you installed RH, you should be having an init:5 which loads up GDM per default.
How do you start up fluxbox? Are you able to select it as a Session when you are booted up with the graphical interface? Have you created a file in /etc/X11/gdm/Sessions/ ?
The reason I'm asking is this is how I'm doing it.
I'm running RH 9.0 - init level 5 which loads up GDM per default
I had to create a Session file
/etc/X11/gdm/Sessions/fluxbox in order to be able to select it via gdm
this is my fluxbox session file:
Code:
#!/bin/bash
amsn &
gkrellm &
xscreensaver -no-splash &
exec /usr/local/bin/fluxbox
the location of your fluxbox may vary depending on where you installed it to
so what happens is the following:
- When I start my system, GDM loads up and asks me what sessions I would like to run
- I choose fluxbox (which is also my default session)
- It loads the
/etc/X11/gdm/Sessions/fluxbox file which starts amsn, gkrellm, the xscreensaver -no-splash AND then fluxbox itself
In your case you could add
wmxmms & before it's supposed to load up fluxbox
hope this helps!