Announcement

Collapse
No announcement yet.

[SOLVED - Simple How To Attached] Screenshot of Login Screen? - XDMCP

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [SOLVED - Simple How To Attached] Screenshot of Login Screen? - XDMCP

    I've done a lot of searching on how to be able to do this with no luck. All links were how to do this with GDM and not KDM. I've created my own Login Screen, but would like to have a preview shot of it. How!!! Anyone? Is there not a tool out there that can take the XML configuration and display the Graphical result?

    EDIT: How To: http://kubuntuforums.net/forums/inde...5907#msg135907

    #2
    Re: Screenshot of Login Screen?

    One way to do preview shot of login screen:

    Alt + F2 :kdesudo kate /etc/kde3/kdm/kdmrc
    There is:
    Code:
    [Xdmcp]
    Enable=false
    =>
    Code:
    [Xdmcp]
    Enable=true
    Alt + F2 :kdesudo kate /etc/kde3/kdm/Xaccess
    There is:
    Code:
    #*					#any host can get a login window
    =>
    Code:
    *					#any host can get a login window

    Restart (or restart kdm)

    In the konsole:
    Code:
    :~$ Xephyr -query localhost -screen 800x600 :1
    Use KSnapshot...

    Note
    You can use different resolution or -fullscreen option


    Links:

    enabling xdmcp
    http://ubuntuforums.org/showthread.php?t=80044

    GUI Thursday: Xephyr - New nested X server
    http://dailypackage.fedorabook.com/i...-X-server.html


    Preview:
    Attached Files
    Before you edit, BACKUP !

    Why there are dead links ?
    1. Thread: Please explain how to access old kubuntu forum posts
    2. Thread: Lost Information

    Comment


      #3
      Re: Screenshot of Login Screen?

      Cool!!! Thanks!!!

      Comment


        #4
        Re: Screenshot of Login Screen?

        Hmmmm. OK. Did all that and all seems fine, but the resulting screen is the familiar X grey scren with the X cursor. Any ideas from that?

        Also enabling those entries seem to be keeping kicker from starting automatically. I can start it manually though.
        Sorry, that one was me
        Still get the grey screen.

        Comment


          #5
          Re: Screenshot of Login Screen?

          Any errors in the konsole when you start Xephyr ?


          Have you tried with xnest ?
          Code:
          Xnest -query localhost :1
          or
          With :2, :3,...
          Before you edit, BACKUP !

          Why there are dead links ?
          1. Thread: Please explain how to access old kubuntu forum posts
          2. Thread: Lost Information

          Comment


            #6
            Re: Screenshot of Login Screen?

            One relating to a FONT. Don't think that's it though. Do I need to do this? Found it through Google.

            Code:
            X(XOrg) configuration
            
            To configure a multiterminal with N terminals, edit the file /etc/X11/xorg.conf, and do the following:
            
            1. Define a layout with N screen's.
            
            Section "ServerLayout"
                Identifier   "Layout"
                Screen     "Screen 1"
                Screen     "Screen 2"  Below  "Screen 1"
                Screen     "Screen 3"  Below  "Screen 2"
                .
                .
                Screen     "Screen N"  Below  "Screen N-1"
                InputDevice   "Generic Keyboard 1"
            EndSection
            
            2. Define one Device Section for each video card:
            
            Section "Device"
                Identifier   "Video Card 1"
                Driver     "sis" 
                BusID      "PCI:0:5:0"  
                Screen     0    
            EndSection   
                #
                # Change the video card driver and the BusID according to you hardware.
                #
                # The BusID option identifies your video card. To obtain the BusIDs of your video cards,
                #use the command "lspci | grep VGA".
                # Beware: the lspci command shows address in hexadecimal, while X expects decimal numbers.
                #The command "echo $((0xHEX_NUMBER))" is your friend.
                .
                .
                .
            Section "Device"
                Identifier   "Video Card N"
                Driver     "sis"
                BusID      "PCI:0:6:0"
                Screen     0    
            EndSection
            
            3. Define the Monitor Sections.
            
            Section "Monitor"
                Identifier   "Monitor 1"
                HorizSync    30-71
                VertRefresh   50-160
                Option     "DPMS"
            EndSection           
                .
                .
                .        
            Section "Monitor"
                Identifier   "Monitor N"
                HorizSync    30-71
                VertRefresh   50-160
                Option     "DPMS"
            EndSection
            
            4. Define the Screen Sections
            
            Section "Screen"
                Identifier   "Screen 1"
                Device     "Video Card 1"
                Monitor     "Monitor 1"
                DefaultDepth  24   
                SubSection "Display"
                    Depth      24
                    Modes      "1024x768" "800x600" "640x480"
                EndSubSection
            EndSection
                .
                .
                .
            Section "Screen"
                Identifier   "Screen N"
                Device     "Video Card N"
                Monitor     "Monitor N"
                DefaultDepth  24   
                SubSection "Display"
                    Depth      24
                    Modes      "1024x768" "800x600" "640x480"
                EndSubSection

            Comment


              #7
              Re: Screenshot of Login Screen?

              Same thing with xnest. Grey X screen with familiar cursor. Also for screens 2, 3, and 4.

              Comment


                #8
                Re: Screenshot of Login Screen?

                Do I need to do this? Found it through Google.
                Hmm - i didn't need. I only enabled Xdmcp and 'any host can get a login window'.

                Hmm#2 - What happens if you:
                Code:
                :~$ startx -- /usr/bin/Xephyr :1
                It should start another xsession in the Xephyr window. But there is a bug report:
                xephyr crashes when trying to run a gutsy session
                https://bugs.launchpad.net/ubuntu/+s...er/+bug/122610.


                I think that those instructions are for multiterminal (single computer which supports multiple users at the same time). =>

                Multiterminal with Xephyr
                http://en.wikibooks.org/wiki/Multiterminal_with_Xephyr

                Multiseat
                http://en.wikipedia.org/wiki/Multiseat
                Before you edit, BACKUP !

                Why there are dead links ?
                1. Thread: Please explain how to access old kubuntu forum posts
                2. Thread: Lost Information

                Comment


                  #9
                  Re: Screenshot of Login Screen?



                  Thanks!!!!!! That worked!!

                  Code:
                  startx -- /usr/bin/Xephyr :1

                  Comment


                    #10
                    Re: Screenshot of Login Screen?

                    Hmm - do you get login sceen with startx ?


                    About Xephyr (login screen):

                    Maybe:
                    Code:
                    :~$ Xephyr -query 127.0.0.1 :1
                    works.

                    Before you edit, BACKUP !

                    Why there are dead links ?
                    1. Thread: Please explain how to access old kubuntu forum posts
                    2. Thread: Lost Information

                    Comment


                      #11
                      Re: Screenshot of Login Screen?

                      No. Been trying since I lasted posted. Goes directly into another session of mine and when logging out of it closes out. Never see the login screen. It also tried to put it to the Full screen width. I'll try what you just wrote and let you know. I don't give up. This is the furthest I've gotten.

                      Comment


                        #12
                        Re: Screenshot of Login Screen?

                        Code:
                        Xephyr -query 127.0.0.1 :1
                        Same result. Grey as far as the eye can see

                        Comment


                          #13
                          Re: Screenshot of Login Screen?

                          Well. I thought it may be doing that because I had Compiz running. Turned all that off, rebooted and tried again. Still grey.

                          Comment


                            #14
                            Re: Screenshot of Login Screen?

                            OK. Lets backup here. How did you install? I use adept manager and what ever they had in the repos. Do you know of any other dependencies that maybe are not loaded as necessary? This is on my desktop. I'll try the laptop soon.

                            Comment


                              #15
                              Re: Screenshot of Login Screen?

                              How did you install? I use adept manager and what ever they had in the repos. Do you know of any other dependencies that maybe are not loaded as necessary?
                              I'm using Synaptic (+apt in the konsole). I don't think that the problem is in dependencies. Problem seem to be in the graphical login.

                              Xephyr:
                              Code:
                              :~$ apt-cache show xserver-xephyr
                              Depends: libc6 (>= 2.6-1), libfontenc1, libx11-6, libxau6, libxdmcp6, libxext6, libxfont1
                              Recommends: xbase-clients
                              Do you have xbase-clients ?

                              Maybe (if you don't have)
                              xbase-clients
                              Depends: x11-common, xauth, xdpyinfo, xhost, xinit, xkbutils, xpmutils, xprop, xrandr, xrdb, xsetmode, xsetpointer, xvinfo, mesa-utils, xset, xmodmap, xdriinfo, appres, beforelight, bitmap, editres, fstobdf, iceauth, ico, listres, oclock, smproxy, viewres, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xev, xeyes, xf86dga, xfd, xfontsel, xgamma, xgc, xkill, xload, xlogo, xlsatoms, xlsclients, xlsfonts, xmag, xman, xmessage, xmore, xrgb, xrefresh, xsetroot, xsm, xstdcmap, xtrap, xvidtune, xwd, xwininfo, xwud, xutils
                              =>
                              xauth
                              Description: X authentication utility
                              xauth is a small utility to read and manipulate Xauthority files, which
                              are used by servers and clients alike to control authentication and access
                              to X sessions.


                              xbase-clients
                              X Window System client utility transitional package
                              This package smooths upgrades from Ubuntu 5.04 ('Hoary') by ensuring that
                              most base X client utilities are installed.
                              Is this up to date ?
                              Before you edit, BACKUP !

                              Why there are dead links ?
                              1. Thread: Please explain how to access old kubuntu forum posts
                              2. Thread: Lost Information

                              Comment

                              Working...
                              X