PDA

View Full Version : Debian xfce


NaF
December 28th, 2008, 07:52 PM
prolly a dumb question.
Installed the latest stable netinst-debian and chose just the basesystem. Arriving at the terminal i:

# su
# aptitude update
# aptitude install xfce4

It installed all and well. But how do I start it :oops:

exploder
December 28th, 2008, 10:26 PM
I might be wrong but I think you need to install either gdm or kdm so you have a display manager.

kerry_s
December 28th, 2008, 10:50 PM
make sure you install xorg to.

just type> startx

NaF
December 29th, 2008, 04:12 PM
make sure you install xorg to.

just type> startx


# X: Cannot stat etc/X11/X (No such file or directory, aborting
# xinit: Connection refused (errno 111): unable to connect to X server
# xinit: No such process (errono 3): Server error

It actually says "stat" and not start, which I think it means, but that's the output I get when I type in startx

kerry_s
December 29th, 2008, 05:59 PM
that's because you did not install xorg.

sudo apt-get install xorg

NaF
December 29th, 2008, 08:06 PM
Thank you very much :)
So to install xfce on a debian:

# su
# aptitude update
# aptitude install xfce
# aptitude install gdm
# aptitude install xorg
# startx


for future reference

kerry_s
December 30th, 2008, 01:23 AM
Thank you very much :)
So to install xfce on a debian:

# su
# aptitude update
# aptitude install xfce
# aptitude install gdm
# aptitude install xorg
# startx


for future reference

you can just put it in 1 line:

su
apt-get install xorg gdm xfce4
exit
startx


you'll want to exit root(su) before you startx