Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
GDM & KDM Assorted Problems
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 10, 2006 7:39 pm    Post subject: GDM & KDM Assorted Problems Reply with quote

OK, several problems in one.

1) KDM doesn't work ( /etc/init.d/xdm start appears to work, kdm appears in ps aux, but nothing happens. )
2) GDM starts with the maximum possible resolution (2048x1536 @60Hz); I use 1280x1024 for my desktop so when I log out I just see the top corner of the login screen.
3) The fancy screensaver background thing detailed HERE takes ages to appear.

If anyone can help me on any of these counts, I'd be very grateful!
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
papal_authority
Veteran
Veteran


Joined: 31 Mar 2004
Posts: 1823
Location: Canada

PostPosted: Fri Feb 10, 2006 9:06 pm    Post subject: Reply with quote

Did you edit the DISPLAYMANAGER value in /etc/rc.conf?
_________________
The free market gave me gonorrhea.
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 10, 2006 9:25 pm    Post subject: Reply with quote

Yes - that's how I switched from KDM to GDM when it started misbehaving. Do I need to do something else to prevent troubles? Because I've had the resolution problem for ages - I've only installed KDE quite recently.
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
sugar
Guru
Guru


Joined: 07 Aug 2004
Posts: 579
Location: Morrinsville, New Zealand

PostPosted: Fri Feb 10, 2006 9:59 pm    Post subject: Reply with quote

Quote:
2) GDM starts with the maximum possible resolution (2048x1536 @60Hz); I use 1280x1024 for my desktop so when I log out I just see the top corner of the login screen.


I think this is an xorg.conf problem if I'm not mistaken. You have to set your DEFAULT resolution lower.
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 10, 2006 10:40 pm    Post subject: Reply with quote

Ah, I suspected as much.

How do I set that?
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
sugar
Guru
Guru


Joined: 07 Aug 2004
Posts: 579
Location: Morrinsville, New Zealand

PostPosted: Fri Feb 10, 2006 11:13 pm    Post subject: Reply with quote

In /etc/X11/xorg.conf there is this section.

Quote:
Section "Screen"
Identifier "Screen 1"
Device "ATI Mach64 3D Rage Pro"
Monitor "My Monitor"
DefaultDepth 24

Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection


The display will be chosen from which ever depth you have. The first one is the default. For example, if I wanted "800x600" as the default for my 24 bit depth, I would change it to

Quote:
Subsection "Display"
Depth 24
Modes "800x600" "1024x768" "640x480"
ViewPort 0 0
EndSubsection
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 10, 2006 11:42 pm    Post subject: Reply with quote

OK, mostly good news. KDM seems to have started working again of its own accord, and it seems to be getting the idea - the screen is sized to 1280x1024, but KDM appears to be sized to 1600x1200 - the maximum res I stated in xorg.conf.

How do I let it know that I want 1280x1024?

BTW: The fancy screensaver thing is flawless and starts almost instantly in KDM. I recommend it to anyone.
BTW2: I'm going up to stay with my family for a few days tomorrow, so please don't be offended if you say something and I seem to be ignoring you! Cheers! :D
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
sugar
Guru
Guru


Joined: 07 Aug 2004
Posts: 579
Location: Morrinsville, New Zealand

PostPosted: Sun Feb 12, 2006 3:09 am    Post subject: Reply with quote

replace 1280x1024 at the front of the list on xorg.conf instead of 1600x1200.
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Thu Feb 16, 2006 8:29 pm    Post subject: Reply with quote

It's already there :(

Code:
Section "Screen"
        Identifier      "MainScreen"
        Device          "GeForce 6600 GT #1"
        Monitor         "LG F900P"
        DefaultDepth    24
        SubSection "Display"
                Viewport        0 0
                Depth           24
                Modes           "1280x1024" "1600x1200" "1024x768" "800x600"
        EndSubSection
EndSection

_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
sugar
Guru
Guru


Joined: 07 Aug 2004
Posts: 579
Location: Morrinsville, New Zealand

PostPosted: Fri Feb 17, 2006 8:55 am    Post subject: Reply with quote

what if you removed the other resolutions? does it give an error or something?
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 17, 2006 8:16 pm    Post subject: Reply with quote

If I remove them, it behaves itself - but then they aren't available later. I like 1280x1024 for most stuff, but 1600x1200 if I'm using The GIMP. If I don't include that resolution in the modeline, krandr doesn't list it and I can't change to it.
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
sugar
Guru
Guru


Joined: 07 Aug 2004
Posts: 579
Location: Morrinsville, New Zealand

PostPosted: Fri Feb 17, 2006 8:22 pm    Post subject: Reply with quote

Maybe its a bug in kdm...why not try gdm or something? I'm out of ideas sorry....
Back to top
View user's profile Send private message
Napalm Llama
Guru
Guru


Joined: 04 Jun 2005
Posts: 533
Location: Cardiff, UK

PostPosted: Fri Feb 17, 2006 8:42 pm    Post subject: Reply with quote

I think it's X - GDM is the same, and so is Fluxbox if I startx into that instead. I just don't know why...
_________________
Ryzen 5600x; Asus TUF Gaming B550-Plus; Geforce 1660 Super
Registered Linux User #381314
# killall humans
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum