Using and Managing GDM

Total Page:16

File Type:pdf, Size:1020Kb

Using and Managing GDM Using and Managing GDM Jiri (George) Lebl Abstract 2.0 was around the corner (or it seemed more around the corner than it actually was), and we didn’t have a GDM does many things, however it contains almost working display manager. The problem with GDM2 no documentation. This talk (and paper) is an at- was that it was not finished and was basically not tempt to correct this situation. GDM was written working at all. Various distributions had their own as a simpler alternative to XDM and is in fact a very large patches which made it work in various complete rewrite and does not use any XDM code. ways, but mostly broke it in various different ways. It is simpler in places and more advanced in oth- So I started applying the distribution patches and ers, so it may not perhaps replace all the applica- later took over maintaining GDM2 and it became tions of XDM, but it aspires to be good enough to my pet project to add features and easter eggs to (of replace most, while having some other neat features course the panel still has the best easter eggs, and that XDM doesn’t have and overall being more user if you haven’t played ”gegls from outer space”, you friendly. This paper will guide users and sysadmins have not lived). Lately I have however concentrated through the design of GDM and the more advanced a lot more on school and actually finishing a degree setups, such as running multiple servers, customiz- and perhaps one day becoming a productive mem- ing the login, setting up XDMCP (with a complete ber of society. If you can be productive with a pure explanation of how XDMCP works), running X ter- mathematics degree is another question. minal labs with GDM, communicating with GDM us- ing the socket/pipe protocol. Also tips and solutions for problems in setups that users have encountered 2 GDM Design are interspersed throughout the discussion. Future planned enhancements are also given some attention. The basic design of GDM stresses security, modular- ity, robustness and user friendliness much more than XDM. GDM runs as a series of different processes, 1 Introduction with different privileges. The main GDM daemon process is the behind the scenes puppet master. It GDM, the GNOME Display Manager, is the login doesn’t by itself manage any sessions, however it has manager that is by now familiar to most GNOME information about all the other processes. This mas- users. It does a lot more than logging you in, it ter process is run as asynchronously and should never starts the X server, manages remote connections us- run operations which could cause it to hang even for ing XDMCP, allows users to shut down, reboot or a short while. It also handles communicating using suspend the machine and basically has to do all the the XDMCP protocol and using the local socket pro- behind the scenes stuff so that GNOME (or any other tocol, but it delegates all the the work of starting desktop) has an X server to start on. This is basi- and managing an X server and a session to a slave cally what the XDM software does, however GDM is process. A separate slave process is started for each a complete rewrite and shares no code with XDM. X server. This slave process can run synchronously, The KDE Display Manager on the other hand is ba- thus can hang when for example waiting on the X sically XDM retrofitted with a KDE style login box server, this makes the design a lot simpler, but is and setup program. also the source of many design headaches and thus GDM was originally written by Martin K. Pe- this may be changed later. After a session ends, the tersen, but he has since stopped maintaining it. He slave has two options. It either resets the X server and has for a while worked on GDM3, which was to be a puts up another login box, or it kills the X server and cleaner rewrite of GDM2, but this rewrite never hap- lets the master process run another slave for this dis- pened. GDM2 is really the second version of GDM play. The latter is now the default setup and should and this is the GDM currently in use and the one I be preferred because of security issues even though it am describing. Around the spring of 2001, GNOME 1 Using and Managing GDM is a little dirtier (there will be a short flicker between to exploit. Even if the user would somehow, perhaps sessions). The former is still left as a possibility since through some bug in GTK+, run perhaps a shell as some X servers are very buggy tend to lock the ma- the GDM user, he could not do much damage be- chine on such a complete restart. The slave sends all yond perhaps shutting down GDM or making GDM pids about its subprocesses to the master and so if the unusable, but he could do no worse to the system slave crashes, the master can clean up and try again. itself. Another example of why this is safer are for Of course crashing is considered very bad form, but example the Shutdown, Reboot Suspend and Con- GDM can handle crashes somewhat cleanly, and per- figure menus. Usually you would not want these on haps let the user log in. For a picture of how this all remote connections, however perhaps there might be looks see Figure 1. a bug (or an exploit) and the menu item would show up and a remote user might think he could shut down the server. But all the login dialog can do is relay this Master process information to the master process and then the mas- ter process sees if this display is even allowed to do a shutdown. GDM manages three different types of displays (X servers). The first type is the static X server slave slave which comes from the configuration file. Usually this is the X server set up for the :0 display slot, and it will always run. You can run several different X servers this way if you want. The second type of dis- X :0 X :1 play is the flexible (or flexi for short) X server. This X server is run on request by running the program gdmflexiserver or by clicking on the appropriate user login icon that is installed with GDM. The flexi server lets session a user log in once and then quits. This is for example useful if you are logged in as user A, and user B wants Figure 1: Structure of GDM Processes. to log in quickly but you don’t wish to log out. The X server takes care of the virtual terminal switching so it works quite transparently in fact. There is also a In the XDM design, the login dialog runs with flexi server as an Xnest, that is an X server in a win- the same privileges as XDM itself, that is root. So dow. This is requested by running gdmflexiserver a potential security hole in the GUI could compro- --xnest or again clicking on the appropriate icon. mise the system. GDM on the other hand sets up The last display type is an XDMCP connection. In an unprivileged user and the login dialog is run as this case there really isn’t any local X server run. The this user. It can only communicate with the slave X server runs on some remote machine and just re- that started it using it’s standard input and output. quests that it be managed for one session by the local The basic design is that the slave just gives it a series GDM. of questions and the login dialogs asks these ques- All the configuration for GDM is stored in a file tions of the user. When the user selects some action called gdm.conf and usually this is in the directory which is not an answer to a question, such as when /etc/X11/gdm. The directory depends on the local the user selects the configurator, the login dialog can installation of course. This is a plain text file with interrupt the question. However it is important to an ini style syntax. One of the many reasons that understand that the login dialog has very little infor- this is text only is that it is even possible to read mation about the user and has almost no privileges. from shell scripts. The standard distributed con- This can sometimes cause problems in the design, for figuration file has many comments which document example with the face browser. The problem here how to work with this file. The file isn’t reread as is that the pictures are only accessible to root since soon as it’s modified. You must tell GDM to restart they are in users directories. So the slave has to read for changes to take affect (see also Section 6). Al- in the .png file and send it over the standard input ternatively GDM can reread certain keys on the fly to the greeter. But despite these problems this is a without being restarted, but you must use the socket much safer and much more secure design than XDM. protocol to tell GDM about this. This is what is The login dialog is really in the position of the user, it used by the gdmsetup program to alert GDM to can only answer questions, so it would be very tough 2 Using and Managing GDM changes.
Recommended publications
  • Desktop Migration and Administration Guide
    Red Hat Enterprise Linux 7 Desktop Migration and Administration Guide GNOME 3 desktop migration planning, deployment, configuration, and administration in RHEL 7 Last Updated: 2021-05-05 Red Hat Enterprise Linux 7 Desktop Migration and Administration Guide GNOME 3 desktop migration planning, deployment, configuration, and administration in RHEL 7 Marie Doleželová Red Hat Customer Content Services [email protected] Petr Kovář Red Hat Customer Content Services [email protected] Jana Heves Red Hat Customer Content Services Legal Notice Copyright © 2018 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
    [Show full text]
  • Lesslinux Handbook
    lesslinux.com Documentation Handbook Mattias Schlenker INUX August-Bebel-Str. 74 L 04275 Leipzig GERMANY ê [email protected] ESS L Contents 1 About LessLinux and this handbook2 2 LessLinux for users3 3 LessLinux for admins4 3.1 Remote access.......................................4 3.1.1 SSH.........................................4 3.1.2 VNC........................................5 3.1.3 RDP........................................6 3.1.4 Xpra........................................7 3.2 Netbooting LessLinux..................................7 3.2.1 CIFS or NFS boot.................................8 3.2.2 HTTP, FTP or TFTP boot.............................8 3.3 LessLinux as thinclient..................................9 3.3.1 Booting to Remmina...............................9 3.3.2 Booting to an RDP login mask.........................9 3.3.3 Booting to a chooser............................... 10 3.3.4 Using XDMCP.................................. 12 3.3.5 Local printers................................... 12 4 LessLinux for builders and contributors 13 4.1 Preparation........................................ 13 4.1.1 Prepare a drive.................................. 13 4.1.2 Create some directories............................. 14 4.1.3 Download the „sources”............................. 14 4.2 Build the first stage.................................... 14 2 Abstract LessLinux is a free Linux system designed to be light and easily modifiable. It is based on Linux from Scratch and was started by Mattias Schlenker in 2009. Since then it has been used as a base for dozens of security and rescue systems published by computer magazines all over the world. It’s simple architecture makes it easy to build LessLinux based systems for use as thinclient, software deployment or the demonstration of software. This book covers the possibilities of LessLinux and tells you how small changes can make LessLinux the lever you need to move your world.
    [Show full text]
  • Ubuntu Kung Fu
    Prepared exclusively for Alison Tyler Download at Boykma.Com What readers are saying about Ubuntu Kung Fu Ubuntu Kung Fu is excellent. The tips are fun and the hope of discov- ering hidden gems makes it a worthwhile task. John Southern Former editor of Linux Magazine I enjoyed Ubuntu Kung Fu and learned some new things. I would rec- ommend this book—nice tips and a lot of fun to be had. Carthik Sharma Creator of the Ubuntu Blog (http://ubuntu.wordpress.com) Wow! There are some great tips here! I have used Ubuntu since April 2005, starting with version 5.04. I found much in this book to inspire me and to teach me, and it answered lingering questions I didn’t know I had. The book is a good resource that I will gladly recommend to both newcomers and veteran users. Matthew Helmke Administrator, Ubuntu Forums Ubuntu Kung Fu is a fantastic compendium of useful, uncommon Ubuntu knowledge. Eric Hewitt Consultant, LiveLogic, LLC Prepared exclusively for Alison Tyler Download at Boykma.Com Ubuntu Kung Fu Tips, Tricks, Hints, and Hacks Keir Thomas The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas Prepared exclusively for Alison Tyler Download at Boykma.Com Many of the designations used by manufacturers and sellers to distinguish their prod- ucts are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC.
    [Show full text]
  • NCD Thin Client Xware User's Guide
    NCD NCD Thin Client Xware User’s Guide Part Number 5401612 June 1998 Network Computing Devices, Inc. 350 North Bernardo Avenue Mountain View, CA 94043-5207 Technical support: 503/641-2200 Technical support FAX: 503/641-2959 Email: [email protected] World Wide Web: http://www.ncd.com Copyright Copyright © 1998 by Network Computing Devices, Inc. The information contained in this document is subject to change without notice. NCD SHALL NOT BE LIABLE FOR ERRORS CONTAINED HEREIN OR FOR ANY DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH THE FURNISHING, PERFORMANCE, OR USE OF THIS MATERIAL. This document contains information which is protected by copyright. All rights are reserved. Made in the U.S.A. No part of this document may be photocopied, reproduced, or translated to another language without the prior written consent of NCD. Title to and ownership of the Software, and all copies thereof, shall at all times reside with NCD and its licensors, and is protected by United States copyright laws and international treaty provisions. Trademarks Network Computing Devices is a registered trademark of Network Computing Devices, Inc. NCDnet, NCDware, and Thin Client Xware FTP are trademarks of Network Computing Devices, Inc. Apple and LaserWriter are registered trademarks of Apple Computer, Inc. Citrix, WinFrame, and ICA are registered trademarks of Citrix Systems, Inc. DECnet, DECwindows, VMS, VT, and ULTRIX are trademarks of Digital Equipment Corporation. Ethernet is a trademark of Xerox Corporation. Hewlett-Packard and LaserJet are registered trademarks of Hewlett-Packard Corporation. HP-UX is a trademark of Hewlett-Packard Corporation.
    [Show full text]
  • Building and Installing Xen 4.X and Linux Kernel 3.X on Ubuntu and Debian Linux
    Building and Installing Xen 4.x and Linux Kernel 3.x on Ubuntu and Debian Linux Version 2.3 Author: Teo En Ming (Zhang Enming) Website #1: http://www.teo-en-ming.com Website #2: http://www.zhang-enming.com Email #1: [email protected] Email #2: [email protected] Email #3: [email protected] Mobile Phone(s): +65-8369-2618 / +65-9117-5902 / +65-9465-2119 Country: Singapore Date: 10 August 2013 Saturday 4:56 A.M. Singapore Time 1 Installing Prerequisite Software sudo apt-get install ocaml-findlib sudo apt-get install bcc bin86 gawk bridge-utils iproute libcurl3 libcurl4-openssl-dev bzip2 module-init-tools transfig tgif texinfo texlive-latex-base texlive-latex-recommended texlive-fonts-extra texlive-fonts-recommended pciutils-dev mercurial build-essential make gcc libc6-dev zlib1g-dev python python-dev python-twisted libncurses5-dev patch libvncserver-dev libsdl-dev libjpeg62-dev iasl libbz2-dev e2fslibs-dev git-core uuid-dev ocaml libx11-dev bison flex sudo apt-get install gcc-multilib sudo apt-get install xz-utils libyajl-dev gettext sudo apt-get install git-core kernel-package fakeroot build-essential libncurses5-dev 2 Linux Kernel 3.x with Xen Virtualization Support (Dom0 and DomU) In this installation document, we will build/compile Xen 4.1.3-rc1-pre and Linux kernel 3.3.0-rc7 from sources. sudo apt-get install aria2 aria2c -x 5 http://www.kernel.org/pub/linux/kernel/v3.0/testing/linux-3.3-rc7.tar.bz2 tar xfvj linux-3.3-rc7.tar.bz2 cd linux-3.3-rc7 Page 1 of 25 (C) 2013 Teo En Ming (Zhang Enming) 3 Configuring the Linux kernel cp /boot/config-3.0.0-12-generic .config make oldconfig Accept the defaults for new kernel configuration options by pressing enter.
    [Show full text]
  • User Guide HP Remote Graphics Software
    User Guide HP Remote Graphics Software 7.5 © Copyright 2018 HP Development Company, Third-party software notice L.P. Third-party source code and licenses are re- Linux® is the registered trademark of Linus distributed, if required, with HP Remote Torvalds in the U.S. and other countries. Graphics Software. Windows is either a registered trademark or trademark of Microsoft Corporation in the United States and/or other countries. NVIDIA and TwinView are trademarks and/or registered trademarks of NVIDIA Corporation in the U.S. and other countries. Red Hat and Red Hat Enterprise Linux are trademarks of Red Hat, Inc. in the United States and other countries. VMware and VMware vSphere are registered trademarks or trademarks of VMware, Inc. in the United States and/or other jurisdictions. Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. First Edition: April 2018 Document Part Number: L24507-001 User input syntax key Text that you must enter into a user interface is indicated by fixed-width font. Item Description Text without brackets or braces Items you must type exactly as shown <Text inside angle brackets> A placeholder for a value you must provide; omit the brackets [Text inside square brackets] Optional items; omit the brackets {Text inside braces} A set of items from which you must choose only one; omit the braces | A separator for items from which you must choose only one; omit the vertical bar ..
    [Show full text]
  • Gnome Display Manager Reference Manual
    Gnome Display Manager Reference Manual Martin K. Petersen [email protected] Gnome Display Manager Reference Manual by Martin K. Petersen Copyright © 1998, 1999 by Martin K. Petersen This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For more details see the file COPYING in the source distribution of GDM. Table of Contents Terms and conventions used in this book.....................................................................4 1. Overview.....................................................................................................................5 1.1. Introduction ......................................................................................................5 1.2. The GDM Daemon ...........................................................................................5 1.3. XDMCP............................................................................................................6 1.4. The Greeter .......................................................................................................7
    [Show full text]
  • Gnome Display Manager Reference Manual Martin K
    Gnome Display Manager Reference Manual Martin K. Petersen [email protected] George Lebl [email protected] Brian Cameron [email protected] Bill Haneman [email protected] Table of Contents Terms and Conventions Used in This Manual ...............................................................3 Overview ................................................................................................................................3 Configuration.........................................................................................................................8 Controlling GDM ...............................................................................................................32 GDM Commands................................................................................................................38 Graphical Greeter Themes................................................................................................42 Accessibility.........................................................................................................................49 Example Configurations ....................................................................................................50 License...................................................................................................................................52 Terms and Conventions Used in This Manual This manual describes version 2.6.0.4 of the GNOME Display Manager. It was last updated on 7/14/2004. GDM - Gnome Display Manager. Used to describe the software package as
    [Show full text]
  • Step-By-Step Installation
    000.book Page 47 Friday, April 4, 2008 9:22 AM 3 Step-by-Step Installation In This Chapter Chapter3,Chapter3 2 covered planning the installation of Fedora/RHEL: determining the requirements; performing an upgrade versus a Running a Fedora Live Session . 48 clean installation; planning the layout of the hard disk; obtaining Installing from a Live Session . 51 the files you need for the installation, including how to download Installing/Upgrading from the and burn CD/DVD ISO images; and collecting information about Install DVD . 51 the system. This chapter focuses on installing Fedora/RHEL. Fre- The Anaconda Installer. 53 quently the installation is quite simple, especially if you have done a good job of planning. Sometimes you may run into a problem Using Disk Druid to Partition or have a special circumstance; this chapter gives you tools to use the Disk . 66 in these cases. Read as much of this chapter as you need to; once LVs: Logical Volumes . 75 you have installed Fedora/RHEL, continue with Chapter 4, which Setting Up a Dual-Boot System . 79 covers getting started using the Fedora/RHEL desktop. If you The X Window System. 80 install a textual (command line) system, continue with Chapter 5. system-config-display: Configures the Display . 80 47 000.book Page 48 Friday, April 4, 2008 9:22 AM 48 Chapter 3 Step-by-Step Installation Figure 3-1 Live session, automatic boot screen Running a Fedora Live Session As discussed in Chapter 2, a live session is a Linux session that you run on a computer without installing Linux on the computer.
    [Show full text]
  • 2. Avaya System Products with Kdebase Installed: None 3
    kdebase security update (RHSA-2006-0548) Original Release Date: June 15, 2006 Last Revised: June 15, 2006 Number: ASA-2006-127 Risk Level: None Advisory Version: 1.0 Advisory Status: Final 1. Overview: Kdebase is a core software package collection for the K Desktop Environment (KDE). One of the many software packages it provides is the KDE display manager (KDM). The KDE display manager was found to contain a flaw which could possibly allow a user read access to an arbitrary file it would not normally have permissions to read using a symlink attack. The Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name CVE-2006-2449 to this issue. No Avaya System products are vulnerable, as kdebase is not installed by default. More information about these vulnerabilities can be found in the security advisory issued by RedHat Linux: · https://rhn.redhat.com/errata/RHSA-2006-0548.html 2. Avaya System Products with kdebase installed: none 3. Avaya Software-Only Products Avaya software-only products operate on general-purpose operating systems. Occasionally vulnerabilities may be discovered in the underlying operating system or applications that come with the operating system. These vulnerabilities often do not impact the software-only product directly but may threaten the integrity of the underlying platform. In the case of this advisory Avaya software-only products are not affected by the vulnerability directly but the underlying Linux platform may be. Customers should determine on which Linux operating system the product was installed and then follow that vendors guidance: 4. Software-Only Products: Affected Risk Product: Actions: Version(s): Level: Depending on the Operating System provided by customers, the affected Avaya packages may be installed on the underlying Interactive All None Operating System supporting the IR Response(IR) application.
    [Show full text]
  • Op E N So U R C E Yea R B O O K 2 0
    OPEN SOURCE YEARBOOK 2016 ..... ........ .... ... .. .... .. .. ... .. OPENSOURCE.COM Opensource.com publishes stories about creating, adopting, and sharing open source solutions. Visit Opensource.com to learn more about how the open source way is improving technologies, education, business, government, health, law, entertainment, humanitarian efforts, and more. Submit a story idea: https://opensource.com/story Email us: [email protected] Chat with us in Freenode IRC: #opensource.com . OPEN SOURCE YEARBOOK 2016 . OPENSOURCE.COM 3 ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ OPENSOURCE.COM...... ........ .. .. .. ... .... ........ WRITE FOR US ..... .. .. .. ... .... 7 big reasons to contribute to Opensource.com: Career benefits: “I probably would not have gotten my most recent job if it had not been for my articles on 1 Opensource.com.” Raise awareness: “The platform and publicity that is available through Opensource.com is extremely 2 valuable.” Grow your network: “I met a lot of interesting people after that, boosted my blog stats immediately, and 3 even got some business offers!” Contribute back to open source communities: “Writing for Opensource.com has allowed me to give 4 back to a community of users and developers from whom I have truly benefited for many years.” Receive free, professional editing services: “The team helps me, through feedback, on improving my 5 writing skills.” We’re loveable: “I love the Opensource.com team. I have known some of them for years and they are 6 good people.” 7 Writing for us is easy: “I couldn't have been more pleased with my writing experience.” Email us to learn more or to share your feedback about writing for us: https://opensource.com/story Visit our Participate page to more about joining in the Opensource.com community: https://opensource.com/participate Find our editorial team, moderators, authors, and readers on Freenode IRC at #opensource.com: https://opensource.com/irc .
    [Show full text]
  • Linux XDMCP HOWTO
    Linux XDMCP HOWTO Thomas Chao [email protected] Revision History Revision v1.2 15 March 2002 Revised by: tc Adding more info for Red Hat 7.2, Mandrake 8.1 and Slackware 8.0 Linux configuration and SSH X11 Forwarding. Revision v1.1 20 March 2001 Revised by: tc Revision and adding RH 7.0. Revision v1.0 01 November 2000 Revised by: tc Initial revision and release. This HOWTO describes how you can use the combination of X Display Manager (xdm, kdm and gdm) and XDMCP (X Display Manager Control Protocol) to provide the mechanism for an X−Terminal and a platform of cheap Remote X Apps solution. This document will be focusing on how to setup connection using XDMCP. Linux XDMCP HOWTO Table of Contents 1. Introduction.....................................................................................................................................................1 1.1. Disclaimer.........................................................................................................................................1 1.2. Feedback...........................................................................................................................................1 2. The Procedure.................................................................................................................................................2 2.1. Before you begin, some backgrounds...............................................................................................2 2.2. Security Reminder............................................................................................................................2
    [Show full text]