Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
05-05-2012, 09:56 PM
|
#1
|
|
Member
Registered: Oct 2009
Location: Perth, Australia
Distribution: Mint 13 cinnamon
Posts: 43
Rep:
|
Lightdm - cannot figure out how to change default xsession - Debian Wheezy
Hi
I have installed Lightdm as my login manager for debian wheezy. I have three Desktop Environments/Window Managers installed: LXDE, XFCE4 and awesome. As soon as my machine boots, I am presented with the login screen, where I enter my username/password. There is also a drop down box where I can choose which DE/WM to use.
The problem is that the drop down box always defaults to "Default Xsession", which appears to be LXDE. I use XFCE4 most, and therefore I wish to set "Default XSession" to be XFCE4 so that I don't have to change the option with the drop down menu to manually log into XFCE4.
I have tried editing /etc/lightdm/lightdm.conf and changing user-session under [SeatDefaults] to a number of things, such as startxfce4, xfce4-session, xfce-session, xfce4, etc... None of those worked.
How do I change the Default Xsession so that it logs into XFCE4 by default, not LXDE?
Thanks in advance,
James
Last edited by ratman1; 05-05-2012 at 11:47 PM.
|
|
|
|
05-05-2012, 10:16 PM
|
#2
|
|
Senior Member
Registered: Feb 2011
Location: Australia
Distribution: Debian Sid/Experimental
Posts: 1,820
|
What DE were you sing when you installed it? I think if you installed it when you were in LXDE that would become the default. If this is the case completely remove it and then reinstall it when you are in XFCE.
|
|
|
|
05-05-2012, 10:23 PM
|
#3
|
|
Member
Registered: Oct 2009
Location: Perth, Australia
Distribution: Mint 13 cinnamon
Posts: 43
Original Poster
Rep:
|
Yeah, I was in LXDE when I installed LightDM.
I will try that and post how it goes
EDIT: Nope, that didn't work. I logged into XFCE and ran the following:
Code:
apt-get remove lightdm
apt-get install lightdm
However it still logs into lxdm by default
Last edited by ratman1; 05-05-2012 at 10:35 PM.
|
|
|
|
05-05-2012, 11:05 PM
|
#4
|
|
Senior Member
Registered: Feb 2011
Location: Australia
Distribution: Debian Sid/Experimental
Posts: 1,820
|
Quote:
Originally Posted by ratman1
Yeah, I was in LXDE when I installed LightDM.
I will try that and post how it goes
EDIT: Nope, that didn't work. I logged into XFCE and ran the following:
Code:
apt-get remove lightdm
apt-get install lightdm
However it still logs into lxdm by default
|
Try this instead
Code:
apt-get purge lightdm
apt-get install lightdm
Remove does not remove configurations files, purge does.
|
|
|
|
05-05-2012, 11:20 PM
|
#5
|
|
Member
Registered: Oct 2009
Location: Perth, Australia
Distribution: Mint 13 cinnamon
Posts: 43
Original Poster
Rep:
|
Unfortunately that did not seem to work either...
I logged into XFCE and ran those two commands. After the second command, I chose lightdm instead of xdm to be my login manager. However, upon a reboot, "Default XSession" always logged me in with LXDE.
I now only have XDM installed, and logging in through that also logs me in with LXDE.
|
|
|
|
05-05-2012, 11:29 PM
|
#6
|
|
Member
Registered: Oct 2009
Location: Perth, Australia
Distribution: Mint 13 cinnamon
Posts: 43
Original Poster
Rep:
|
I did a bit of googling, and found this command:
Code:
/usr/lib/x86_64-linux-gnu/lightdm/lightdm-set-defaults -s cinnamon
According to the site (a user on the linux mint forums) the above command "will set cinnamon to default in lightdm".
Do you think if I changed the last argument from cinnamon to something xfce related it may work?
If so, what should the final argument be? xfce4-session, xfce4, xfce, startxfce4, or what else?
|
|
|
|
05-05-2012, 11:46 PM
|
#7
|
|
Member
Registered: Oct 2009
Location: Perth, Australia
Distribution: Mint 13 cinnamon
Posts: 43
Original Poster
Rep:
|
Sorry for my third post in a row, but I found a solution (probably more of a workaround, but hey, that still counts as a solution!)
I went into /usr/share/xsessions and found a file called lightdm-xsession.desktop. I then edited lightdm-xsession.desktop, and found a command "exec".
Simply changing this "exec" from "default" to "startxfce4" meant that when I have "Default XSession" selected at the login screen, it starts xfce4 instead of "default".
Last edited by ratman1; 05-06-2012 at 12:09 AM.
|
|
|
|
05-06-2012, 12:23 AM
|
#8
|
|
Senior Member
Registered: Feb 2011
Location: Australia
Distribution: Debian Sid/Experimental
Posts: 1,820
|
Well done.
|
|
|
|
07-13-2012, 02:04 PM
|
#9
|
|
LQ Newbie
Registered: Jul 2012
Location: Europe
Distribution: Debian
Posts: 1
Rep: 
|
Quote:
Originally Posted by ratman1
I went into /usr/share/xsessions and found a file called lightdm-xsession.desktop. I then edited lightdm-xsession.desktop, and found a command "exec".
Simply changing this "exec" from "default" to "startxfce4"
|
I found another solution.
The Debian manual page [1] says each user can select a different default windows manager using the "exec ..." command in own home folder (in "~/.xsession" file).
And it works form me in Debian Wheezy.
[1] debian.org/doc/manuals/debian-reference/ch07.en.html#_customizing_the_x_session_classic_method
|
|
|
|
Yesterday, 05:00 AM
|
#10
|
|
LQ Newbie
Registered: May 2013
Location: cascadia, north america
Distribution: debian wheezy w/ openbox
Posts: 1
Rep: 
|
Found a reasonable way to accomplish this
I had a virtually identical challenge with wheezy stable, I switched from LXDE to a plain openbox WM and had to select it manually for each login. To change the default you need to change the symlink at /etc/alternatives/x-session-manager to point at the appropriate session starter (so I needed to point it at /usr/bin/openbox-session).
The easiest way to accomplish this (the way I actually did it) is to use update-alternatives:
# update-alternatives --config x-session-manager
you will get a list of options, select xcfe and you will be set.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:09 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|