Part of login script not processing

Running OES 11 with Windows 7 clients.
I have a couple of drives that are not OES based. One is a NAS box
and the other is a virtual appliance. I can manually execute the NET
USE command on any Windows 7 PC in my office and map a drive letter to
either unit. The NAS box works fine in my login script. Everyone
company wide needs access to it, so the login script includes these
two lines:
@NET USE U: /DELETE
@NET USE U: \\nas_box\path /PERSISTENT:NO
Now I need to add the appliance. The net use command works fine
manually for the appliance. Only a few specific people need access to
it, so I created a group in eDirectory and added these lines to my
login script
IF MEMBER OF "appliance_group.my_org" THEN BEGIN
@NET USE P: /DELETE
@NET USE P: \\appliance\path /PERSISTENT:NO /USER:username password
END
The drive is not showing up. I'm stumped. I can't find any typos,
the group exists and has the right members, and I can manually run the
command and it works. So why wouldn't it run/map during the login
script? How can I troubleshoot this?
Thanks!
Ken

On 10/02/2014 15:58, KeN Etter wrote:
> Running OES 11 with Windows 7 clients.
>
> I have a couple of drives that are not OES based. One is a NAS box
> and the other is a virtual appliance. I can manually execute the NET
> USE command on any Windows 7 PC in my office and map a drive letter to
> either unit. The NAS box works fine in my login script. Everyone
> company wide needs access to it, so the login script includes these
> two lines:
>
> @NET USE U: /DELETE
> @NET USE U: \\nas_box\path /PERSISTENT:NO
>
> Now I need to add the appliance. The net use command works fine
> manually for the appliance. Only a few specific people need access to
> it, so I created a group in eDirectory and added these lines to my
> login script
>
> IF MEMBER OF "appliance_group.my_org" THEN BEGIN
> @NET USE P: /DELETE
> @NET USE P: \\appliance\path /PERSISTENT:NO /USER:username password
> END
>
> The drive is not showing up. I'm stumped. I can't find any typos,
> the group exists and has the right members, and I can manually run the
> command and it works. So why wouldn't it run/map during the login
> script? How can I troubleshoot this?
TID 7014158[1] perhaps?
HTH.
[1] http://www.novell.com/support/kb/doc.php?id=7014158
Simon
Novell Knowledge Partner
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.

Similar Messages

  • Login script not mapping drives for users

    I am in the process of configuring a new Windows 2008 terminal server in an existing Windows 2003 domain.  The TS is installed on a member server running Windows Server 2008 SP2.  The problem is that the domain login script (set in group policy) does not seem to be working for the users.  
    I have a special TS group policy for the new terminal server and have enabled loopback processing on the default domain policy. The only setting configured in the TS policy is the location of the user's terminal server roaming profile. This seems to be working.  Other than the login script, other elements of the domain-level group policy, such as folder redirection, seem to be working. When I run the GP result tool on the terminal server, it shows all of the appropriate group policies from both the TS policy and the domain-level policy, including the login script.  This login script is vital, since it does drive mapping for a bunch of resources on the domain that users need to run certain programs.  The odd thing is that the login script runs for the Administrator account, which uses a separate group policy that has inheritance blocked.
    Any help would be appreciated!
    Laurie

    I realize this is old, but for anyone who comes here after me, here goes.  What i found, is that instead of running a vbs script to map the drives, i run a vbs script to get the parameters i need, then i run a batch file from the vbs and pass it the
    parameters.  For some reason, when the logon script is run as a batch file, all of the drives map, even for users who are local admins.  It seems to run in the users current context, unlike a vbs script.  Here is an example :
    ' maps a shared documents folder "S:/" to the same folder as the OU that the user is in.
    Set objSysInfo = CreateObject("ADSystemInfo")
    strUser = objSysInfo.UserName
    Set objUser = GetObject("LDAP://" & strUser)
    strUserName = objUser.samAccountName
    strOUPath = objUser.Parent
    arrContainers = Split(strOUPath, ",")
    arrOU = Split(arrContainers(0), "=")
    strOU = arrOU(1)
    Set objShell = CreateObject("WScript.Shell")
    objShell.Run "\\domainname\NETLOGON\Login.bat """ & strOU & """", , TRUE
    And the batch file takes the parameters like so :
    :: Initialize variables
    set parentOU=%~1
    :: Delete all known shares
    net use s: /delete
    :: Map all known shares
    net use S: "\\domainname\mainshare\%parentOU%" /persistent:yes
    Make sure to use quotes around the variable in the vbs file, or your batch file will see it as two parameters.  Then make sure to use %~1 as the variable in the batch file to remove the quotes from the parameter that is passed.

  • Login scripts not running with AnyConnect NAM and ISE 1.2

    I am using AnyConnect 3.1 NAM as my 802.1x supplicant for ISE 1.2.  When users log in with EAP Chaining (User and Machine Auth), the login script seems hit or miss on if it runs to map their drives.  If I uninstall the NAM client, they map drives every time.  I would think that running a login script to map drives is a common scenario and I was wondering if anyone else using AnyConnect NAM was having similar issues or how they were dealing with it.

    I have the same issue and I solve the issue with change these parameters.
    1.- You must change on configuration profile "before user logon". I have 5 seconds
    2.- You must change on configuration profile  "port authentication Exception policy" and you must enable checkbox "enable port exceptions" and select "allow data traffic before authentication"
    3.- You must enable in the option of interface Ethernet Intel on PC "Wait for link" this option It's in "configured advanced of Intel. You must select "on" in this option.
    4.- (this recommendation it was by Cisco) 
    Active Direct GPO has a setting "Computer Configuration\Administrative
    Templates\System\Logon\ Always wait for the network at computer startup and logon" that
    can be enabled to make the logon scripts wait till 802.1x authentication is completed.
    With those changes the logon script run fine.
    Regards
    David.

  • Login script not working

    I created a bash script that is set to executable (+x) and I uploaded through the GUI in Profile Manager.  However, the script never runs on the client....if I manually run the script it works perfectly.
    Any ideas?

    check this thread and see if it helps
    Profile Manager and LoginHooks

  • Login Scripts question

    I have cobbled together a script which display a users quota information when logging in. The script works fine and I can get it to run from the login script managed preference set in workgroup manager. The problem I have is that the script is reporting the user as root rather than the login user. My understanding is that login scripts (not loginhooks) run as the login user rather than the root account or is this incorrect? Trust level is set to anonymous at the moment.
    Here is the script so its more clear what im doing:
    #!/bin/sh
    # quotas - displays usage levels on server.
    # get user's short name.
    thisUser=`whoami`
    # get quota from LDAP
    maxSpace=`ldapsearch -h myserver.com -b "dc=myserver,dc=com" -x -LLL uid=$thisUser apple-user-homequota|grep apple|awk {'print $2'}`
    # convert to MB
    maxMegs=`expr $maxSpace / 1024 / 1024`
    maxGigs=`expr $maxSpace / 1024 / 1024 / 1024`
    # Returns user's home directory disk usage in 1024 KB blocks.
    currentSpace=`du -sk ~ | awk '{print $1}'`
    # convert to MB
    currentMegs=`expr $currentSpace / 1024`
    # floating point math for percentage used
    spaceUsed=`echo "scale=2; $currentMegs / $maxMegs" | bc`
    percentUsed=`echo "scale=0; $spaceUsed * 100" | bc | sed -e "s/.00//g"`
    /usr/bin/osascript <<-EOF
    tell application "System Events"
    activate
    display dialog "Disk Usage for user: $thisUser used: $currentMegs Mb max: $maxGigs Gb percent: $percentUsed %"
    end tell
    EOF
    exit

    In the future, please post your Code Snippits between
    ... your code here ...
    That will preserve all your formatting and prevent the forum formatting code from stealing some of your characters.
    And it will make it easy for people to see what you really wrote as your script.
    PS. Why not just use the quota command?
    Message was edited by: BobHarris

  • Batch process Flatten Script not working?

    Hi,
    I used to run the this.flattenPages(); in Acrobat pro 8 with no problems, Scince ive installed 9 the batch process requires the enter button to be pressed every time it processes a file??? Is there a work around for this? Im not too good with Javascript, In Acrobat 8 I just had the one line and it worked fine?
    Please help ive 80,000 files to process!
    Thanks
    Mike

    Dont know if you have found a solution or not but you could use this as a work around.
    http://www.autoitscript.com/autoit3/index.shtml
    It is a free program that you can create scripts in if you created and ran an Autoit script that would have a
    ;******************** auto it script not javascript ************
    $count = "1"
    $total = "80001"
    While( $count <= $total)
    sleep(100)
    winwait(_______x_______,_______y_________)
    send("{ENTER}")
    ;sleep(100)
    $count = $count + 1
    WEnd
    ;****************** end auto it script ***********************
    You will want to replace the _______x________ with the exact title of your message window that wants you to hit enter on. And the _________y________ with part of the text that is in the window that wants you to hit enter on.
    What it does is loop 80000 times. While looping it waits for the window with the exact title / words in it once it see that it will hit enter, add one to count and do it again.
    While running script if you want to stop the auto it program a blue A is on the lower right side of screen by system clock you can right click on it and end it.
    This may help you get done with them while you are searching for a better built in answer.

  • Dbora script not executing all startup processes

    Hi,
    I am running Oracle10gR2 on RHEL4. I am having issues with my dbora script. I read quite a few of the posts about it and most people were having similar issues as me. However, I was still not able to get it to work properly. I am going to paste my dbora script and all the other things that I am suppose to do like edit the /etc/oratab file. The main problem I am having is that not all the process that need to be started are starting up. I've been messing around with the /etc/rc.d/init.d/rc.2..rc.3...rc.4...etc files and trying different combinations and they all give me different results. However, the one thing that never starts up is the database. I can get the listener to work and sometimes http server also, but never the database. And another weird thing is that when I check the logs (/var/log/boot.log) it says that the opmn process, for example, has been started, but when I check the status it is down. Here is how things look now.
    The /etc/oratab file
    # This file is used by ORACLE utilities. It is created by root.sh
    # and updated by the Database Configuration Assistant when creating
    # a database.
    # A colon, ':', is used as the field terminator. A new line terminates
    # the entry. Lines beginning with a pound sign, '#', are comments.
    # Entries are of the form:
    # $ORACLE_SID:$ORACLE_HOME:<N|Y>:
    # The first and second fields are the system identifier and home
    # directory of the database respectively. The third filed indicates
    # to the dbstart utility that the database should , "Y", or should not,
    # "N", be brought up at system boot time.
    # Multiple entries with the same $ORACLE_SID are not allowed.
    FPRCQA:/opt/app/oracle/product/10.2.0/db_1:Y#
    # *:/opt/app/oracle/product/10.2.0/http_1:N
    *:/opt/app/oracle/product/10.2.0/http_1:N
    -- The /etc/rc.d directory
    /etc/rc.d/rc4.d/S99dbora
    /etc/rc.d/rc4.d/K01dbora
    /etc/rc.d/rc3.d/S99dbora
    /etc/rc.d/rc3.d/K01dbora
    /etc/rc.d/rc5.d/S99dbora
    /etc/rc.d/rc5.d/K01dbora
    /etc/rc.d/rc1.d/K01dbora
    /etc/rc.d/rc2.d/S99dbora
    /etc/rc.d/rc2.d/K01dbora
    /etc/rc.d/rc6.d/K01dbora
    /etc/rc.d/rc0.d/K01dbora
    -- The dbora script
    #!/bin/bash
    # chkconfig: 35 99 10
    # description: Starts and stops Oracle processes
    # Set ORA_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME.
    ORA_DB_HOME=/opt/app/oracle/product/10.2.0/db_1
    ORA_HTTP_HOME=/opt/app/oracle/product/10.2.0/http_1
    ORA_OWNER=oracle
    ORA_LSNR=LSNR_FPRCQA
    case "$1" in
    'start')
    # Start the TNS Listener
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl start $ORA_LSNR"
    # Start the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_DB_HOME/bin/dbstart
    # Start the Intelligent Agent
    if [ -f $ORA_DB_HOME/bin/emctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/emctl start agent"
    elif [ -f $ORA_DB_HOME/bin/agentctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/agentctl start"
    else
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl dbsnmp_start"
    fi
    # Start Management Server
    if [ -f $ORA_DB_HOME/bin/emctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/emctl start dbconsole"
    elif [ -f $ORA_DB_HOME/bin/oemctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/oemctl start oms"
    fi
    # Start HTTP Server
    if [ -f $ORA_HTTP_HOME/opmn/bin/opmnctl ]; then
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl start"
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl startproc -ias_component=HTTP_Server"
    fi
    # Start iSQL*Plus
    if [ -f $ORA_HTTP_HOME/bin/isqlplusctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/isqlplusctl start"
    fi
    touch /var/lock/subsys/dbora
    'stop')
    # Stop iSQL*Plus
    if [ -f $ORA_DB_HOME/bin/isqlplusctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/isqlplusctl stop"
    fi
    # Stop HTTP Server
    if [ -f $ORA_HTTP_HOME/opmn/bin/opmnctl ]; then
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl stopall"
    fi
    # Stop the TNS Listener
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl stop $ORA_LSNR"
    # Stop the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_DB_HOME/bin/dbshut
    rm -f /var/lock/subsys/dbora
    esac
    # End of script dbora
    exit 0
    I would also appreciate if someone could tell me how these rc.2 execute and what order.
    Thank you all.

    Ok, I have tried your combination as well as other ones for the runlevels and they all took an hour or more to get the server back up again. The current configurations bring up the server within a few minutes, however, the database nor opmn process is starting. I was wondering if you could still help me? Here is my current runlevel configuration and /var/log/boot.log file. Notice the dbora entries. Thanks!
    /etc/rc.d/rc4.d/K10dbora
    /etc/rc.d/rc3.d/S99dbora
    /etc/rc.d/init.d/dbora
    /etc/rc.d/rc5.d/S99dbora
    /etc/rc.d/rc1.d/K10dbora
    /etc/rc.d/rc2.d/K10dbora
    /etc/rc.d/rc6.d/K10dbora
    /etc/rc.d/rc0.d/K10dbora
    Aug 7 11:48:56 rh-staging cups-config-daemon: cups-config-daemon -TERM succeeded
    Aug 7 11:48:56 rh-staging haldaemon: haldaemon -TERM succeeded
    Aug 7 11:48:56 rh-staging messagebus: messagebus -TERM succeeded
    Aug 7 11:48:56 rh-staging rhnsd: rhnsd shutdown succeeded
    Aug 7 11:48:56 rh-staging atd: atd shutdown succeeded
    Aug 7 11:48:57 rh-staging cups: cupsd shutdown succeeded
    Aug 7 11:48:57 rh-staging dbora: iSQL*Plus 10.2.0.3.0
    Aug 7 11:48:57 rh-staging dbora: Copyright (c) 2003, 2006, Oracle. All Rights Reserved.
    Aug 7 11:49:26 rh-staging dbora: iSQL*Plus instance on port 5560 is not running ...
    Aug 7 11:49:26 rh-staging dbora: opmnctl: stopping opmn and all managed processes...
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 07-AUG-2007 11:49:32
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: Copyright (c) 1991, 2006, Oracle. All rights reserved.
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:49:33 rh-staging dbora: The command completed successfully
    Aug 7 11:49:33 rh-staging dbora: ORACLE_HOME_LISTNER is not SET, unable to auto-stop Oracle Net Listener
    Aug 7 11:49:33 rh-staging dbora: Usage: /opt/app/oracle/product/10.2.0/db_1/bin/dbshut ORACLE_HOME
    Aug 7 11:49:33 rh-staging dbora: Processing Database instance "FPRCQA": log file /opt/app/oracle/product/10.2.0/db_1/shutdown.logAug 7 11:49:34 rh-staging rc: Stopping dbora: succeededAug 7 11:49:34 rh-staging xfs: xfs shutdown succeeded
    Aug 7 11:49:35 rh-staging gpm: gpm shutdown succeeded
    Aug 7 11:49:35 rh-staging sshd: sshd -TERM succeeded
    Aug 7 11:49:35 rh-staging sendmail: sm-client shutdown succeeded
    Aug 7 11:49:35 rh-staging sendmail: sendmail shutdown succeeded
    Aug 7 11:49:35 rh-staging smb: smbd shutdown succeeded
    Aug 7 11:49:36 rh-staging smb: nmbd shutdown succeeded
    Aug 7 11:49:36 rh-staging xinetd: xinetd shutdown succeeded
    Aug 7 11:49:36 rh-staging acpid: acpid shutdown succeeded
    Aug 7 11:49:36 rh-staging crond: crond shutdown succeeded
    Aug 7 11:49:36 rh-staging autofs: Stopping automount:
    Aug 7 11:49:36 rh-staging autofs: automount shutdown succeeded
    Aug 7 11:49:36 rh-staging autofs:
    Aug 7 11:49:36 rh-staging autofs:
    Aug 7 11:49:36 rh-staging rc: Stopping autofs: succeeded
    Aug 7 11:49:37 rh-staging ntpd: ntpd shutdown succeeded
    Aug 7 11:49:37 rh-staging nfslock: rpc.statd shutdown succeeded
    Aug 7 11:49:37 rh-staging irqbalance: irqbalance shutdown succeeded
    Aug 7 11:49:38 rh-staging portmap: portmap shutdown succeeded
    Aug 7 11:49:39 rh-staging syslog: klogd shutdown succeeded
    Aug 7 11:51:32 rh-staging syslog: syslogd startup succeeded
    Aug 7 11:51:32 rh-staging syslog: klogd startup succeeded
    Aug 7 11:51:32 rh-staging irqbalance: irqbalance startup succeeded
    Aug 7 11:51:32 rh-staging portmap: portmap startup succeeded
    Aug 7 11:51:32 rh-staging nfslock: rpc.statd startup succeeded
    Aug 7 11:51:33 rh-staging rpcidmapd: rpc.idmapd startup succeeded
    Aug 7 11:51:33 rh-staging netfs: Mounting other filesystems: succeeded
    Aug 7 11:51:33 rh-staging rc: Starting lm_sensors: succeeded
    Aug 7 11:51:34 rh-staging autofs: automount startup succeeded
    Aug 7 11:51:34 rh-staging acpid: acpid startup succeeded
    Aug 7 06:50:19 rh-staging rc.sysinit: -e
    Aug 7 06:50:31 rh-staging start_udev: Starting udev: succeeded
    Aug 7 06:50:34 rh-staging rc.sysinit: -e
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.ip_forward = 0
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.conf.default.rp_filter = 1
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.conf.default.accept_source_route = 0
    Aug 7 06:50:41 rh-staging sysctl: kernel.sysrq = 0
    Aug 7 06:50:41 rh-staging sysctl: kernel.core_uses_pid = 1
    Aug 7 06:50:41 rh-staging sysctl: kernel.shmmax = 2147483648
    Aug 7 06:50:41 rh-staging sysctl: kernel.sem = 250 32000 100 128
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.ip_local_port_range = 1024 65536
    Aug 7 06:50:41 rh-staging sysctl: net.core.rmem_default = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.rmem_max = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.wmem_default = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.wmem_max = 262144
    Aug 7 06:50:41 rh-staging rc.sysinit: Configuring kernel parameters: succeeded
    Aug 7 11:50:42 rh-staging date: Tue Aug 7 11:50:42 CDT 2007
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting clock (localtime): Tue Aug 7 11:50:42 CDT 2007 succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Loading default keymap succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting hostname rh-staging.fprc.ophth.wisc.edu: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Checking root filesystem succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Remounting root filesystem in read-write mode: succeeded
    Aug 7 11:50:42 rh-staging lvm.static: No volume groups found
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting up Logical Volume Management: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Checking filesystems succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Mounting local filesystems: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Enabling local filesystem quotas: succeeded
    Aug 7 11:50:43 rh-staging rc.sysinit: Enabling swap space: succeeded
    Aug 7 11:50:43 rh-staging sysstat: Calling the system activity data collector (sadc):
    Aug 7 11:50:43 rh-staging sysstat:
    Aug 7 11:50:43 rh-staging rc: Starting sysstat: succeeded
    Aug 7 11:50:44 rh-staging readahead_early: Starting background readahead:
    Aug 7 11:50:44 rh-staging rc: Starting readahead_early: succeeded
    Aug 7 11:51:28 rh-staging kudzu: failed
    Aug 7 11:51:28 rh-staging kudzu: Hardware configuration timed out.
    Aug 7 11:51:28 rh-staging kudzu: Run '/usr/sbin/kudzu' from the command line to re-detect.
    Aug 7 11:51:29 rh-staging pcmcia: Starting PCMCIA services:
    Aug 7 11:51:29 rh-staging pcmcia: cardmgr[2283]: no sockets found!
    Aug 7 11:51:29 rh-staging pcmcia: done.
    Aug 7 11:51:29 rh-staging rc: Starting pcmcia: succeeded
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.ip_forward = 0
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.conf.default.rp_filter = 1
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.conf.default.accept_source_route = 0
    Aug 7 11:51:29 rh-staging sysctl: kernel.sysrq = 0
    Aug 7 11:51:29 rh-staging sysctl: kernel.core_uses_pid = 1
    Aug 7 11:51:29 rh-staging sysctl: kernel.shmmax = 2147483648
    Aug 7 11:51:29 rh-staging sysctl: kernel.sem = 250 32000 100 128
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.ip_local_port_range = 1024 65536
    Aug 7 11:51:29 rh-staging sysctl: net.core.rmem_default = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.rmem_max = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.wmem_default = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.wmem_max = 262144
    Aug 7 11:51:29 rh-staging network: Setting network parameters: succeeded
    Aug 7 11:51:30 rh-staging network: Bringing up loopback interface: succeeded
    Aug 7 11:51:31 rh-staging network: Bringing up interface eth0: succeeded
    Aug 7 11:51:35 rh-staging cups: cupsd startup succeeded
    Aug 7 11:51:36 rh-staging sshd: succeeded
    Aug 7 11:51:36 rh-staging xinetd: xinetd startup succeeded
    Aug 7 11:51:37 rh-staging ntpd: succeeded
    Aug 7 11:51:37 rh-staging ntpd: ntpd startup succeeded
    Aug 7 11:51:38 rh-staging sendmail: sendmail startup succeeded
    Aug 7 11:51:38 rh-staging sendmail: sm-client startup succeeded
    Aug 7 11:51:38 rh-staging gpm: gpm startup succeeded
    Aug 7 11:51:39 rh-staging crond: crond startup succeeded
    Aug 7 11:51:40 rh-staging xfs: xfs startup succeeded
    Aug 7 11:51:40 rh-staging smb: smbd startup succeeded
    Aug 7 11:51:40 rh-staging smb: nmbd startup succeeded
    Aug 7 11:51:41 rh-staging winbind: winbindd startup succeeded
    Aug 7 11:51:41 rh-staging anacron: anacron startup succeeded
    Aug 7 11:51:41 rh-staging atd: atd startup succeeded
    Aug 7 11:51:41 rh-staging readahead: Starting background readahead:
    Aug 7 11:51:41 rh-staging rc: Starting readahead: succeeded
    Aug 7 11:51:41 rh-staging messagebus: messagebus startup succeeded
    Aug 7 11:51:41 rh-staging rhnsd: rhnsd startup succeeded
    Aug 7 11:51:41 rh-staging cups-config-daemon: cups-config-daemon startup succeeded
    Aug 7 11:51:41 rh-staging haldaemon: haldaemon startup succeeded
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 07-AUG-2007 11:51:43
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: Copyright (c) 1991, 2006, Oracle. All rights reserved.
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: Starting /opt/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:44 rh-staging dbora: TNSLSNR for Linux: Version 10.2.0.3.0 - Production
    Aug 7 11:51:44 rh-staging dbora: System parameter file is /opt/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Aug 7 11:51:44 rh-staging dbora: Log messages written to /opt/app/oracle/admin/FPRCQA/logmuseum/oraclenet/lsnr_fprcqa.log
    Aug 7 11:51:44 rh-staging dbora: Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Aug 7 11:51:44 rh-staging dbora:
    Aug 7 11:51:44 rh-staging dbora: Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: STATUS of the LISTENER
    Aug 7 11:51:44 rh-staging dbora: ------------------------
    Aug 7 11:51:44 rh-staging dbora: Alias LSNR_FPRCQA
    Aug 7 11:51:44 rh-staging dbora: Version TNSLSNR for Linux: Version 10.2.0.3.0 - Production
    Aug 7 11:51:44 rh-staging dbora: Start Date 07-AUG-2007 11:51:43
    Aug 7 11:51:44 rh-staging dbora: Uptime 0 days 0 hr. 0 min. 0 sec
    Aug 7 11:51:44 rh-staging dbora: Trace Level off
    Aug 7 11:51:44 rh-staging dbora: Security ON: Local OS Authentication
    Aug 7 11:51:44 rh-staging dbora: SNMP OFF
    Aug 7 11:51:44 rh-staging dbora: Listener Parameter File /opt/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Aug 7 11:51:44 rh-staging dbora: Listener Log File /opt/app/oracle/admin/FPRCQA/logmuseum/oraclenet/lsnr_fprcqa.log
    Aug 7 11:51:44 rh-staging dbora: Listening Endpoints Summary...
    Aug 7 11:51:44 rh-staging dbora: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Aug 7 11:51:44 rh-staging dbora: Services Summary...
    Aug 7 11:51:44 rh-staging dbora: Service "FPRCQA.fprc.ophth.wisc.edu" has 1 instance(s).
    Aug 7 11:51:44 rh-staging dbora: Instance "FPRCQA", status UNKNOWN, has 1 handler(s) for this service...
    Aug 7 11:51:44 rh-staging dbora: Service "PLSExtProc" has 1 instance(s).
    Aug 7 11:51:44 rh-staging dbora: Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Aug 7 11:51:44 rh-staging dbora: The command completed successfully
    Aug 7 11:51:44 rh-staging dbora: ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
    Aug 7 11:51:44 rh-staging dbora: Usage: /opt/app/oracle/product/10.2.0/db_1/bin/dbstart ORACLE_HOME
    Aug 7 11:51:44 rh-staging dbora: Processing Database instance "FPRCQA": log file /opt/app/oracle/product/10.2.0/db_1/startup.log
    Aug 7 11:51:51 rh-staging dbora: TZ set to US/Central
    Aug 7 11:51:54 rh-staging dbora: Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Aug 7 11:51:54 rh-staging dbora: Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Aug 7 11:51:55 rh-staging dbora: Starting agent ...
    Aug 7 11:51:56 rh-staging dbora: .
    Aug 7 11:51:57 rh-staging dbora: .
    Aug 7 11:51:58 rh-staging dbora: started.
    Aug 7 11:52:03 rh-staging dbora: TZ set to US/Central
    Aug 7 11:52:04 rh-staging dbora: Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Aug 7 11:52:04 rh-staging dbora: Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Aug 7 11:52:04 rh-staging dbora: http://rh-staging.fprc.ophth.wisc.edu:1 ... pplication
    Aug 7 11:52:04 rh-staging dbora: Agent Version : 10.1.0.5.1
    Aug 7 11:52:04 rh-staging dbora: OMS Version : 10.1.0.5.0
    Aug 7 11:52:04 rh-staging dbora: Protocol Version : 10.1.0.2.0
    Aug 7 11:52:04 rh-staging dbora: Agent Home : /opt/app/oracle/product/10.2.0/db_1/rh-staging.fprc.ophth.wisc.edu_FPRCQA
    Aug 7 11:52:04 rh-staging dbora: Agent binaries : /opt/app/oracle/product/10.2.0/db_1
    Aug 7 11:52:04 rh-staging dbora: Agent Process ID : 3701
    Aug 7 11:52:04 rh-staging dbora: Parent Process ID : 3698
    Aug 7 11:52:04 rh-staging dbora: Agent URL : http://rh-staging.fprc.ophth.wisc.edu:3938/emd/main
    Aug 7 11:52:04 rh-staging dbora: Started at : 2007-08-07 11:51:55
    Aug 7 11:52:04 rh-staging dbora: Started by user : oracle
    Aug 7 11:52:04 rh-staging dbora: Last Reload : 2007-08-07 11:51:55
    Aug 7 11:52:04 rh-staging dbora: Last successful upload : (none)
    Aug 7 11:52:04 rh-staging dbora: Last attempted upload : (none)
    Aug 7 11:52:04 rh-staging dbora: Total Megabytes of XML files uploaded so far : 0.00
    Aug 7 11:52:04 rh-staging dbora: Number of XML files pending upload : 3
    Aug 7 11:52:04 rh-staging dbora: Size of XML files pending upload(MB) : 0.05
    Aug 7 11:52:04 rh-staging dbora: Available disk space on upload filesystem : 78.17%
    Aug 7 11:52:04 rh-staging dbora: Agent is already started. Will restart the agent
    Aug 7 11:52:09 rh-staging dbora: Stopping agent ...
    Aug 7 11:52:11 rh-staging dbora: stopped.
    Aug 7 11:52:11 rh-staging dbora: Starting Oracle Enterprise Manager 10g Database Control ...
    Aug 7 11:52:15 rh-staging dbora: .Aug 7 11:52:46 rh-staging last message repeated 6 times

  • Script Alert: "Sorry I could not process the following files" (Error Message using Image Processor)

    I'm a seasoned Photoshop/Bridge CS5 user who recently upgraded to CS6.  In Bridge I just ran my first Image Processor batch, trying to convert a set of RAW .NEF files to .PSD files with a basic editing action I created applied to them.  Photoshop CS6 opens the files from Bridge and applies the actions, but then I get the "Script alert" error message "Sorry I could not process the following files" and a list of all of the files in the batch I was trying to run the script on.  The files all remain open and are saved on my hard drive in a folder created by the Image Processor script, but do not close unless I manually close them.  I never had this problem in CS5 where the image processor would apply the desired actions to the batch of photos one at a time, then save and close.  Thoughts on how I can fix this bug?

    Hey Jeff--
    No specific action steps to make the image safe - no flattening, etc. Had problems narrowing down the specific action step causing the problem. So I ran the Image Processor script in the ExtendScript ToolKit and debugged in. (I'm using the version that shipped with CS4.)
    Turns out what was happening is that the app.activeDocument.close() command on line 1490 was never getting called, because the this.SaveFile() above it was throwing an exception. More debugging got me to the problem - SaveFile() tries to restore the history state after making a doc safe for saving as a JPEG. This causes an exception. So I commented out line 1571:
    // app.activeDocument.ativeHistoryState = historyState;
    The script runs just fine after this. I commented out the close to see what history states got added to the doc, but no new states are recorded, so commenting out the restore line should not cause any problems.
    Of course, my solution does not solve the problem and I may need to comment out all the saveFile() lines that does this. Not sure why some actions have this problem and others don't. The actions I am running have about 25 steps. Perhaps PS is not catching up quick enough. I added a $.sleep(2500) after the restore history but that didn't help.
    So, not sure where this gets us. I will check about posting an action set with just one of the actions that cause the problem. But I may also have our customer comment out that line of the Image Processor script.
    Hope this helps. May post more next week.

  • POST request in a login script

    I have a strange problem when the variables that are passed to a PHP script dont get recognized in an equal statement. The java code :
    tring value, value2;
         try {
         BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
         URL url = new URL("................./admin.php");
         URLConnection connection = url.openConnection();
         connection.setDoOutput(true);
         System.out.println("Enter your username");
         value = stdin.readLine();
         value = URLEncoder.encode(value, "UTF-8");
         System.out.println("Enter your password");
         value2 = stdin.readLine();
         value2 = URLEncoder.encode(value2, "UTF-8");
         System.out.println("Acessing the ECHO server script");
         PrintWriter out = new PrintWriter(connection.getOutputStream());
         out.println("username="+ value);
         out.println("&password="+value2);
         out.close();
         BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
         String inputLine;
         System.out.println("Retrieving data");
         System.out.println("");
         while ((inputLine = in.readLine()) != null)
             System.out.println(inputLine);
         System.out.println("");
         in.close();
         catch (Exception e)
         System.out.println("Error: "+e);
         System.out.println("Processing Acomplished");In case somebody wonders, this is part of the php script
    if (isset($_POST['username']) && isset($_POST['password']))
    $username = $_POST['username'];
    $password = $_POST['password'];
    echo $username;
    echo $password;
    if ( $username == "1" && $password == "2" )
    echo "CORRECT";
    else
    echo "INCORRECT";
    }Now, the script successfuly recieved my data, and prints it back. However, whenever i try to check if the value is "1", for example, it always evaluates to FALSE. I am completely lost, because the script print back 1, and then says that 1 != 1
    I know it looks like script problem, but im almost sure that its not.
    Maybe the data that java post's is encoded differently or something, and the script cant really "interpret" it. Did anyone else encounter any problems with login scripts and java ?
    Sorry if this is a lame question, i'm just beginning....

    I know it looks like script problem, but im almost sure that its not.I'm almost sure it is. Check that it's not comparing the string "1" to the integer 1 or something. But the way you present it the problem is almost certainly in the PHP rather than the Java.

  • Powershell User logon script not Exiting With "Exit" scripts are set to be visible in GPO

    I am trying to run this script as a user logon script and it is set to visible to the user. There are other parts of the script but It won't ever Exit. It works fine if I run it directly I only have the trouble when it is in the logon script. I'm thinking
    of tryin "Kill -Id $PID" but I'm sure I'll get a bad return code.
    Has anyone else experienced this or hav any ideas what I could try?
    If (Test-Path U:){
    Robocopy U:\ $Destination /E /move /XF "*.inf"
    New-Item -Path HKCU:\Software\test\test -Name Test –Force
    Else{
    Exit
    Else{
    New-Item -Path HKCU:\Software\test\1 -Name Test1 –Force
    Exit       #here is where it will not stop!
    Exit

    Sorry, I did mention this was only a subset of the complete script.
    So, what I am trying to accomplish in words.
    1. Check for the existence of a certain folderon the c: Drive (that is created as apart of a different process)
    2.  Look to see if a registry key exisits that tells the script if it should run or not. So if certain registry key exists under HKCU then don't run if not continue.)
    3. The first time a user logs in and does not find the value that the process is allready complete show the user a message box aski9ng them if they are ready to do (something) if not write a registry key saying step one has completed and then quit.
    4. When the user logs in again the script looks to see if the process is complete and or if step one is complete, if step one is complete it allows the user to skip the process 2 more times but on the forth login forces the user to complete the process and
    writes the final registry key that it is complete.
    Like I say I have this all working correctly if I manually have the user run it. I just don't know why Exit is not being recognized when in the users login script processing of the script. I appreciate your reply and any direction you can point me to.

  • Launching NAL from login script AND startup?

    We are about to upgrade from Zen 3.2 to 7. Part of the process involves ensuring the clients launch NAL with a /NOUPDATE switch. (The NOUPDATE switch must be used to ensure that Zen 7 agents are not accidentally back-rev'ed during the upgrade process.) We currently have deployed the script-based method to launch the 3.2 NAL, but still have many desktops that either launch with a batch file or through the Startup group. (Too many to visit on a timely basis)
    I want to know if subsequent launches of NAL.exe WITHOUT the /NOUPDATE switch override the settings of the original one launched in the script. If launching NAL from Startup without switches doesn't override the one in the login script, I won't need to worry about hitting each of these machines before we begin deploying the Zen 7 Agent.
    Does anyone know if NAL refuses to launch again if it already is detected in memory?

    Off the top of my head, I dont know the answers to your question, but
    when I went through this process I just moved and renamed all the NAL
    related files from the PUBLIC dirs so the ZEN7 Agent could not become
    back dated.
    The existing 3.2 agents kept running from the local PC like always and
    after the PC was upgraded to ZFD7 there were no files in PUBLIC from
    which the PC could accidentally get old files.
    Ron Granberg wrote:
    > We are about to upgrade from Zen 3.2 to 7. Part of the process involves
    > ensuring the clients launch NAL with a /NOUPDATE switch. (The
    > NOUPDATE switch must be used to ensure that Zen 7 agents are not
    > accidentally back-rev'ed during the upgrade process.) We currently have
    > deployed the script-based method to launch the 3.2 NAL, but still have
    > many desktops that either launch with a batch file or through the
    > Startup group. (Too many to visit on a timely basis)
    >
    > I want to know if subsequent launches of NAL.exe WITHOUT the /NOUPDATE
    > switch override the settings of the original one launched in the
    > script. If launching NAL from Startup without switches doesn't override
    > the one in the login script, I won't need to worry about hitting each of
    > these machines before we begin deploying the Zen 7 Agent.
    >
    > Does anyone know if NAL refuses to launch again if it already is
    > detected in memory?
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCN

  • How do I connect my Centro to the Internet via bluetooth over PC's Internet? Where is Centro's PPP Connection Type? How do I setup Login Script for bluetooth connection?

    I am trying to set up bluetooth on the Centro to connect to the internet via my PC's internet.
    HotSync over bluetooth works successfully.
    Computer specs: Toshiba P205-S6277; Bluetooth Stack v5.10.04 (currently using); Bluetooth Monitor v3.01 (to use Vista's built-in bluetooth)
    I think I have narrowed my problem down to 3 things.
    (1) Finding Network Access properties (to allow connected devices to access the internet)
    (2) Finding Centro's Network Connection Type: PPP
    (3) Finding the correct Login Script to use
    for (1) I think I've looked everywhere; found nothing on Network Access. 
    Checked control panel: only Bluetooth Local COM
    Right-clicked bluetooth icon > Settings: File transfer, PAN Networking, PAN DHCP server, AV controls. Other bluetooth settings are for file transfer or object push. I don't see anything like this.
    I'm stumped on (2). It seems as if palm removed this option under Centro's Advanced network settings .
    Nearly all the forums that I read says to choose Connection Type: PPP.
    (3) Found 2 scripts that seemed would work. I don't know how it exactly works but it sounds workable.
    First script:
    Send: CLIENT
    Send: CLIENT
    Wait for: CLIENTSERVER
    End:
    Script 1 Connect Log:
    =======================================
    Connect Log
    S: client
    S: client
    R:
    Err: 0x121F   <<<netErrUserCancel b/c I canceled it. 
    Not connected
    ========================================
    I canceled it because the process would stay on "Signing In" then it automatically "Canceled" itself.
    Second script:
    Send CR:
    Delay: 1
    Send: CLIENT
    Wait For: CLIENTSERVER
    End
    **UPDATE** I found on this forum (Reply # 3689) that the script is needed only if you are using Palm OS 4 or under. Centro uses Palm OS 5.49121. Can anyone support this?
    Even without the script it has problems "Signing In".
    I'm currently reading this site and trying out its decribed methods. I will update this thread when I get the results.
    I'm using the Centro. And If anyone's been able to successfully connect to the internet on the Centro via a bluetooth connection to the PC WITHOUT 3rd party applications, please share.  If not, please share any ideas.
    Thanks!
    -Eric
    Post relates to: Centro (AT&T)
    Message Edited by naisanza on 01-01-2009 02:26 PM

    I've been going at this for days, and have probably exhausted all the proposed solutions on the first 3 pages of various google searches. I'm getting the feeling that Vista users are pretty much SOL for the time being.
    For the record, I just tried out a few of the solutions (mRouter & SoftickPPP) on XP and they work perfectly.
    Post relates to: Centro (Verizon)
    Message Edited by Cogwheel on 02-13-2009 09:45 AM

  • [SOLVED (sort of)]LXDE crashes from login manager, not from startx

    Recently moved to arch and wanted to try out LXDE... Well, no luck so far.
    I am able to start lxde with startx by commenting out everything else in xinitrc and leaving only this line :
    exec ck-launch-session startlxde
    As I expected it should, gdm picked up LXDE and added it to it's menu after I installed it. When trying to load though, it crashes and brings me back to gdm. I figured it might be a problem with gdm, so I installed slim and used the very same line that worked with startx, only to get the same crash that brings me back to slim...
    lxde)
    exec ck-launch-session startlxde
    Has anyone seen this problem before? I've digged around the internets and could not find an obvious solution.
    [SOLUTION]
    Removing pcmanfm got rid of the bug that was causing the crash. Apparently it's all that can be done until the bug is fixed upstream.
    Last edited by bolshevik (2011-04-29 01:19:20)

    Okay.
    /var/log/Xorg.0.log, after a failed login attempt with gdm. Sorry I have to bore you with the whole thing, I have no clue which part may or may not be relevant to my problem. I see no obvious errors.
    [ 8754.726]
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [ 8754.726] X Protocol Version 11, Revision 0
    [ 8754.726] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 8754.726] Current Operating System: Linux arch 2.6.38-ARCH #1 SMP PREEMPT Fri Apr 22 20:29:33 CEST 2011 x86_64
    [ 8754.726] Kernel command line: root=/dev/sda1 ro
    [ 8754.726] Build Date: 16 April 2011 12:02:01PM
    [ 8754.726]
    [ 8754.726] Current version of pixman: 0.20.2
    [ 8754.726] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 8754.726] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 8754.726] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 27 18:07:01 2011
    [ 8754.727] (==) Using config file: "/etc/X11/xorg.conf"
    [ 8754.727] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 8754.727] (==) ServerLayout "Layout0"
    [ 8754.727] (**) |-->Screen "Screen0" (0)
    [ 8754.727] (**) | |-->Monitor "Monitor0"
    [ 8754.727] (**) | |-->Device "Device0"
    [ 8754.727] (**) |-->Input Device "Keyboard0"
    [ 8754.727] (**) |-->Input Device "Mouse0"
    [ 8754.727] (==) Automatically adding devices
    [ 8754.727] (==) Automatically enabling devices
    [ 8754.727] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 8754.727] Entry deleted from font path.
    [ 8754.727] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 8754.727] Entry deleted from font path.
    [ 8754.727] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 8754.727] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 8754.727] Entry deleted from font path.
    [ 8754.727] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 8754.727] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 8754.727] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 8754.727] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 8754.727] (WW) Disabling Keyboard0
    [ 8754.727] (WW) Disabling Mouse0
    [ 8754.727] (II) Loader magic: 0x7d6fa0
    [ 8754.727] (II) Module ABI versions:
    [ 8754.727] X.Org ANSI C Emulation: 0.4
    [ 8754.728] X.Org Video Driver: 10.0
    [ 8754.728] X.Org XInput driver : 12.2
    [ 8754.728] X.Org Server Extension : 5.0
    [ 8754.729] (--) PCI:*(0:2:0:0) 10de:0845:103c:360a rev 162, Mem @ 0xc1000000/16777216, 0xd0000000/268435456, 0xc4000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/131072
    [ 8754.729] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 8754.729] (II) LoadModule: "extmod"
    [ 8754.729] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 8754.730] (II) Module extmod: vendor="X.Org Foundation"
    [ 8754.730] compiled for 1.10.1, module version = 1.0.0
    [ 8754.730] Module class: X.Org Server Extension
    [ 8754.730] ABI class: X.Org Server Extension, version 5.0
    [ 8754.730] (II) Loading extension MIT-SCREEN-SAVER
    [ 8754.730] (II) Loading extension XFree86-VidModeExtension
    [ 8754.730] (II) Loading extension XFree86-DGA
    [ 8754.730] (II) Loading extension DPMS
    [ 8754.730] (II) Loading extension XVideo
    [ 8754.730] (II) Loading extension XVideo-MotionCompensation
    [ 8754.730] (II) Loading extension X-Resource
    [ 8754.730] (II) LoadModule: "dbe"
    [ 8754.730] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 8754.730] (II) Module dbe: vendor="X.Org Foundation"
    [ 8754.730] compiled for 1.10.1, module version = 1.0.0
    [ 8754.730] Module class: X.Org Server Extension
    [ 8754.730] ABI class: X.Org Server Extension, version 5.0
    [ 8754.730] (II) Loading extension DOUBLE-BUFFER
    [ 8754.730] (II) LoadModule: "glx"
    [ 8754.730] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 8754.745] (II) Module glx: vendor="NVIDIA Corporation"
    [ 8754.745] compiled for 4.0.2, module version = 1.0.0
    [ 8754.745] Module class: X.Org Server Extension
    [ 8754.745] (II) NVIDIA GLX Module 173.14.30 Sat Apr 16 22:45:09 PDT 2011
    [ 8754.745] (II) Loading extension GLX
    [ 8754.745] (II) LoadModule: "record"
    [ 8754.745] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 8754.745] (II) Module record: vendor="X.Org Foundation"
    [ 8754.745] compiled for 1.10.1, module version = 1.13.0
    [ 8754.745] Module class: X.Org Server Extension
    [ 8754.745] ABI class: X.Org Server Extension, version 5.0
    [ 8754.745] (II) Loading extension RECORD
    [ 8754.745] (II) LoadModule: "dri"
    [ 8754.746] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 8754.746] (II) Module dri: vendor="X.Org Foundation"
    [ 8754.746] compiled for 1.10.1, module version = 1.0.0
    [ 8754.746] ABI class: X.Org Server Extension, version 5.0
    [ 8754.746] (II) Loading extension XFree86-DRI
    [ 8754.746] (II) LoadModule: "dri2"
    [ 8754.746] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 8754.746] (II) Module dri2: vendor="X.Org Foundation"
    [ 8754.746] compiled for 1.10.1, module version = 1.2.0
    [ 8754.746] ABI class: X.Org Server Extension, version 5.0
    [ 8754.746] (II) Loading extension DRI2
    [ 8754.746] (II) LoadModule: "nvidia"
    [ 8754.746] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 8754.747] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 8754.747] compiled for 4.0.2, module version = 1.0.0
    [ 8754.747] Module class: X.Org Video Driver
    [ 8754.747] (II) NVIDIA dlloader X Driver 173.14.30 Sat Apr 16 22:18:29 PDT 2011
    [ 8754.747] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 8754.747] (++) using VT number 8
    [ 8754.753] (II) Loading sub module "fb"
    [ 8754.753] (II) LoadModule: "fb"
    [ 8754.753] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 8754.754] (II) Module fb: vendor="X.Org Foundation"
    [ 8754.754] compiled for 1.10.1, module version = 1.0.0
    [ 8754.754] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 8754.754] (II) Loading sub module "wfb"
    [ 8754.754] (II) LoadModule: "wfb"
    [ 8754.754] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 8754.755] (II) Module wfb: vendor="X.Org Foundation"
    [ 8754.755] compiled for 1.10.1, module version = 1.0.0
    [ 8754.755] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 8754.755] (II) Loading sub module "ramdac"
    [ 8754.755] (II) LoadModule: "ramdac"
    [ 8754.755] (II) Module "ramdac" already built-in
    [ 8754.755] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 8754.755] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 8754.755] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 8754.755] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 8754.755] (==) NVIDIA(0): RGB weight 888
    [ 8754.755] (==) NVIDIA(0): Default visual is TrueColor
    [ 8754.755] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 8754.755] (**) NVIDIA(0): Enabling RENDER acceleration
    [ 8754.756] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    [ 8754.756] (II) NVIDIA(0): enabled.
    [ 8755.209] (II) NVIDIA(0): NVIDIA GPU GeForce 8200M G (C77) at PCI:2:0:0 (GPU-0)
    [ 8755.209] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 8755.209] (--) NVIDIA(0): VideoBIOS: 62.77.2f.00.07
    [ 8755.209] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 8755.209] (--) NVIDIA(0): Connected display device(s) on GeForce 8200M G at PCI:2:0:0:
    [ 8755.209] (--) NVIDIA(0): LPL LP154WX4-TLCB (DFP-0)
    [ 8755.209] (--) NVIDIA(0): LPL LP154WX4-TLCB (DFP-0): 330.0 MHz maximum pixel clock
    [ 8755.209] (--) NVIDIA(0): LPL LP154WX4-TLCB (DFP-0): Internal Dual Link LVDS
    [ 8755.215] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 8755.215] (==) NVIDIA(0):
    [ 8755.215] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 8755.215] (==) NVIDIA(0): will be used as the requested mode.
    [ 8755.215] (==) NVIDIA(0):
    [ 8755.216] (II) NVIDIA(0): Validated modes:
    [ 8755.216] (II) NVIDIA(0): "nvidia-auto-select"
    [ 8755.216] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 800
    [ 8756.282] (--) NVIDIA(0): DPI set to (98, 96); computed from "UseEdidDpi" X config
    [ 8756.282] (--) NVIDIA(0): option
    [ 8756.282] (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    [ 8756.282] (--) Depth 24 pixmap format is 32 bpp
    [ 8756.285] (II) NVIDIA(0): Initialized GPU GART.
    [ 8756.298] (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    [ 8756.298] (II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
    [ 8756.298] (II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
    [ 8756.298] (II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
    [ 8756.299] (II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
    [ 8756.299] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 8756.299] (II) NVIDIA(0): Config Options in the README.
    [ 8756.302] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 8756.761] (II) Loading extension NV-GLX
    [ 8756.856] (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    [ 8756.858] (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    [ 8756.858] (==) NVIDIA(0): Backing store disabled
    [ 8756.858] (==) NVIDIA(0): Silken mouse enabled
    [ 8756.871] (**) NVIDIA(0): DPMS enabled
    [ 8756.871] (II) Loading extension NV-CONTROL
    [ 8756.873] (==) RandR enabled
    [ 8756.873] (II) Initializing built-in extension Generic Event Extension
    [ 8756.873] (II) Initializing built-in extension SHAPE
    [ 8756.873] (II) Initializing built-in extension MIT-SHM
    [ 8756.873] (II) Initializing built-in extension XInputExtension
    [ 8756.873] (II) Initializing built-in extension XTEST
    [ 8756.873] (II) Initializing built-in extension BIG-REQUESTS
    [ 8756.873] (II) Initializing built-in extension SYNC
    [ 8756.873] (II) Initializing built-in extension XKEYBOARD
    [ 8756.873] (II) Initializing built-in extension XC-MISC
    [ 8756.873] (II) Initializing built-in extension SECURITY
    [ 8756.873] (II) Initializing built-in extension XINERAMA
    [ 8756.873] (II) Initializing built-in extension XFIXES
    [ 8756.873] (II) Initializing built-in extension RENDER
    [ 8756.873] (II) Initializing built-in extension RANDR
    [ 8756.873] (II) Initializing built-in extension COMPOSITE
    [ 8756.873] (II) Initializing built-in extension DAMAGE
    [ 8756.879] (II) Initializing extension GLX
    [ 8757.038] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 8757.038] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 8757.038] (II) LoadModule: "evdev"
    [ 8757.038] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.039] (II) Module evdev: vendor="X.Org Foundation"
    [ 8757.039] compiled for 1.10.0, module version = 2.6.0
    [ 8757.039] Module class: X.Org XInput Driver
    [ 8757.039] ABI class: X.Org XInput driver, version 12.2
    [ 8757.039] (II) Using input driver 'evdev' for 'Power Button'
    [ 8757.039] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.039] (**) Power Button: always reports core events
    [ 8757.039] (**) Power Button: Device: "/dev/input/event5"
    [ 8757.056] (--) Power Button: Found keys
    [ 8757.056] (II) Power Button: Configuring as keyboard
    [ 8757.056] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
    [ 8757.056] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 8757.056] (**) Option "xkb_rules" "evdev"
    [ 8757.056] (**) Option "xkb_model" "evdev"
    [ 8757.056] (**) Option "xkb_layout" "ca"
    [ 8757.156] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
    [ 8757.157] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 8757.157] (II) Using input driver 'evdev' for 'Video Bus'
    [ 8757.157] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.157] (**) Video Bus: always reports core events
    [ 8757.157] (**) Video Bus: Device: "/dev/input/event6"
    [ 8757.169] (--) Video Bus: Found keys
    [ 8757.169] (II) Video Bus: Configuring as keyboard
    [ 8757.169] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:00/input/input6/event6"
    [ 8757.169] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 8757.169] (**) Option "xkb_rules" "evdev"
    [ 8757.169] (**) Option "xkb_model" "evdev"
    [ 8757.169] (**) Option "xkb_layout" "ca"
    [ 8757.197] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 8757.197] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 8757.197] (II) Using input driver 'evdev' for 'Power Button'
    [ 8757.197] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.197] (**) Power Button: always reports core events
    [ 8757.197] (**) Power Button: Device: "/dev/input/event4"
    [ 8757.209] (--) Power Button: Found keys
    [ 8757.209] (II) Power Button: Configuring as keyboard
    [ 8757.209] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 8757.209] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 8757.209] (**) Option "xkb_rules" "evdev"
    [ 8757.209] (**) Option "xkb_model" "evdev"
    [ 8757.209] (**) Option "xkb_layout" "ca"
    [ 8757.210] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 8757.210] (II) No input driver/identifier specified (ignoring)
    [ 8757.211] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 8757.211] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 8757.211] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 8757.211] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.211] (**) Sleep Button: always reports core events
    [ 8757.211] (**) Sleep Button: Device: "/dev/input/event3"
    [ 8757.229] (--) Sleep Button: Found keys
    [ 8757.229] (II) Sleep Button: Configuring as keyboard
    [ 8757.229] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 8757.229] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 8757.229] (**) Option "xkb_rules" "evdev"
    [ 8757.229] (**) Option "xkb_model" "evdev"
    [ 8757.229] (**) Option "xkb_layout" "ca"
    [ 8757.235] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 8757.235] (II) No input driver/identifier specified (ignoring)
    [ 8757.237] (II) config/udev: Adding input device HDA NVidia Mic (/dev/input/event10)
    [ 8757.237] (II) No input driver/identifier specified (ignoring)
    [ 8757.237] (II) config/udev: Adding input device HDA NVidia Mic (/dev/input/event11)
    [ 8757.237] (II) No input driver/identifier specified (ignoring)
    [ 8757.238] (II) config/udev: Adding input device HDA NVidia Headphone (/dev/input/event12)
    [ 8757.238] (II) No input driver/identifier specified (ignoring)
    [ 8757.248] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 8757.248] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 8757.248] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 8757.248] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.248] (**) AT Translated Set 2 keyboard: always reports core events
    [ 8757.248] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 8757.259] (--) AT Translated Set 2 keyboard: Found keys
    [ 8757.259] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 8757.259] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 8757.259] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 8757.259] (**) Option "xkb_rules" "evdev"
    [ 8757.259] (**) Option "xkb_model" "evdev"
    [ 8757.259] (**) Option "xkb_layout" "ca"
    [ 8757.261] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 8757.261] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 8757.261] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 8757.261] (II) LoadModule: "synaptics"
    [ 8757.261] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 8757.261] (II) Module synaptics: vendor="X.Org Foundation"
    [ 8757.261] compiled for 1.10.0, module version = 1.4.0
    [ 8757.261] Module class: X.Org XInput Driver
    [ 8757.261] ABI class: X.Org XInput driver, version 12.2
    [ 8757.261] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 8757.261] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 8757.261] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 8757.261] (**) Option "Device" "/dev/input/event9"
    [ 8757.353] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5592
    [ 8757.353] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4916
    [ 8757.353] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 8757.353] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 8757.353] (--) SynPS/2 Synaptics TouchPad: buttons: left right
    [ 8757.353] (**) Option "TapButton1" "1"
    [ 8757.353] (**) Option "TapButton2" "2"
    [ 8757.353] (**) Option "TapButton3" "3"
    [ 8757.459] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 8757.459] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 8757.512] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input9/event9"
    [ 8757.512] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 8757.513] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 8757.592] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 8757.593] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 8757.593] (II) No input driver/identifier specified (ignoring)
    [ 8757.594] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
    [ 8757.594] (II) No input driver/identifier specified (ignoring)
    [ 8757.597] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event7)
    [ 8757.597] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 8757.597] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 8757.597] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 8757.597] (**) HP WMI hotkeys: always reports core events
    [ 8757.597] (**) HP WMI hotkeys: Device: "/dev/input/event7"
    [ 8757.619] (--) HP WMI hotkeys: Found keys
    [ 8757.619] (II) HP WMI hotkeys: Configuring as keyboard
    [ 8757.619] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event7"
    [ 8757.619] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD)
    [ 8757.619] (**) Option "xkb_rules" "evdev"
    [ 8757.619] (**) Option "xkb_model" "evdev"
    [ 8757.619] (**) Option "xkb_layout" "ca"
    There seems to be a ton of errors in gdm though (/var/log/gdm/0-greeter.log) :
    gnome-session[10806]: atk-bridge-WARNING: AT_SPI_REGISTRY was not started at session startup.
    gnome-session[10806]: atk-bridge-WARNING: IOR not set.
    gnome-session[10806]: atk-bridge-WARNING: Could not locate registry
    ** (gnome-session:10806): DEBUG: GsmManager: RegisterClient 10bf4e0fd7aa8e03e130394202493309500000108060007
    ** (gnome-session:10806): DEBUG: GsmManager: Adding new client 10bf4e0fd7aa8e03e130394202493309500000108060007 to session
    ** (gnome-session:10806): DEBUG: uid = 120
    ** (gnome-session:10806): DEBUG: pid = 10814
    ** (gnome-session:10806): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client1 to store
    ** (gnome-session:10806): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase INITIALIZATION
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase WINDOW_MANAGER
    ** (gnome-session:10806): DEBUG: Starting app: /org/gnome/SessionManager/App9
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: starting metacity.desktop: command=metacity startup-id=10bf4e0fd7aa8e03e130394202493389400000108060008
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: started pid:10829
    ** (<unknown>:10814): DEBUG: Client registered with session manager: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmXsmpServer: accept_ice_connection()
    ** (gnome-session:10806): DEBUG: GsmXsmpServer: auth_ice_connection()
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Setting up new connection
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: New client '0x1e32980 []'
    ** (gnome-session:10806): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client2 to store
    ** (gnome-session:10806): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Initializing client 0x1e32980 []
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Client '0x1e32980 []' received RegisterClient(10bf4e0fd7aa8e03e130394202493389400000108060008)
    ** (gnome-session:10806): DEBUG: GsmManager: Adding new client 10bf4e0fd7aa8e03e130394202493389400000108060008 to session
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase WINDOW_MANAGER
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase PANEL
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase PANEL
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase DESKTOP
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase DESKTOP
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase APPLICATION
    ** (gnome-session:10806): DEBUG: Starting app: /org/gnome/SessionManager/App1
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: starting gnome-power-manager.desktop: command=gnome-power-manager startup-id=10bf4e0fd7aa8e03e130394202492889700000108060000
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: started pid:10831
    ** (gnome-session:10806): DEBUG: Starting app: /org/gnome/SessionManager/App3
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: starting polkit-gnome-authentication-agent-1.desktop: command=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 startup-id=10bf4e0fd7aa8e03e130394202492965300000108060002
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: started pid:10832
    ** (gnome-session:10806): DEBUG: Starting app: /org/gnome/SessionManager/App4
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: starting gdm-simple-greeter.desktop: command=/usr/lib/gdm/gdm-simple-greeter startup-id=10bf4e0fd7aa8e03e130394202492997600000108060003
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: started pid:10833
    ** (gnome-session:10806): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App5
    ** (gnome-session:10806): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App6
    ** (gnome-session:10806): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App7
    ** (gnome-session:10806): DEBUG: GsmManager: Skipping disabled app: /org/gnome/SessionManager/App10
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase APPLICATION
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase RUNNING
    ** (gnome-session:10806): DEBUG: GsmPresence: adding idle watch
    ** (gnome-session:10806): DEBUG: GSIdleMonitor: creating new alarm for positive transition wait=300000
    ** (gnome-session:10806): DEBUG: GSIdleMonitor: creating new alarm for negative transition wait=300000
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Sending RegisterClientReply to '0x1e32980 [10bf4e0fd7aa8e03e130394202493389400000108060008]'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Set properties from client '0x1e32980 [10bf4e0fd7aa8e03e130394202493389400000108060008]'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Program = 'metacity'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: UserID = 'gdm'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: RestartStyleHint = 2
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: ProcessID = '10829'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: CurrentDirectory = '/var/lib/gdm'
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: _GSM_Priority = 20
    ** (process:10833): DEBUG: Greeter session pid=10833 display=:0 xauthority=/var/run/gdm/auth-for-gdm-mXmtLi/database
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    ** (gnome-session:10806): DEBUG: GsmManager: RegisterClient 10bf4e0fd7aa8e03e130394202492889700000108060000
    ** (gnome-session:10806): DEBUG: GsmManager: Adding new client 10bf4e0fd7aa8e03e130394202492889700000108060000 to session
    ** (gnome-session:10806): DEBUG: uid = 120
    ** (gnome-session:10806): DEBUG: pid = 10831
    ** (gnome-session:10806): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client3 to store
    ** (gnome-session:10806): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 1: signum=4 (nil)
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 4 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 2: signum=7 (nil)
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 7 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 3: signum=11 (nil)
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 11 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 4: signum=6 (nil)
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 6 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 5: signum=5 (nil)
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 5 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 6: signum=15 0x410be0
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 15 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 7: signum=2 0x410be0
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 2 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 8: signum=8 0x410be0
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 8 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 9: signum=1 0x410be0
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 1 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Adding handler 10: signum=10 0x410be0
    ** (gdm-simple-greeter:10833): DEBUG: GdmSignalHandler: Registering for 10 signals
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: connecting to address: unix:abstract=/tmp/gdm-greeter-pFeDdcBa,guid=f12d53b28431a4e16e4205c300002235
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling GetDisplayId
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Creating proxy for /org/gnome/DisplayManager/Display1
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gdm-simple-greeter:10833): DEBUG: "/usr/share/xsessions/openbox-kde.desktop" is hidden or contains non-executable TryExec program
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterPanel: activating default layout
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: Starting a login window local:1
    (gdm-simple-greeter:10833): Gtk-WARNING **: gtkwidget.c:5676: widget not within a GtkWindow
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: Got greeter logo 'computer'
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: no rows selected
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection cleared
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: font height 17; using icon size 51
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: font height 17; using icon size 51
    ** (gdm-simple-greeter:10833): WARNING **: Unable to read from file /etc/arch-release
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: banner message disabled
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    ** (gnome-session:10806): DEBUG: GsmManager: RegisterClient 10bf4e0fd7aa8e03e130394202492997600000108060003
    ** (gnome-session:10806): DEBUG: GsmManager: Adding new client 10bf4e0fd7aa8e03e130394202492997600000108060003 to session
    ** (gnome-session:10806): DEBUG: uid = 120
    ** (gnome-session:10806): DEBUG: pid = 10833
    ** (gnome-session:10806): DEBUG: GsmStore: Adding object id /org/gnome/SessionManager/Client4 to store
    ** (gnome-session:10806): DEBUG: GsmManager: Client added: /org/gnome/SessionManager/Client4
    ** (gdm-simple-greeter:10833): DEBUG: Client registered with session manager: /org/gnome/SessionManager/Client4
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Ready
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Ready
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: Ready
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x160002b (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating column visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: updating other user visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: queuing update separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: Setting users to include:
    ** (gdm-simple-greeter:10833): DEBUG: Not adding NULL user
    ** (gdm-simple-greeter:10833): DEBUG: Setting users to exclude:
    ** (gdm-simple-greeter:10833): DEBUG: Adding value bin
    ** (gdm-simple-greeter:10833): DEBUG: Adding value root
    ** (gdm-simple-greeter:10833): DEBUG: Adding value daemon
    ** (gdm-simple-greeter:10833): DEBUG: Adding value adm
    ** (gdm-simple-greeter:10833): DEBUG: Adding value lp
    ** (gdm-simple-greeter:10833): DEBUG: Adding value sync
    ** (gdm-simple-greeter:10833): DEBUG: Adding value shutdown
    ** (gdm-simple-greeter:10833): DEBUG: Adding value halt
    ** (gdm-simple-greeter:10833): DEBUG: Adding value mail
    ** (gdm-simple-greeter:10833): DEBUG: Adding value news
    ** (gdm-simple-greeter:10833): DEBUG: Adding value uucp
    ** (gdm-simple-greeter:10833): DEBUG: Adding value operator
    ** (gdm-simple-greeter:10833): DEBUG: Adding value nobody
    ** (gdm-simple-greeter:10833): DEBUG: Adding value nobody4
    ** (gdm-simple-greeter:10833): DEBUG: Adding value noaccess
    ** (gdm-simple-greeter:10833): DEBUG: Adding value postgres
    ** (gdm-simple-greeter:10833): DEBUG: Adding value pvm
    ** (gdm-simple-greeter:10833): DEBUG: Adding value rpm
    ** (gdm-simple-greeter:10833): DEBUG: Adding value nfsnobody
    ** (gdm-simple-greeter:10833): DEBUG: Adding value pcap
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: Unable to get visible range
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: grabbing focus
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: Chooser visibility changed
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: banner message disabled
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: calling 'ListCachedUsers'
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: ListCachedUsers failed: The name org.freedesktop.Accounts was not provided by any .service files
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: no seat proxy; can't load sessions
    ** (gdm-simple-greeter:10833): WARNING **: Unable to load CK history: no seat-id found
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: scheduling a passwd file update
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: Found current seat: /org/freedesktop/ConsoleKit/Seat1
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: running 'ck-history --frequent --since='2011-02-26T22:07:06.894743Z' --seat='Seat1' --session-type='''
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: reloading passwd file worker
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: include_all is TRUE
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: done reloading passwd file
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: Monitoring local users
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: Found uid of session '/org/freedesktop/ConsoleKit/Session5': 120
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: Found x11 display of session '/org/freedesktop/ConsoleKit/Session5': :0
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: excluding user 'gdm'
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: history output: bolshevi 125
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: history output: root 2
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserManager: excluding user 'root'
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: Users loaded
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: queuing update separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: added 1 items
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: users loaded
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: banner message disabled
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: loaded=1 num_items=2
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: Unable to get visible range
    (gdm-simple-greeter:10833): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width 349 and height -1
    (gdm-simple-greeter:10833): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width 349 and height -1
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating column visibility
    ** (gdm-simple-greeter:10833): DEBUG: Updating for bolshevik
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: Loading item for id=bolshevik
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: font height 17; using icon size 51
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: User added name:bolshevik logged-in:0 pixbuf:0x1ef7450
    ** (gdm-simple-greeter:10833): DEBUG: Updating for __other
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: Loading item for id=__other
    ** (gdm-simple-greeter:10833): DEBUG: GdmUserChooserWidget: updating other user visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection change to list path '0'
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating column visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection change to list path '0'
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: row activated '0'
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: will emit activated after resize
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: clearing selection
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: no rows selected
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection cleared
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: shrink complete
    ** (gdm-simple-greeter:10833): DEBUG: setting inactive items visible
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: no rows selected
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection cleared
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: Setting inactive items visible: false
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: no rows selected
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: selection cleared
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: queuing update separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: user chosen 'bolshevik'
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling SelectUser
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling BeginVerificationForUser
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: loaded=1 num_items=2
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultLanguageNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultLanguageNameChanged (en_US.UTF-8)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default language name changed: en_US.UTF-8
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultLayoutNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultLayoutNameChanged (ca)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default layout name changed: ca
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterPanel: activating layout: ca
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultSessionNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultSessionNameChanged (gnome)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default session name changed: gnome
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultSessionNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultSessionNameChanged (LXDE)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default session name changed: LXDE
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultLanguageNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultLanguageNameChanged (en_US.utf8)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default language name changed: en_US.utf8
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=SecretInfoQuery
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received SecretInfoQuery (Password: )
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: Secret info query: Password:
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: loaded=1 num_items=2
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x160002b (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating column visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmChooserWidget: updating separator visibility
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling SelectSession
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling AnswerQuery
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultSessionNameChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Received DefaultSessionNameChanged (gnome)
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: default session name changed: gnome
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=UserAuthorized
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: user authorized
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: user now authorized
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterLoginWindow: starting session
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterClient: Calling StartSessionWhenReady
    ** (gnome-session:10806): DEBUG: GdmSignalHandler: handling signal 15
    ** (gnome-session:10806): DEBUG: GdmSignalHandler: Found 1 callbacks
    ** (gnome-session:10806): DEBUG: GdmSignalHandler: running 15 handler: 0x418f10
    ** (gnome-session:10806): DEBUG: Got callback for signal 15
    ** (gnome-session:10806): DEBUG: GsmManager: Logout called
    ** (gnome-session:10806): DEBUG: GsmManager: requesting logout
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase RUNNING
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase QUERY_END_SESSION
    ** (gnome-session:10806): DEBUG: GsmManager: Client /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: Client /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmManager: Client /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmManager: Client /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmManager: sending query-end-session to clients forceful:1
    ** (gnome-session:10806): DEBUG: GsmDBusClient: sending QueryEndSession signal to :1.11
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to query clients: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to query clients: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmDBusClient: sending QueryEndSession signal to :1.13
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to query clients: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmDBusClient: sending QueryEndSession signal to :1.19
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to query clients: /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: Caught signal 15, shutting down normally.
    ** (gnome-session:10806): DEBUG: GdmSignalHandler: Done handling signals
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Client '0x1e32980 [metacity 10bf4e0fd7aa8e03e130394202493389400000108060008]' received SaveYourselfDone(success = True)
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmXsmpServer: sms_error_handler (0x1ef4380, FALSE, 3, 9, 32771, 0)
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client3 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client3 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: query end session complete
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase QUERY_END_SESSION
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase END_SESSION
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Client '0x1e32980 [metacity 10bf4e0fd7aa8e03e130394202493389400000108060008]' received SaveYourselfDone(success = True)
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmXsmpServer: sms_error_handler (0x1ef4380, FALSE, 3, c, 32771, 0)
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client3 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client3 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/gnome/SessionManager/Client4 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    ** (gnome-session:10806): DEBUG: GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase END_SESSION
    (gnome-power-manager:10831): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-power-manager:10831): atk-bridge-WARNING **: IOR not set.
    (gnome-power-manager:10831): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-power-manager:10831): atk-bridge-WARNING **: IOR not set.
    ** (gnome-session:10806): DEBUG: GsmManager: starting phase EXIT
    ** (gnome-session:10806): DEBUG: GsmManager: stopped client: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: xsmp_stop ('0x1e32980 [metacity 10bf4e0fd7aa8e03e130394202493389400000108060008]')
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    ** (gnome-session:10806): DEBUG: GsmManager: stopped client: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmManager: stopped client: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmManager: stopped client: /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: Client '0x1e32980 [metacity 10bf4e0fd7aa8e03e130394202493389400000108060008]' received CloseConnection
    ** (gnome-session:10806): DEBUG: GsmManager: disconnect client
    ** (gnome-session:10806): DEBUG: GsmManager: disconnect client: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmManager: in shutdown, not restarting application
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e32980
    ** (gnome-session:10806): DEBUG: GsmManager: Client removed: /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmClient: disposing /org/gnome/SessionManager/Client2
    ** (gnome-session:10806): DEBUG: GsmXSMPClient: xsmp_finalize (0x1e32980 [metacity 10bf4e0fd7aa8e03e130394202493389400000108060008])
    ** (gnome-session:10806): DEBUG: GsmManager: disconnect client: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: in shutdown, not restarting application
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e1e8a0
    ** (gnome-session:10806): DEBUG: GsmClient: disposing /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmManager: Client removed: /org/gnome/SessionManager/Client1
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: (pid:10814) done (status:0)
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=(null) interface=(null) method=(null)
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=(null) interface=(null) method=(null)
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: (pid:10831) done (status:0)
    ** (gnome-session:10806): DEBUG: GsmManager: disconnect client: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmManager: in shutdown, not restarting application
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e1e920
    ** (gnome-session:10806): DEBUG: GsmClient: disposing /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmManager: Client removed: /org/gnome/SessionManager/Client3
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gdm-simple-greeter:10833): DEBUG: GdmGreeterSession: Disposing greeter_session
    ** (gdm-simple-greeter:10833): WARNING **: Failed to send buffer
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmAutostartApp: (pid:10829) done (status:0)
    ** (gnome-session:10806): DEBUG: GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    ** (gnome-session:10806): DEBUG: GsmManager: disconnect client: /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmManager: in shutdown, not restarting application
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e1e9a0
    ** (gnome-session:10806): DEBUG: GsmClient: disposing /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmManager: Client removed: /org/gnome/SessionManager/Client4
    ** (gnome-session:10806): DEBUG: GsmManager: last client disconnected - exiting
    ** (gnome-session:10806): DEBUG: GsmManager: ending phase EXIT
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    ** (gnome-session:10806): DEBUG: Unreffing manager
    ** (gnome-session:10806): DEBUG: GsmManager: disposing manager
    ** (gnome-session:10806): DEBUG: GsmStore: Clearing object store
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35100
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e351c0
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35280
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35340
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35400
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e354c0
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35580
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35640
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e35700
    ** (gnome-session:10806): DEBUG: GsmStore: Unreffing object: 0x1e88840
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App10
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App9
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App8
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App7
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App6
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App5
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App4
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App3
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App2
    ** (gnome-session:10806): DEBUG: GsmStore: emitting removed for /org/gnome/SessionManager/App1
    ** (gnome-session:10806): DEBUG: GsmStore: Clearing object store
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    ** (gnome-session:10806): DEBUG: GsmStore: Clearing object store
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:10815): atk-bridge-WARNING **: IOR not set.
    (polkit-gnome-authentication-agent-1:10832): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:10832): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:10832): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:10832): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:10832): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    I'm confused by the presentation of these logs. Obviously they contain the accumulated results from many different sessions. Can anyone make sense of this?

  • Windows 7 & bat files & login script

    We have Netware 6.5 SP8.
    How can I run a bat file from the login script so that it will "Run as Administrator" on the Windows 7 workstations?
    Thanks...

    Actually this is more of a MS/Win7 batch processing question.
    In short, you can't assign Admin rights to batch files, only to EXE or
    shortcuts.
    Therefor, try creating a shortcut to the batch file.
    Right-click on the shortcut -> Properties -> Shortcut tab -> Advanced.
    Click "Run as administrator".
    Test locally.
    Now you can try passing that shortcut to the Login Script command
    handler - something like:
    #cmd /c start [shortcut]
    or
    #%<comspec> /c start [shortcut]
    Note, this is all untested and unsupported.
    Good luck
    Wolfgang
    On 28.06.2012 20:46, ncharleyhog wrote:
    >
    > We have Netware 6.5 SP8.
    >
    > How can I run a bat file from the login script so that it will "Run as
    > Administrator" on the Windows 7 workstations?
    >
    > Thanks...
    >
    >

  • ARD Login script doesn't work with similar usernames

    We have a lab of Macs all of which have two accounts whose usernames start with the same characters (rms and rmsadmin). There are times when we would like to be able to log on to all the computers simultaneously as the rmsadmin user with ARD. Because both of the usernames start with the same three characters, when the following commands are sent via ARD, the login process defaults to selecting the student account (rms) and won't log in as rmsadmin:
    osascript -e 'tell application "System Events" to keystroke "rmsadmin"'; \
    osascript -e 'tell application "System Events" to keystroke return'; \
    osascript -e 'tell application "System Events" to delay 0.5'; \
    osascript -e 'tell application "System Events" to keystroke "password"'; \
    osascript -e 'tell application "System Events" to delay 0.5'; \
    osascript -e 'tell application "System Events" to keystroke return'
    Anyone have a solution to this?
    Thanks in advance for taking the time to read this and giving it some thought.
    Peggy
    Xserve PowerPC G4, MacBook Pro, PowerBook, etc.   Mac OS X (10.4.8)  

    Since we do have the same problem but also some additional infos I bump this thread in the hopes of getting some answers.
    The login script does run, but unfortunatly only when I start it manually. It does not run during login.
    The only purpose of the script is to map some drives and it works fine under XP. Where else can I find infos about the problem?
    Our script looks like that:
    On Error resume next  
    Set objADSystemInfo = CreateObject("ADSystemInfo")  
    Set objUser = GetObject("LDAP://" & objADSystemInfo.UserName)  
    strDn = objUser.Get("distinguishedName")  
    strSam = objUser.Get("sAMAccountName")  
    strCn = objUser.Get("cn")
    Set colGroups = objUser.Groups  
    Pos = Instr(strDn,"OU=")  
    if Pos = 0 then  
        strOu = "" 
    else  
        strOu = Mid(strDn,Pos+3,2)  
    end if  
    Set objNetwork = CreateObject("WScript.Network")   
    objNetwork.MapNetworkDrive "h:", "\\frodo\user\" & strSam  
    objNetwork.MapNetworkDrive "j:", "\\frodo\misc" 
    objNetwork.MapNetworkDrive "l:", "\\frodo\department" 
    objNetwork.MapNetworkDrive "q:", "\\frodo\projects" 
    objNetwork.MapNetworkDrive "k:", "\\frodo\department\" & strOu  
    if strOu = "IT" then  
        objNetwork.MapNetworkDrive "x:", "\\frodo\software" 
    end if  
    'WScript.Echo strOut  
    For Each objGroup in colGroups  
        if objGroup.CN = "DreCash" then  
        objNetwork.MapNetworkDrive "p:", "\\gollum\drehcash" 
        end if  
    Next 
    objNetwork.MapNetworkDrive "i:", "\\192.168.1.6\shares" 

Maybe you are looking for