Mobile users - server rebuild - pains

Hi there, for several reasons i have have had to rebuild my server.
Unfortunately my backup of the OD users has gone missing also.
I have had to rebuild the server, i have creadted all users with the same user, pass, UID and GUID. However none of my mobile users with take any setting from the server and continue to operate as if out of the network area.
I have re bound my clients to the server (which incidentally is set up with the exact same dns and names and what not as the old one.)
The Mobile users will just not sync, does anyone have any suggestions as to how i can reintegrate the mobile users?
thanks in advance!

I re-read your post and got that your mobile users already previously existed. Well... the UID/UUIDs of the mobile users would need to match the newly generated ones I reckon. I think what you're trying to do may be more effort than it's worth.
You might try to delete the mobile user accounts on the client machines WITHOUT deleting the home folders. Rename the home folders. Now login to the client machines with the network/mobile accounts... this generates a brand new user account and home on the client. Next log back in as a local admin on the client and manually delete the brand new home and rename the old home back to the correct name. Reassign ownership... which will assign the correct UID/UUIDs to the contents. Hey-presto... in theory that should be all it should take.

Similar Messages

  • OS X Server 4.0.3 Profile Manager Settings for Mobile Users problems

    OS X Yosemite 10.10.2 with Server 4.0.3
    We are using Profile Manager to control Settings for Mobile Users, and give homeSync to the users. Our problem is that the exclude / Skip items (Items matching any of the following will not sync" This setting is not working an example. I have put this folder to Skip Items ~/Downloads but the home Sync still Syncing items in the Downloads folder.
    I have this problem on all the 3 users/machines on that server. Every client is using os x 10.10.1 og 10.10.2 I have check that the profile from the server is on the client.
    Has any a solution to that?
    Regards
    Brian

    I have no solution but have experienced failing sync settings (quite often) in both 10.6 Server and 10.9 + Server 3 (upgraded from 10.6 Server) in the same way as you described, it syncs too much. We have given up on synched home folders and will cut them and use other backup methods since we’re not so dependant on switching between different devices. Our users usually have one computer, one iPhone, one iPad and stay with those until it’s time to exchange them.

  • ??  installing small network/mobile user network --mini as server- wireless

    Hello,
    Could someone point me to information regarding setting up a small wireless configuration, where each user node (probably mac laptops) can support multiple mobile users. I would like to use a headless mini as a file server ... again connected wireless,... and then run 3-5 laptops wirelessly.
    My goal is that one could login to any node (laptop) and have the files seamlessly accessible. Do I need to load server software on the mini in order to support network/mobile users? I am not looking to control anything else. Are there any documented examples around?
    Many, many thanks

    I ended up doing something similar, but I didn't want to be responsible for my son's Dock.  So, I set a different Managed Preference for "Mobility".  I added "com.apple.dock.plist" to the list of Excluded files.  Now the Docks won't sync back to the Open Directory master account, so there can be a different Dock on every Mac for this user.  I'd have to repeat that for other users too.

  • Migrating current mobile user accounts from one OS X Server to another

    I have not been able to find ANY answers to my situlaton. 
    I have a small office that currently has a Mac Server 10.4.11 server running that has many "mobile user" accounts setup.  This was done because we have so many mobile users coming in and out of the office.  When the user comes back they sync their home directory witht th server here.  Works great.
    We recently purchased a new Mac Server running 10.7.4.  Set it up as the Open Directory Master.  I unbind from the old server and bind to the new server.  Everything seems to be working just fine except when I go and add a current mobile user to the new server it creates a new user account on the client device (MacBooks) as if the previous user settings didn't exsist.  Since they need to be mobile users and not just network users I haven't been able to find a solution to this problem any where.
    Is there a way on the client to tell it to use the old user account stored on the MacBook to use with new mobile user connected to the new server?
    Or is there an easier way of doing this that I don't know about?
    Thanks,
    TK

    If I understand what you wrote, no.  The reason is this.  If memory serves...  In 10.4.11 accounts were assigned a UID.  In 10.7.x, accounts are assigned a UID and a GUID.  Most everything relies on the GUID at this point.  So, what you have is an account named marysue on the workstation and it is assigned a UID like 1045.  Now you created marysue on the Lion server, but you likely did not recreate the UID to match the old server.  And thus, the UID value is different but more importantly you now have a GUID value like EC0F9357-8EF2-4D3B-B6F3-2E3016400114, that is associated with the account.  So, the user, despite having the same shortname, is different. 
    In addition, you are working with two different directory systems.  10.4 still used NetInfo (ah, I miss you so).  10.5 and above use DS local flat files, even when bound to an LDAP system.
    So, probably the easiest way to do this, provided I understand what you are seeing is the following.  Let's assume the following:
    You have a mobile account on a workstation for the user maryjoe with a UID of 1034 that came from the 10.4.11 system.  You have this account cached.  You have a home folder in /Users/maryjoe.  You have now bound to the new server which contains a user named maryjoe likely with a UID of something other than 1034 and with a GUID value that likely did not exist in the old directory system, also with the shortname of maryjoe and a home path of /Users/maryjoe.
    So when you log in, you are likely being pathed to /Users/maryjoe, but you are seeing a default Dock and no documents because of permissions.  My guess is that if you used Terminal to view the Users directory you would see something like this (open Terminal and issue the command ls -l /Users/:
    drwxrwxrwt   4 root       wheel  136 Apr 18 21:35 Shared
    drwxr-xr-x+ 14 locadmin  staff  476 Jan 21 7:42 locadmin
    drwxr-xr-x+ 14 1034  staff  476 Mar 21 10:42 maryjoe
    Note the folder maryjoe is not owned by maryjoe, it is owned by the UID of maryjoe from the old server.
    Ok, so long story short (sorry for the log explanation, especially if you are experiencing something else that I did not get from the post), all you need to do is update the permissions of the home folder.  Do this:
    1:  Log in as the local admin
    2:  Open Terminal
    3:  Issue this command:
         sudo chown -R maryjoe /Users/maryjoe
    Even with a lot of data in the home folder, this should not take more than a few minutes to complete.
    When the command completes, run this command again:  ls -l /Users/
    You should now see
    drwxrwxrwt   4 root       wheel  136 Apr 18 21:35 Shared
    drwxr-xr-x+ 14 locadmin  staff  476 Jan 21 7:42 locadmin
    drwxr-xr-x+ 14 maryjoe  staff  476 Mar 21 10:42 maryjoe
    Now try logging in as the user.  With a little luck I divined the issue and this will have you up and running.  Now, I normally will also purge the cached account in /var/db/dslocal/nodes/Default/users/ but that might be a bit daunting.  So let's start with the simple process first of ensuring home folder permissions are correct.

  • OS X Server - Mobile User - cookies.sqlite and places.sqlite

    Hi.
    We have OS X Server running our Mobile User Accounts and HomeSync back to the server in the background.
    All the users have problems with the same 2 files not being able to be backed up - belonging to firefox: the cookies.sqlite and places.sqlite file.
    Please help if you can.

    neuhaus,
    I am discovering the same issue.  I have come to the same conclusion as you and am terribly disappointed.  Did you have any luck figuring this out?  Did you submit a bug report?
    There is still one factor I am trying to isolate.  Is the version of Pages (or other iWork app) being used downloaded from the Apple Store or installed from a DVD?
    Tim

  • About SMS from mobile user to gateway to server and versa

    Hi,
    I am new in this field, need help in the following problems and situations, prefer source code.
    I am actually doing the following tasks, I need to develop the code
    -mobile user sms their bid to sms gateway.
    -server logs the bid.
    -if server receive their bid, send back OK sms to mobile user.
    -if server receive their bid, but the bid is higher than others(most lowest 5) , send back NOT OK sms to mobile user.
    -if bid closed, inform all mobile users that the bid has closed.
    I import 4 of this,
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    Thanks for helping and replying!!

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • 10.5.5 Active directory problem for mobile users

    I an running 10.5.5 on a MBP 2.4. The computer is attached to Active Directory for authentication. The accounted is setup as a mobile user with automatic home sync. Below is the problem I'm experiencing after 10.5.5.
    Upgrade worked fine, everything went through as expected. When I got home with computer, couldn't login. I did eventually get logged in, computer became extremely unresponsive at intermittent times.
    At work next day, everything worked fine.
    I believe this is a problem with 10.5.5 computers that are bound to AD, when AD is not available (but internet is.) Some type of weird priority locking or timeout setting? It seems to fail immediately if no network is available, but if the internet is available it is like it gets "hung" waiting for a response.
    Anybody else having similar problems?
    Below are the details on the specific tests that brought me to this conclusion.
    1) Boot with work network cable connected - Works fine
    2) Boot with work wifi network enabled - works fine
    3) Boot with public wifi network enabled and work cable - works fine.
    4) Boot with only public wifi - appears "frozen" (turned off after 5 minutes of trying to login)
    5) Boot without network or wifi - works fine using cached mobile account info
    6) Boot with network cable and public wifi, remove network cable after login- works fine for a period becomes periodically frozen. attempts to do anything become queued, when computer starts responding queue emptys out (can see menus / applications switch around to correspond with clicks.)
    7) Change account to Manual sync of mobile account, again boot with network cable and public wifi, remove network cable- no freezing responds normaly.
    All steps repeated after rebinding computer to AD - same results.

    First rule of installing an upgrade, run permissions repair both before & after. Did you do that?
    I'm using a Mac dual bound to AD & OD, works perfectly. I can't speak for the exact setup of your network but I personally would be suspicious of AD. I had a similar issue some time back where my processor would go crazy with the net directory authentication running like crazy. Turned out AD had somehow forgotten my computer. It only happened away from work where my Mac couldn't contact the AD server (not exactly sure why). I'd try the following.
    1. While at work create a local administrative account on your Mac (you should always have a backup account anyway).
    2. Login as local admin account.
    3. open Directory Utility from the Applications/Utilities folder & remove the AD server (you'll need an account that can bind machines to AD).
    4. re-add your Mac to AD.
    This may resolve your issue & shouldn't hurt anything in the least.

  • Questions on MCX Policies for Laptop/Mobile Users:

    Questions on MCX Policies for Laptop/Mobile Users:
    I have several managed Macs running Leopard. Many of them are MacBook laptops. My main MCX policies involve mapping printers and mounting network volumes at login. These are simple computer and group policies to help make the users life a little easier when it comes to finding and using network resources such as file server volumes and network printers.
    Since most of my users are laptops, they are expressing 2 major concerns involving their laptops when they are off the LAN (i.e.; on the road at a cafe, working at home, staying at a hotel or when they have no network at all)
    1) When users are off our LAN, the Mac still tries to mount the network volumes in their OD/MCX login items when the user logs in (with cached mobile credentials). Can this be avoided? Windows PCs do not do this. If the PC laptop cant find an AD DC, they simply don't run the login scripts and thus dont try to mount/map network volumes. How can I make the Mac laptops only mount network volumes when they are on the LAN?
    2) Most Mac users have a Cisco VPN client, and use it regularly to connect to the company's LAN from home, hotels etc. Of course when they log into the network via VPN, their network volumes are not mounted automatically. Is their a way to re-run the MCX managed login items script once they connect to the VPN and mount (i.e.; "map") their network drives? Sure, users can simple use the "Connect To Server" option in the FInder (or perhaps try and use the god-awful Leopard Finder side bar discovery browser thingy which I hate - never mind), but I need a consistent automated way to mount volumes quickly and easily for my mobile users. There must be a way to run (or re-run) the login items part of my MCX policies.

    Ping!
    I'm looking for this functionality too. Anyone have a solution to either of these? One that came to mind is to wrap the login items in a script which detects if the LAN is available.

  • After upgrading to yosemite, cannot login as mobile user

    After upgrading to Yosemite, I can no longer log on to the Mavericks server as a mobile user. The password prompt is first on the server instead, because only after I do I remove all network connections or disable, I can log in.
    The connection to the server is running AFP. If I remove the binding in the user settings, then it goes without problems. Also, the Sync works to profile server. I create the new binding, I can do this only with no name / password, otherwise it returns an error message.
    What can be the problem? Must necessarily be 4.0 installed Yosemite or server on the server?
    Thanks for a tip!
    Zeljko

    Quick tip: try logging in and don't use capitals or spaces in your username.
    So instead of: Bram From Maastricht, use bramfrommaastricht

  • Mobile User iCal Sync not syncing

    Hi,
    I've got a mobile user account that doesn't seem to be syncing properly. It only seems to affect iCal sync, though.
    On the user's MacBook, they have two calendars which are local calendars and one CalDAV account back on the iCal Server.
    On the user's mac mini in the office, they aren't getting the local calendars from the MacBook despite the MacBook doing a full sync before they log in to the Mac Mini.
    Does this mean that local iCal calendars are stored outside of the user's home directory? Has anyone else come across this problem?
    Cheers,
    Stu

    In Lion, iCal is now synced via iCal Preferences.
    This from iCal help using the search criteria "sync"
    Set up a MobileMe account
    If you’re a MobileMe subscriber, you can use iCal to access and manage your MobileMe calendars. For example, in iCal, you can add subscribed calendars to your MobileMe Calendar account so you can view them in iCal and on devices with iOS 4 or later. You can also share calendars, which allows others to see or edit the calendars.
    If your calendars are already set up to be synced using MobileMe, then your MobileMe Calendar account is already set up. To sync your calendars using MobileMe, see:
    Sync calendars across devices
    Choose iCal > Preferences and click Accounts.
    To add a new account, click Add in the lower-left corner.
    Enter your MobileMe email address and password, and then click Create.iCal finds any calendar accounts associated with the email address you provide.
    For more information about working with MobileMe calendars, visit the MobileMe website.
    MobileMe website

  • Can't change password for mobile user on certain client computers

    I have a MacBook Pro that has mobile user accounts. The user accounts are defined in the WGM of my macpro Server. The mobile user account works fine except that after some time I could not change the password on the client computer. I could change it in WGM but then it was not updated on the client. I tried changing the password from the SystemPreferences -> Accounts option as well as from the command line with "passwd". When using the command line passwd it just says "sorry". When using the Accounts option it asks to contact the "system manager".
    I called Apple Support. They suggested recreating the mobile user account on the client. I did that, and everything worked fine, including changing passwords on the client. But, after several weeks, I again cannot change the password on the client. I can change it in WGM fine, but again the client is not updated.
    It seems that the password database on the client gets confused about user password changing privileges after some time.
    To make matters more complicated, everything works fine for another client computer, including changing passwords.
    Any suggestions?

    This problem was related to the case sensitivity of computer names. I had recreated the LDAP binding to the client computer with the computer name in all lower case
    characters. However, when I created the mobile user initially, I had used a mix of upper and lower case characters (the name that shows up upon reverse DNS lookup). Once I re-created the LDAP binding with the original name, everthing worked fine.

  • New 10.6 computer with mobile user pinwheeling often

    Hi folks,
    I'm having an issue with a computer being used by one of our employees. She had an old 2009 iMac that she was using that began pinwheeling often whenever she was using it (we thought it was a Hard Drive Issue), so we replaced it with a new MacMini (right before Lion's release) and as she is a mobile user, used that to download all of the work files back to her machine. I did a fresh install of MS Word and its updates, and ran updates on all of her programs. But now the pinwheeling is back with a vengeance. I've run disk repairs, permissions repairs, and done everything I can think of troubleshooting wise short of doing an archive and re-install of her OS.
    I have pulled a copy of her Console log and have seen a number of errors that look to be repeated. If anyone could take a look at this and possibly help me determine what may be causing the issue, I'd be most grateful.
    Thanks!
    ~JYH
    CONSOLE LOG FOLLOWs:
    8/9/11 12:56:11 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[23349]) Exited with exit code: 1
    8/9/11 2:56:28 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[23991]) Exited with exit code: 1
    8/9/11 4:56:44 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[24711]) Exited with exit code: 1
    8/9/11 5:00:02 AM          ServerScanner[24729]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/9/11 6:57:01 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[25353]) Exited with exit code: 1
    8/9/11 8:57:16 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[26089]) Exited with exit code: 1
    8/9/11 10:57:36 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[26837]) Exited with exit code: 1
    8/9/11 12:57:51 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[27542]) Exited with exit code: 1
    8/9/11 1:40:17 PM          com.apple.launchd[1]          *** launchd[1] has started up. ***
    8/9/11 1:39:38 PM          com.apple.WindowServer[74]          Tue Aug  9 13:39:38 USERNAME.local WindowServer[74] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    8/9/11 1:39:38 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Starting.  Parent is 1, effective user is 0, real user is 0, session is 114.
    8/9/11 1:39:39 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Application active
    8/9/11 1:39:58 PM          edu.mit.Kerberos.CCacheServer[130]          launchctl start error: No such process
    8/9/11 1:40:52 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Received core quit AE
    8/9/11 1:40:52 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Transition to kAppQuitting
    8/9/11 1:40:52 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Quitting
    8/9/11 1:40:52 PM          com.apple.launchd.peruser.1034[128]          (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    8/9/11 1:40:59 PM          com.netopia.timbuktu.pro.host[184]          tb2 host[184]: Starting.  Parent is 128, effective user is 0, real user is 1034, session is 128.
    8/9/11 1:40:59 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[181]) Exited with exit code: 1
    8/9/11 1:41:02 PM          com.netopia.timbuktu.pro.host[184]          tb2 host[184]: Application active
    8/9/11 1:41:02 PM          ServerScanner[176]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:07 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:07 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:07 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:07 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:07 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:07 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/9/11 1:51:16 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:16 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 209
    8/9/11 1:51:16 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:16 USERNAME.local Microsoft Word[249] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    8/9/11 1:51:16 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 13:51:16 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xd1
    8/9/11 3:28:09 PM          DYMO Label[579]          *** WARNING: Method selectRow:byExtendingSelection: in class TAddressBookTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/9/11 3:51:58 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 15:51:58 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 488
    8/9/11 3:51:58 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 15:51:58 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1e8
    8/9/11 4:10:21 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 16:10:21 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 533
    8/9/11 4:10:21 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 16:10:21 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x215
    8/9/11 4:11:21 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 16:11:21 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 540
    8/9/11 4:11:21 PM          [0x0-0x23023].com.microsoft.Word[249]          Tue Aug  9 16:11:21 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x21c
    8/9/11 11:50:03 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[3514]) Exited with exit code: 1
    8/10/11 1:50:21 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[4143]) Exited with exit code: 1
    8/10/11 3:50:40 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[4847]) Exited with exit code: 1
    8/10/11 5:00:02 AM          ServerScanner[5210]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/10/11 5:50:56 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[5476]) Exited with exit code: 1
    8/10/11 7:51:12 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[6105]) Exited with exit code: 1
    8/10/11 9:15:56 AM          DashboardClient[6567]          CGSSetSurfaceColorSpace failed - error 1001 (windowID:833)
    8/10/11 9:15:56 AM          com.apple.Dock.agent[161]          2011-08-10 09:15:56.701 DashboardClient[6567:a03] CGSSetSurfaceColorSpace failed - error 1001 (windowID:833)
    8/10/11 9:15:56 AM          DashboardClient[6567]          CGSSetSurfaceColorSpace failed - error 1001 (windowID:833)
    8/10/11 9:15:56 AM          com.apple.Dock.agent[161]          2011-08-10 09:15:56.702 DashboardClient[6567:a03] CGSSetSurfaceColorSpace failed - error 1001 (windowID:833)
    8/10/11 9:51:27 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[6794]) Exited with exit code: 1
    8/10/11 11:51:51 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[7554]) Exited with exit code: 1
    8/10/11 1:00:01 PM          [0x0-0x23023].com.microsoft.Word[249]          Wed Aug 10 13:00:01 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 1188
    8/10/11 1:00:01 PM          [0x0-0x23023].com.microsoft.Word[249]          Wed Aug 10 13:00:01 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x4a4
    8/10/11 1:52:24 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[8372]) Exited with exit code: 1
    8/10/11 2:05:40 PM          [0x0-0x23023].com.microsoft.Word[249]          Wed Aug 10 14:05:40 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 1383
    8/10/11 2:05:40 PM          [0x0-0x23023].com.microsoft.Word[249]          Wed Aug 10 14:05:40 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x567
    8/10/11 3:53:00 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[9191]) Exited with exit code: 1
    8/10/11 5:53:36 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[9861]) Exited with exit code: 1
    8/10/11 7:53:54 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[10497]) Exited with exit code: 1
    8/10/11 9:54:11 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[11131]) Exited with exit code: 1
    8/10/11 11:54:28 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[11766]) Exited with exit code: 1
    8/11/11 1:54:42 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[12407]) Exited with exit code: 1
    8/11/11 3:54:58 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[13116]) Exited with exit code: 1
    8/11/11 5:00:01 AM          ServerScanner[13466]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/11/11 5:55:17 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[13762]) Exited with exit code: 1
    8/11/11 7:55:35 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[14353]) Exited with exit code: 1
    8/11/11 9:54:08 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:54:08 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:54:08 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:54:08 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:55:53 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[15102]) Exited with exit code: 1
    8/11/11 9:57:57 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:57 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:57:58 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:57:58 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:58:16 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:58:16 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:58:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:58:18 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:58:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:58:18 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:58:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:58:18 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 9:58:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 09:58:18 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 10:00:48 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 10:00:48 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 1824
    8/11/11 10:00:48 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 10:00:48 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x720
    8/11/11 11:31:05 AM          [0x0-0x13013].com.apple.Safari[197]          abljem/730  (signed jarfile)
    8/11/11 11:31:05 AM          [0x0-0x13013].com.apple.Safari[197]          Browser Java version 1.6.0_26
    8/11/11 11:31:05 AM          [0x0-0x13013].com.apple.Safari[197]          in Netscape 6+
    8/11/11 11:31:11 AM          [0x0-0x13013].com.apple.Safari[197]          Server type E
    8/11/11 11:31:16 AM          [0x0-0x13013].com.apple.Safari[197]          Link encryption is RC4 with a 40-bit passphrase-based key
    8/11/11 11:51:07 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:51:07 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2052
    8/11/11 11:51:07 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:51:07 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x804
    8/11/11 11:56:35 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[15918]) Exited with exit code: 1
    8/11/11 11:57:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:57:18 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2078
    8/11/11 11:57:18 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:57:18 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x81e
    8/11/11 11:59:24 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:59:24 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2095
    8/11/11 11:59:24 AM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 11:59:24 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x82f
    8/11/11 12:03:26 PM          [0x0-0x13013].com.apple.Safari[197]          Automatic disconnect because the connection was idle for too long.
    8/11/11 12:03:27 PM          [0x0-0x13013].com.apple.Safari[197]          End abljem
    8/11/11 1:04:27 PM          Safari[197]          NSOpenGLAutoscaleBounds=NO
    8/11/11 1:57:05 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[16739]) Exited with exit code: 1
    8/11/11 1:58:03 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 13:58:03 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2364
    8/11/11 1:58:03 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 13:58:03 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x93c
    8/11/11 3:57:45 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[17383]) Exited with exit code: 1
    8/11/11 4:02:10 PM          [0x0-0x13013].com.apple.Safari[197]          java.lang.NullPointerException
    8/11/11 4:02:10 PM          [0x0-0x13013].com.apple.Safari[197]                  at abljem.start([DashoPro-V2.2-110100.11101B000967])
    8/11/11 4:02:10 PM          [0x0-0x13013].com.apple.Safari[197]                  at sun.applet.AppletPanel.run(AppletPanel.java:464)
    8/11/11 4:02:10 PM          [0x0-0x13013].com.apple.Safari[197]                  at java.lang.Thread.run(Thread.java:680)
    8/11/11 4:04:34 PM          [0x0-0x13013].com.apple.Safari[197]          abljem/730  (signed jarfile)
    8/11/11 4:04:35 PM          [0x0-0x13013].com.apple.Safari[197]          Browser Java version 1.6.0_26
    8/11/11 4:04:35 PM          [0x0-0x13013].com.apple.Safari[197]          in Netscape 6+
    8/11/11 4:04:36 PM          [0x0-0x13013].com.apple.Safari[197]          Server type E
    8/11/11 4:04:41 PM          [0x0-0x13013].com.apple.Safari[197]          Link encryption is RC4 with a 40-bit passphrase-based key
    8/11/11 4:35:58 PM          [0x0-0x13013].com.apple.Safari[197]          Automatic disconnect because the connection was idle for too long.
    8/11/11 4:35:58 PM          [0x0-0x13013].com.apple.Safari[197]          End abljem
    8/11/11 4:41:45 PM          [0x0-0x13013].com.apple.Safari[197]          java.lang.NullPointerException
    8/11/11 4:41:45 PM          [0x0-0x13013].com.apple.Safari[197]                  at abljem.start([DashoPro-V2.2-110100.11101B000967])
    8/11/11 4:41:45 PM          [0x0-0x13013].com.apple.Safari[197]                  at sun.applet.AppletPanel.run(AppletPanel.java:464)
    8/11/11 4:41:45 PM          [0x0-0x13013].com.apple.Safari[197]                  at java.lang.Thread.run(Thread.java:680)
    8/11/11 4:46:18 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:46:18 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/11/11 4:46:26 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:46:26 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2724
    8/11/11 4:46:26 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:46:26 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xaa4
    8/11/11 4:47:01 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:47:01 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2727
    8/11/11 4:47:01 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:47:01 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xaa7
    8/11/11 4:48:24 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:48:24 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2743
    8/11/11 4:48:24 PM          [0x0-0x23023].com.microsoft.Word[249]          Thu Aug 11 16:48:24 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xab7
    8/11/11 5:58:29 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[18104]) Exited with exit code: 1
    8/11/11 7:59:01 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[18747]) Exited with exit code: 1
    8/11/11 9:59:16 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[19381]) Exited with exit code: 1
    8/11/11 11:59:31 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[20014]) Exited with exit code: 1
    8/12/11 1:59:45 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[20651]) Exited with exit code: 1
    8/12/11 4:00:02 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[21363]) Exited with exit code: 1
    8/12/11 5:00:02 AM          ServerScanner[21681]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/12/11 6:00:17 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[21997]) Exited with exit code: 1
    8/12/11 8:00:31 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[22637]) Exited with exit code: 1
    8/12/11 9:45:10 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 09:45:10 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 3749
    8/12/11 9:45:10 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 09:45:10 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xea5
    8/12/11 10:00:47 AM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[23323]) Exited with exit code: 1
    8/12/11 10:40:27 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:40:27 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 3947
    8/12/11 10:40:27 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:40:27 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xf6b
    8/12/11 10:48:16 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:48:16 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 3982
    8/12/11 10:48:16 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:48:16 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xf8e
    8/12/11 10:54:32 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:54:31 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4018
    8/12/11 10:54:32 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 10:54:31 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0xfb2
    8/12/11 11:21:16 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          objc[23921]: Class TODRecentURLManager is implemented in both /Applications/OJIN.app/Contents/MacOS/FluidInstance and /Applications/OJIN.app/Contents/PlugIns/BrowsaBrowsa.fluidplugin/Contents/MacOS /BrowsaBrowsa. One of the two will be used. Which one is undefined.
    8/12/11 11:21:16 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          objc[23921]: Class HMImageComboBox is implemented in both /Applications/OJIN.app/Contents/MacOS/FluidInstance and /Applications/OJIN.app/Contents/PlugIns/BrowsaBrowsa.fluidplugin/Contents/MacOS /BrowsaBrowsa. One of the two will be used. Which one is undefined.
    8/12/11 11:21:16 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          objc[23921]: Class HMImageComboBoxCell is implemented in both /Applications/OJIN.app/Contents/MacOS/FluidInstance and /Applications/OJIN.app/Contents/PlugIns/BrowsaBrowsa.fluidplugin/Contents/MacOS /BrowsaBrowsa. One of the two will be used. Which one is undefined.
    8/12/11 11:21:16 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          objc[23921]: Class TODJavaScriptFluidObject is implemented in both /Applications/OJIN.app/Contents/MacOS/FluidInstance and /Applications/OJIN.app/Contents/PlugIns/BrowsaBrowsa.fluidplugin/Contents/MacOS /BrowsaBrowsa. One of the two will be used. Which one is undefined.
    8/12/11 11:21:16 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          objc[23921]: Class TODTinyURLResolver is implemented in both /Applications/OJIN.app/Contents/MacOS/FluidInstance and /Applications/OJIN.app/Contents/PlugIns/BrowsaBrowsa.fluidplugin/Contents/MacOS /BrowsaBrowsa. One of the two will be used. Which one is undefined.
    8/12/11 11:22:00 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          abljem/730  (signed jarfile)
    8/12/11 11:22:00 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          Browser Java version 1.6.0_26
    8/12/11 11:22:00 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          in Explorer 5+
    8/12/11 11:22:01 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          Server type E
    8/12/11 11:22:05 AM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          Link encryption is RC4 with a 40-bit passphrase-based key
    8/12/11 11:45:36 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 11:45:36 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4200
    8/12/11 11:45:36 AM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 11:45:36 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1068
    8/12/11 12:01:26 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[24282]) Exited with exit code: 1
    8/12/11 12:10:42 PM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          Automatic disconnect because the connection was idle for too long.
    8/12/11 12:10:42 PM          [0x0-0x324324].com.fluidapp.FluidInstance.OJIN[23921]          End abljem
    8/12/11 1:52:20 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 13:52:20 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4402
    8/12/11 1:52:20 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 13:52:20 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1132
    8/12/11 2:02:21 PM          com.apple.launchd.peruser.1034[128]          (com.apple.Kerberos.renew.plist[25053]) Exited with exit code: 1
    8/12/11 2:03:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:03:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/12/11 2:03:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:03:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/12/11 2:03:06 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:03:06 USERNAME.local Microsoft Word[249] <Error>: doClip: empty path.
    8/12/11 2:04:07 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:04:07 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4464
    8/12/11 2:04:07 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:04:07 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1170
    8/12/11 2:04:32 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:04:32 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4466
    8/12/11 2:04:32 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:04:32 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1172
    8/12/11 2:09:52 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:09:52 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4483
    8/12/11 2:09:52 PM          [0x0-0x23023].com.microsoft.Word[249]          Fri Aug 12 14:09:52 USERNAME.local Microsoft Word[249] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1183
    8/12/11 2:10:46 PM          com.apple.launchd.peruser.1034[128]          ([0x0-0x13013].com.apple.Safari[197]) Exited: Killed
    8/12/11 2:17:56 PM          com.apple.launchd.peruser.1034[128]          ([0x0-0x1d01d].com.apple.Preview[212]) Exited: Killed
    8/12/11 2:17:59 PM          com.apple.launchd.peruser.1034[128]          ([0x0-0x266266].com.apple.iCal[17377]) Exited: Killed
    8/12/11 2:18:06 PM          com.apple.launchd.peruser.1034[128]          ([0x0-0x23023].com.microsoft.Word[249]) Exited: Terminated
    8/12/11 2:19:35 PM          com.apple.launchd[1]          *** launchd[1] has started up. ***
    8/12/11 2:20:14 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Starting.  Parent is 1, effective user is 0, real user is 0, session is 114.
    8/12/11 2:20:14 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Application active
    8/12/11 2:20:15 PM          com.apple.WindowServer[90]          Fri Aug 12 14:20:15 USERNAME.local WindowServer[90] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    8/12/11 2:20:15 PM          edu.mit.Kerberos.CCacheServer[129]          launchctl start error: No such process
    8/12/11 2:20:17 PM          HomeSync[139]          HomeSync.doHomeSyncLoginLogout: Unable to mount server URL at 'afp://od.XXXX.org/TWIN' (64).  No sync will occur.
    8/12/11 2:20:17 PM          HomeSync[139]          HomeSync.cinch_doLoginChecks Login sync returned 64
    8/12/11 2:20:17 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Received core quit AE
    8/12/11 2:20:18 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Transition to kAppQuitting
    8/12/11 2:20:18 PM          com.netopia.timbuktu.pro.host[114]          tb2 host[114]: Quitting
    8/12/11 2:20:18 PM          com.apple.launchd.peruser.1034[127]          (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    8/12/11 2:20:22 PM          com.netopia.timbuktu.pro.host[171]          tb2 host[171]: Starting.  Parent is 127, effective user is 0, real user is 1034, session is 127.
    8/12/11 2:20:23 PM          ServerScanner[163]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/12/11 2:20:23 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[168]) Exited with exit code: 1
    8/12/11 2:20:23 PM          com.netopia.timbuktu.pro.host[171]          tb2 host[171]: Application active
    8/12/11 2:20:30 PM          [0x0-0xe00e].com.apple.mcx.MCXMenuExtraTool[172]          DOCK: CFMessagePortSendRequest returned -2
    8/12/11 2:20:49 PM          System Preferences[195]          .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    8/12/11 2:35:51 PM          DYMO Label[276]          *** WARNING: Method selectRow:byExtendingSelection: in class TAddressBookTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/12/11 3:32:14 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:14.986 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:14 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:14.999 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:15 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:15.001 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:15 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:15.002 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:15 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:15.004 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:15 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:15.005 [iCal:635] ERROR (APL): error loading model
    8/12/11 3:32:15 PM          [0x0-0x43043].com.apple.iCal[635]          15:32:15.006 [iCal:635] ERROR (APL): error loading model
    8/13/11 12:30:30 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[3551]) Exited with exit code: 1
    8/13/11 2:30:48 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[4177]) Exited with exit code: 1
    8/13/11 4:31:07 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[4905]) Exited with exit code: 1
    8/13/11 5:02:19 AM          ServerScanner[5063]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/13/11 6:31:26 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[5528]) Exited with exit code: 1
    8/13/11 8:31:45 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[6153]) Exited with exit code: 1
    8/13/11 10:32:05 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[6777]) Exited with exit code: 1
    8/13/11 12:32:23 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[7410]) Exited with exit code: 1
    8/13/11 2:32:40 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[8042]) Exited with exit code: 1
    8/13/11 4:32:58 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[8672]) Exited with exit code: 1
    8/13/11 6:33:16 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[9294]) Exited with exit code: 1
    8/13/11 8:33:33 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[9919]) Exited with exit code: 1
    8/13/11 10:33:49 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[10543]) Exited with exit code: 1
    8/14/11 12:34:06 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[11169]) Exited with exit code: 1
    8/14/11 2:34:23 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[11795]) Exited with exit code: 1
    8/14/11 4:34:40 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[12496]) Exited with exit code: 1
    8/14/11 5:02:17 AM          ServerScanner[12639]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/14/11 6:34:57 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[13120]) Exited with exit code: 1
    8/14/11 8:35:14 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[13745]) Exited with exit code: 1
    8/14/11 10:35:31 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[14375]) Exited with exit code: 1
    8/14/11 12:35:48 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[15008]) Exited with exit code: 1
    8/14/11 2:36:05 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[15640]) Exited with exit code: 1
    8/14/11 4:36:23 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[16264]) Exited with exit code: 1
    8/14/11 6:36:42 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[16888]) Exited with exit code: 1
    8/14/11 8:37:01 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[17513]) Exited with exit code: 1
    8/14/11 10:37:21 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[18137]) Exited with exit code: 1
    8/15/11 12:37:39 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[18763]) Exited with exit code: 1
    8/15/11 2:37:57 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[19390]) Exited with exit code: 1
    8/15/11 4:38:14 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[20091]) Exited with exit code: 1
    8/15/11 5:02:14 AM          ServerScanner[20219]          Not scanning because node /LDAPv3/192.168.3.185 is in searchPath
    8/15/11 6:38:30 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[20725]) Exited with exit code: 1
    8/15/11 8:38:48 AM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[21409]) Exited with exit code: 1
    8/15/11 9:22:43 AM          [0x0-0x104104].SoftwareUpdateCheck[21636]          SoftwareUpdateCheck: non-admin user
    8/15/11 9:22:43 AM          com.apple.launchd.peruser.1034[127]          ([0x0-0x104104].SoftwareUpdateCheck[21636]) Exited with exit code: 102
    8/15/11 9:59:53 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 09:59:53 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4121
    8/15/11 9:59:53 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 09:59:53 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    8/15/11 9:59:53 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 09:59:53 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1019
    8/15/11 10:22:37 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:22:37 USERNAME.local Microsoft Word[21212] <Error>: doClip: empty path.
    8/15/11 10:22:37 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:22:37 USERNAME.local Microsoft Word[21212] <Error>: doClip: empty path.
    8/15/11 10:22:37 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:22:37 USERNAME.local Microsoft Word[21212] <Error>: doClip: empty path.
    8/15/11 10:32:43 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:32:43 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4290
    8/15/11 10:32:43 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:32:43 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x10c2
    8/15/11 10:34:19 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:34:19 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4316
    8/15/11 10:34:19 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:34:19 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x10dc
    8/15/11 10:44:31 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:44:31 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4353
    8/15/11 10:44:31 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 10:44:31 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1101
    8/15/11 11:15:51 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:15:51 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4432
    8/15/11 11:15:51 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:15:51 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1150
    8/15/11 11:16:04 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:16:04 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSRemoveWindowFromWindowMovementGroup: Invalid window
    8/15/11 11:16:04 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:16:04 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSClearWindowTags: Invalid window 0x0
    8/15/11 11:16:05 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:16:05 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4440
    8/15/11 11:16:05 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:16:05 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1158
    8/15/11 11:17:56 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:17:56 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4467
    8/15/11 11:17:56 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:17:56 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1173
    8/15/11 11:18:09 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:18:09 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSRemoveWindowFromWindowMovementGroup: Invalid window
    8/15/11 11:18:09 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:18:09 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSClearWindowTags: Invalid window 0x0
    8/15/11 11:18:09 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:18:09 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4472
    8/15/11 11:18:09 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:18:09 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1178
    8/15/11 11:41:22 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:41:22 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4525
    8/15/11 11:41:22 AM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 11:41:22 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x11ad
    8/15/11 12:39:23 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[22942]) Exited with exit code: 1
    8/15/11 1:06:24 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:06:24 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSRemoveWindowFromWindowMovementGroup: Invalid window
    8/15/11 1:06:24 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:06:24 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSClearWindowTags: Invalid window 0x0
    8/15/11 1:06:25 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:06:25 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4645
    8/15/11 1:06:25 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:06:25 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x1225
    8/15/11 1:16:26 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:16:26 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 4687
    8/15/11 1:16:26 PM          [0x0-0xee0ee].com.microsoft.Word[21212]          Mon Aug 15 13:16:26 USERNAME.local Microsoft Word[21212] <Error>: kCGErrorIllegalArgument: CGSGetWindowTags: Invalid window 0x124f
    8/15/11 2:39:57 PM          com.apple.launchd.peruser.1034[127]          (com.apple.Kerberos.renew.plist[23859]) Exited with exit code: 1
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:22 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:22 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:13:23 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:13:23 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:22:40 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:22:40 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:22:40 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:22:40 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:22:40 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:22:40 USERNAME.local Safari[176] <Error>: Corrupt JPEG data: 3 extraneous bytes before marker 0xd9
    8/15/11 3:22:40 PM          [0x0-0x12012].com.apple.Safari[176]          Mon Aug 15 15:22:40 USERNAME.local Safari[176] <Error>: JPEG datastream contains no image
    8/15/11 3:56:39 PM          com.apple.launchd.peruser.1034[127]          ([0x0-0x12012].com.apple.Safari[176]) Exited: Terminated
    8/15/11 3:57:27 PM          com.apple.RemoteUI[24367]          CoreAnimation: rendering error 501
    8/15/11 3:57:47 PM          com.apple.RemoteUI[24367]          HTTP2 Streaming Reads ON

    it is not booting slow when i use the alt key to select the drive during startup. i think something causes the computer to get confused over two drives that have a fully functioning system on it. after selecting the drive it boots fine and perform ok as far as i can see.

  • Mobile users are not in login list, and OD settings don't apply until after login

    Good morning all,
    One of my organization's users has an iMac running Lion, and it's bound to both Active Directory and Open Directory. I have his workstation's OD account in a group that is configured to create a mobile user when logging into a network account, and to display the login screen as a username and password instead of a list of users. He uses an AD user account to log in.
    The first hangup is that even though OD is set to display a username and password box for the login screen, when I turn on or reboot the machine, it displays a list of users instead. If I log into one of the users, and then immediately log out, it works perfectly - I get the username and password boxes, but only after I log into the machine once. If I reboot, I end up right back at the list of users.
    The second hangup is that when I get this list of users, no mobile accounts appear. This means that the mobile account associated with my client's AD account does not appear at the login screen on first boot. Moreover, the "Other..." button does not appear, either, even after a substantial time delay.
    The sum result of these problems is that the only way that my client can log into his machine immediately after boot is to log in to a temporary local account I created for him, then log out and use the username and password boxes to log in to his AD account. Any suggestions?
    Please note that this is cross-posted from the OS X Lion Server forum, as I don't know if it's a client or server-related issue.

    Good morning all,
    One of my organization's users has an iMac running Lion, and it's bound to both Active Directory and Open Directory. I have his workstation's OD account in a group that is configured to create a mobile user when logging into a network account, and to display the login screen as a username and password instead of a list of users. He uses an AD user account to log in.
    The first hangup is that even though OD is set to display a username and password box for the login screen, when I turn on or reboot the machine, it displays a list of users instead. If I log into one of the users, and then immediately log out, it works perfectly - I get the username and password boxes, but only after I log into the machine once. If I reboot, I end up right back at the list of users.
    The second hangup is that when I get this list of users, no mobile accounts appear. This means that the mobile account associated with my client's AD account does not appear at the login screen on first boot. Moreover, the "Other..." button does not appear, either, even after a substantial time delay.
    The sum result of these problems is that the only way that my client can log into his machine immediately after boot is to log in to a temporary local account I created for him, then log out and use the username and password boxes to log in to his AD account. Any suggestions?
    Please note that this is cross-posted from the OS X Lion Server forum, as I don't know if it's a client or server-related issue.

  • Questions about Mobile User accounts

    I'm having some trouble fully grasping Mobile User accounts and hoping someone could clarify whether they would be appropriate in my situation.
    We have some non-"mobile" users that solely use one machine and we would like them to continue to use their local hard drives. Is a "Mobile" account the solution?
    Second, if a user is already using an independent Mac that is not bound to any server..is it possible to bind it, create a mobile account, then sync local with network home folders such that all of the current data in their existing Home folder is added to the Network Home folder? or must the account be started from scratch?
    Lastly, What if we did not want all that data synched to the Network Home because there is simply too much of it. Can we still enjoy the benefits of Network login while certain files are local (I assume this is what the synching prefs are all about?!?) Users use same machine for 99% of their work. only occasionally would it be nice to provide them access to their mail, etc from a different client
    PowerMac G4   Mac OS X (10.4.4)  

    I'll take some broad swipes at this and let the smarter people come fill in the details.
    We have a true 1:1 setup in our office and have moved to PHDs as a means of protecting against downtime. The thinking is that we will have a spare machine lying around with our base installation ready to go. If a user's machine fails we'll replace it with the spare machine, let it sync the user directory from the server, and we're back in business. It's no substitute for a real backup system, but it potentially avoids having to run a restore from your backups. It also reduces network traffic compared to plain networked homes, and still lets your users work if the server goes down, but provides the benefits of centralized management. John DeTroye wrote a nice article about this.
    If you've already got data on your "client" Mac you will need to move it onto the server. PHDs will download data from the server to the client on the first sync, but will not upload a complete home directory from the client to an empty directory on the server. You'll find some posts in this forum discussing how people have gone about migrating data prior to that first sync.
    WGM allows you to establish exclusions for stuff you don't want to sync.
    One thing to watch out for in the scenario you describe is the so-called "rabbit effect." Assume Bob uses Mac1 as his primary machine. If one day he logs into Mac2 his home directory will be downloaded to Mac2. Once he returns to Mac1 he'll still be cluttering up Mac2 with his data. If he logs into Mac3 the next day and Tom and Sue are also periodically logging into different machines, you can see how you'll end up with a mess pretty quickly.
    Hope this helps.

  • Aperture 3 and Mobile User Accounts: Don't even think about it

    Hi all.
    This is more a warning to other with a similar setup than anything else.
    I use both a desktop mac and a portable.
    As so, and since I have a Mac Mini Server, my user is what Apple calls a "Mobile User".
    Basically what it does is this: it allows me to have my user on both macs always in sync.
    To be certain that no file would be locked out by an open app, I have it to sync on login and logout only.
    Strangely enough Apple own Aperture 3 doesn't sync.
    It simply shows a generic error and that's it.
    I call tell that I've made some extensive tests regarding the syncing process and no matter what it never works.
    It doesn't matter if Aperture is closed, if the syncing is made on the login or the logout... nothing!
    As a curiosity, not directly related with this specific problem, I can also confirm that the full library package is seen as a single file to the sync agent, so even a simple open and close of the app is enough to make it try to re-sync the entire thing, instead of doing the proper thing and copy only the modified files inside of it.
    That means that even without this error it would be inpratical to work with Aperture 3 since that would mean having a nice library of quite a few gigabytes syncing every time that I tried to log out of my user session.
    I sure hope that Apple can find a way to make their own pro photo app and their server software work together.
    But until there... it's back iPhoto for me.
    Take care all.
    Pedro Fardilha

    I don't have problems syncing other files that are also system packages, like iPhoto ones... although I have a terrible suspicion that again the sync agent only sees a single file, not a bundle.
    I assume that the OS doesn't have any problem with packages since they are used pretty much elsewhere and they are basically a folder with a specific file inside that "forces" the OS to show us as a single file, instead of letting us see directly the content.
    Even the new disk image format that Apple recommends to be used in order to speed up Time Machine backups (.sparcebundle) is based in package (or bundles, whatever you prefer to call them)
    The main issue here might be the folder structure inside.
    If you do a "show package content" and, for instance, check the thumbnails folder, I can easily see some chars that might create some confusion if not properly escaped during the sync, like on this example:
    My Aperture.aplibrary/Thumbnails/%pARYo%fT52I77jmdf8mqQ/AP.Thumbnails
    (Those "%" are so prone to errors if not properly handled)
    Time Machine doesn't have any problem with both packages and those chars, so I truly hope that they use TM tech and improve the way that the syncing agent work.
    Anyways, Aperture seemed a nice app.
    I'm really sad that I can't use it because of this... specially when I'm considering getting a new digital camera.
    I understand that it was recently released so let's hope that Apple can figure out what's happening and release an update (to either Aperture or Mac OS X Server) in the next few months.
    Take care.
    Pedro Fardilha

Maybe you are looking for

  • Issue related to change of Quotas on transfering an employee

    Dear All, I have a query regarding the generation/ updation of quotas during transfers. We have 2 sets of groupings. For the 1st set of grouping as per the PSA's, PL quota is 21 days and for the 2nd set of grouping, PL quota is 24 days and is geneart

  • How do I restore column headings in Response table after accidently deleting them? Undo doesn't work.

    How do I restore column headings in Response table after accidently deleting them? Undo doesn't work (only seems to go back one level). I also have so many headings I won't be able to type them in manually!

  • Hello world tutorial

    is there any simple tutorials for starting j2 me like the classic helloworld. ones that explain the code that is. ive looked at 2 for getting started on this site but they dont really explain the code, more about getting the examples build and runnin

  • Real Player & Windows Media Player don't play a sound

    Hi, all of a sudden I cannot play Real or WMA streams anymore. I have the official Real player as well as the Microsoft player installed to use this nice widget for radio streams (http://radiotuner.wuersch.net/). It has worked all the time quite well

  • Compute 3D Skeleton

    Hello, I search some algorithm and source code in Java for compute 3D Skeleton ok discrete shape. Someone know where I cna find it ? Thank you...