Clear screen before repaint?

Is it possible to clear the JPanel before repainting? I have a program where the image on the screen changes every so often, but when it does it leaves an ugly after-image on the screen. It clears itself when I minimize and maximize again, but I was wondering if there's a way to do that in-code :)
Sincerely,
An Image Newbie

Is it possible to clear the JPanel before repainting? Yes, that is the default behaviour of JPanel (and all Swing components that are opaque).
You must have strange code if it isn't painting correctly.
If you need further help then you need to create a <b>Short, Self Contained, Compilable and Executable, Example Program</b> (SSCCE) that demonstrates the incorrect behaviour.
see http://homepage1.nifty.com/algafield/sscce.html
Don't forget to use the <b>Code Formatting Tags</b> so the posted code retains its original formatting.
see http://forum.java.sun.com/help.jspa?sec=formatting

Similar Messages

  • Clear your home screens before you upgrade

    http://www.droid-life.com/2010/08/03/manual-android-2-2-update-for-motorola-droid/
    This site has the download for 2.2 although I waited for the OTA.  It also has the beta flash, but again I'll just wait for an official release.  But when you read through the site they recommend you clear your home screens before you update.  Whether it really should be done or not I don't know but I did it and my upgrade has gone flawlessly.  If it helps with a cleaner install it's worth it.  Plus you are going to want to reorganize your screens since you are getting 5 of them anyway.

    Pretty much just bragging rights for the nerd world.  A higher score doesn't necessarily mean it's a better phone.  Unless the devices are running the same apps, settings, etc it's a relatively pointless number other than saying mine is bigger than yours.  Below is the Quadrant score of my Droid running at 1GHz from a while back.  Does that mean it's better than the N1, Shadow/Droid X or Galaxy S? not really

  • Clear tty1 before shutdown?

    Hey guys,
    I start xorg on vt5 and leave a getty running on vt1.
    During shutdown the terminal isn't cleared, so the first systemd shutdown message is printed just after the "hostname login: " getty prompt.
    Is there a way to have the tty cleared before the shutdown messages are printed?

    Is it possible to clear the JPanel before repainting? Yes, that is the default behaviour of JPanel (and all Swing components that are opaque).
    You must have strange code if it isn't painting correctly.
    If you need further help then you need to create a <b>Short, Self Contained, Compilable and Executable, Example Program</b> (SSCCE) that demonstrates the incorrect behaviour.
    see http://homepage1.nifty.com/algafield/sscce.html
    Don't forget to use the <b>Code Formatting Tags</b> so the posted code retains its original formatting.
    see http://forum.java.sun.com/help.jspa?sec=formatting

  • Urxvt patch: VTE like clear screen behavior

    I've switched to urxvt last week. I come from the VTE world (gnome-terminal, xfce-terminal and such, the latter in my case). VTE has a nice feature to which I've accustomed myself. This is the way how it handles the clear screen function (ctrl-L).
    In VTE when you press ctrl-L, the screen cursor position gets to top row and the lines get scrolled just before the visible portion of the window. This means that the scrollback remains intact so you can scroll back and see it later. If you press ctrl-L again when you are at top you get a bunch of empty lines - you can use this to mark the scrollback with empty portions when you are scrolling back large amounts of texts.  This is handy for example when you want to quickly glance at an output from a command but you want to differentiate from different outputs - I press ctr-L several times before I execute the command and then I can just quickly scroll back - I immediately spot where the command began because it has a large black spot before it.
    The way urxvt works in this case that it just positions the cursor to the top row and then just erases everything below that point. This means you lose valuable lines from the scrollback. Example: type "seq 1000", press ctr-L. Now you won't see the last lines of the command's output!
    Now it is possible that I have a misconfigured urxvt and I'd be interested in the config option which I have misconfigured.
    Here's a patch for urxvt which adds proper clear screen function and also adds the VTE-like functionality:
    *** src/command.C 2011-10-29 18:06:07.000000000 +0200
    --- src/command.C.patched 2011-10-29 18:05:28.000000000 +0200
    *************** rxvt_term::process_csi_seq ()
    *** 2932,2937 ****
    --- 2932,2948 ----
    case CSI_CUP: /* 8.3.21: (1,1) CURSOR POSITION */
    case CSI_HVP: /* 8.3.64: (1,1) CHARACTER AND LINE POSITION */
    + if (nargs == 1 && current_screen == 0)
    + {
    + // This is usually followed with clear screen so add some extra
    + // lines to avoid deleting the lines already on screen. If we are
    + // already at the top, add an extra screen height of lines.
    + int extra_lines = nrow-1;
    + if (screen.cur.row == 0)
    + extra_lines += nrow;
    + for (int i = 0; i < extra_lines; ++i)
    + scr_add_lines (L"\r\n", 2);
    + }
    scr_gotorc (arg[0] - 1, nargs < 2 ? 0 : (arg[1] - 1), 0);
    break;
    Last edited by rlblaster (2011-10-29 19:07:32)

    Now I see what's happening! Your prompt uses '\e[H' which is used as move to home. I assumed that '\e[H' is usually followed with clear screen. This means if you use it to just move the cursor to home it won't work. I don't really see how could I fix this nicely but here's a workaround for your prompt: use '\e[1;1H'. In other words:
    PS1=$'%{\e[s\e[1;1H\e[30;42;1m%}[%~][%M] %{\e[K\e[256C\e[8D\e[30;42;1m%} [%D{%H:%M}]%(?,%{\e[32;32m%}\u2588,%{\e[31;41;1m\u2588)%}%{\e[u\e[1A%}\n%{\e[0;32m%}> %{\e[0m%}'
    By the way the feature of adding extra blank lines if your cursor is already at top won't work in your prompt because your cursor is always at least on row 1. You could change the patch from
    if (screen.cur.row == 0)
    to
    if (screen.cur.row <= 1)
    to have this feature.

  • Clear screen from sql file

    at sqlplus prompt, I can type either HOST CLS or CLEAR SCREEN and both work..
    but when I put either of them in an .sql file and run it from sql with @c:\file.sql
    both commands error with:
    ORA-06550
    PLS-00103 encountered 'CLS' or 'SCREEN'
    OS IS Windows 7 with Oracle 11.1.0.6 client
    my goal is to run a dbms_output line while in a loop
    so the data shows on the screen and refreshes when it is changed
    without clearing the screen, it just shows over and over and scrolls by a list of them very fast

    Merlin128 wrote:
    at sqlplus prompt, I can type either HOST CLS or CLEAR SCREEN and both work..
    but when I put either of them in an .sql file and run it from sql with @c:\file.sql
    both commands error with:
    ORA-06550
    PLS-00103 encountered 'CLS' or 'SCREEN'
    OS IS Windows 7 with Oracle 11.1.0.6 clientThe SQL*Plus CLEAR SCREEN command works for me.
    my goal is to run a dbms_output line while in a loop
    so the data shows on the screen and refreshes when it is changed
    without clearing the screen, it just shows over and over and scrolls by a list of them very fastSorry, I don't think you can do that.
    Dbms_output does not display anything while the PL/SQL code is running. In fact, it doesn't actually display anything, ever. Dbms_output merely puts text to be displayed into a buffer. When control returns to SQL*Plus, then SQL*Plus displays all of the buffered text together. So if your PL/SQL block consists of a loop that takes 10 seconds per iteration, and you go through the loop 6 times, you will wait a full 60 seconds before seeing any output, and then see all 6 lines as quickly as PL/SQL can display them.

  • 15" i7 Macbook Pro from early 2011.takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get

    Hello All,
    I have a 15" i7 Macbook Pro from early 2011. The past few weeks, it has been getting increasingly difficult to get on my computer. It takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get to the dark gray log-in screen. Even when I finally get logged in to start working, thinking it would be okay now, it shuts down randomly.
    I've ruled out the possibility of a software problem because I've just done a clean re-install of Mac OS X Mavericks on my computer just yesterday.
    I did upgrade the RAM recently, about a month and a half ago, from 4GB to 16GB, I went to the apple store four days after that upgrade to have them do a hardware test, and clean the inside of my laptop, which helped with previous heat issues. When they did the hardware test, the hardware was all registered as fine from their system.
    I've tried resetting the SMC, PRAM, and doing the internet recovery hardware test, but to no avail. I thought I could at least find out what parts needed to be replaced from the hardware test but it seems that when the hardware test is almost finished, the computer just shuts down, So I am unable to see the results.
    My computer is also having battery issues, under battery condition, it says "replace now," parts have been ordered, waiting for arrival. But if the battery health is low, it should still boot up fine, it would just hold a significantly less charge.
    Could this be a hard drive issue?
    Has anyone had similar symptoms and how was it resolved?
    Does anyone know what I can do to alleviate this issue?
    I haven't had time to take it to Apple because I'm currently taking a 21 credit semester academically. I'm an art and design student so my computer is basically the bane of my existence. Help! Any constructive advice is welcomed!
    Thank you so much for your input!
    -Christina C.

    Problem description:
    The Hard Disk is failing.
    EtreCheck version: 2.0.11 (98)
    Report generated November 4, 2014 at 7:59:28 AM EST
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 0:3:43
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750.16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      HDV4 (disk0s2) /  [Startup]: 749.30 GB (712.10 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Support
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Support
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.avast.userinit.plist Support
    Launch Daemons: ℹ️
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.avast.init.plist Support
      [loaded] com.avast.uninstall.plist Support
      [loaded] com.avast.update.plist Support
      [invalid?] com.perion.searchprotectd.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.avast.home.userinit.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [invalid?] com.jdibackup.ZipCloud.autostart.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      AdobePDFViewer: Version: 10.1.1 Support
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
      Default Browser: Version: 537 - SDK 10.9
    User Internet Plug-ins: ℹ️
      TroviNPAPIPlugin: Version: 1.0 - SDK 10.9 Support
      Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
      Avast Online Security
      Trovi Search for Safari
    3rd Party Preference Panes: ℹ️
      None
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          16% mds
          7% WindowServer
          1% loginwindow
          1% fontd
          1% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB com.avast.daemon
      86 MB Google Chrome
      52 MB Finder
      52 MB WindowServer
      41 MB Google Chrome Helper
    Virtual Memory Information: ℹ️
      13.45 GB Free RAM
      1.34 GB Active RAM
      944 MB Inactive RAM
      1.43 GB Wired RAM
      1.11 GB Page-ins
      0 B Page-outs

  • HT3771 Previewing a document in full screen before printing?

    How do i preview a pdf doc in full screen before i print it (or any document for that mater)?
    I need to check that i can see all the pages before i print it, as i am printng 6 slides on one page.

    Welcome to Apple Support Communities.
    There are lots of useful tool 'buttons' available in Preview that are not included in the default toolbar.
    Open a multi-page document in Preview, and then select Tools, Customize Toolbar.
    I find Print, Actual Size, Zoom to Fit, and Page (number) to be useful when viewing, editing, and printing multi-page pdfs.
    Be sure to drag the lower left corner of the pdf Preview window to full size or click the double-arrow to see all the tool buttons you've added.
    If you view a multi-page pdf with the Sidebar visible in the right column, you'll have the advantage of seeing page thumbnails and still able to check the full-size document in the left window.
    I use the Actual Size button to quickly zoom the left window, but you can also click the '+' button to increase the document to 100% size, to verify the contents of each page.
    Clicking the 'Print' button seems to take away all of that, showing only a thumbnail of the each page again.
    BUT...
    click the pdf button at the bottom left of the screen, and select 'Open PDF in Preview'
    I know this seems redundant, but it reopens the document in a scrollable (6-image per page) view where you can still zoom AND has a 'Print' button at the bottom that will start the printing immediately, once you're satisfied with the result.
    Hope that helps.

  • MacBook Pro w/10.6.8 requires me to sign in twice at initial log-in screen before loading

    My MacBook Pro w/10.6.8 requires me to sign in twice at initial log-in screen before loading.. In addition, after Safari 5.1.7 has been open for a few hours the browser stops loading pages and then the entire computer  freezes and I have to do a forced reboot with the power button. The first push of the power button brings up the four options screen: "sleep, restart, turn off, logout" but they don't work. I have to force shutdown.
    I don't have either of these problems from a safe boot. However a boot from a clean "Test" administrator account still requires me to login twice before the desktop loads.
    If I login once as either Test or my User Name then choose the " back" button then switch to the other login option before pressig the return key, I only have to login in once at the new login screen. 
    This problem began after I partitioned my 500GB HD with a 10.6.8 partition--the problem partition-- and a Lion 10.7.4 partition (to avoid iCloud issues with Snow Leopard). The Lion partition does not require double login. I have not done anything yet with the Lion partition except software updates.
    I have also been having LCD problems  (according to recent Genius Bar visit, not related to the NVIDIA 8300 problem). Sometimes (every 2-3 times I start the MBP) the MBP will reboot but the screen will be so dark I can't see the cursor and can barely see the desktop. The brightness is set at max and pressing the buttons up/down don't affect the dark screen. Usually I restart and the screen appears normal. This problem occurs with Safe, Test and User Name boots.
    Thanks for any suggestions

    I have the same issue and eventually revirted to logging in web wise to emails and have found that its not so bad- but the moment app wants to access mail it slows down and have had had issues again.
    I know that Mac products when accessing emails have a tendancey to semi download images- and was told that this can be the issue by a friend( not sure how rellable this is) but have noticed a coralation between the two factors.
    I know that there are issues with hotmail when on certain devices ( had the warning form hotmail's site)- but still have yet to be shown how to remove my email from Mail- if yo have any ideas I might try it.
    Please if you have any advice of how to remove main email that would be great and it may be a  option for you. 

  • Clear Screen, Sql plus Error, in release 10.2.0.1.0

    Hi there,
    I'm having problem in using clear screen command in SQLPlus utility of Oracle Release 10.2.0.1.0. When executing clear screen in SQL Plus ( in command prompt) in windows machine, suddenly a dialogue box opens and saying that "SQLPlus encountered an error and sorry for inconvenience "
    Is this the problem with OS or Oracle Client?
    Could anyone please help me in resolving this issue?
    Thanks
    Raja

    So that is the problem with Oracle client only, not with the OS configuration and all.... shall i assume?

  • IMac intel: 5 minutes of blue screen before startup! Help!

    Hi-
    I have a Core Duo 17" iMac. I've erased the hard drive and installed a clean, new copy of 10.5. It takes the computer 5 minutes of blue screen before starting. There are no peripherals attached, no other software than the Apple system software installed. I erased the hard drive and installed 10.6, and had the same problem. Reset the SMC, zapped the PRAM. Replaced the memory chips. Replaced the hard drive. Nothing helps.
    The console log shows lots of delay about "did not die after sending SIGKILL." The Console log also shows the 5 minute delay in startup. In the log below, look at the entry at 5:21 pm on 9/15. That's when the computer started, then the next entry is 5 minutes later at 5:26pm. That's my 5 minute blue screen startup.
    Anyone know what's going on? Thanks.
    KC
    9/15/10 3:16:40 PM com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist:
    9/15/10 3:16:40 PM com.apple.launchctl.System[2] No such file or directory
    9/15/10 3:16:40 PM com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    9/15/10 3:16:41 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 3:16:41 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    9/15/10 3:16:41 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 3:16:41 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 3:16:49 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 7 seconds
    9/15/10 3:16:50 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 6 seconds
    9/15/10 3:16:50 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 6 seconds
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] ...Generating key pair...
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] ...creating certificate...
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Serial Number : 57 34 D8 49
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Issuer Name :
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Common Name : com.apple.systemdefault
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Org : System Identity
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Subject Name :
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Common Name : com.apple.systemdefault
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Org : System Identity
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Cert Sig Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 05 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] alg params : 05 00
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Not Before : 19:16:53 Sep 15, 2010
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Not After : 19:16:53 Sep 10, 2030
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Pub Key Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 01 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] alg params : 05 00
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Pub key Bytes : Length 140 bytes : 30 81 89 02 81 81 00 C0 ...
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] CSSM Key :
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Algorithm : RSA
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Key Size : 1024 bits
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Key Use : CSSMKEYUSEENCRYPT CSSMKEYUSEVERIFY CSSMKEYUSEWRAP
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Signature : 128 bytes : BB 12 82 9F 64 95 52 AD ...
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Other field: : OID : < 06 0C 60 86 48 01 86 F8 4D 02 01 01 01 17 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Other field: : OID : < 06 0C 60 86 48 01 86 F8 4D 02 01 01 01 16 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Extension struct : OID : < 06 03 55 1D 25 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] Critical : FALSE
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] purpose 0 : OID : < 06 09 2A 86 48 86 F7 63 64 04 04 >
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] ..cert stored in Keychain.
    9/15/10 3:16:53 PM com.apple.configureLocalKDC[57] ..identity registered for domain com.apple.systemdefault.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] ...Generating key pair...
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] ...creating certificate...
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Serial Number : 34 EC 48 60
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Issuer Name :
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Common Name : com.apple.kerberos.kdc
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Org : System Identity
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Subject Name :
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Common Name : com.apple.kerberos.kdc
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Org : System Identity
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Cert Sig Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 05 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] alg params : 05 00
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Not Before : 19:16:53 Sep 15, 2010
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Not After : 19:16:53 Sep 10, 2030
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Pub Key Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 01 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] alg params : 05 00
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Pub key Bytes : Length 140 bytes : 30 81 89 02 81 81 00 CA ...
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] CSSM Key :
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Algorithm : RSA
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Key Size : 1024 bits
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Key Use : CSSMKEYUSEENCRYPT CSSMKEYUSEVERIFY CSSMKEYUSEWRAP
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Signature : 128 bytes : 08 0B 5F 93 DC 23 07 D4 ...
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Other field: : OID : < 06 0C 60 86 48 01 86 F8 4D 02 01 01 01 17 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Other field: : OID : < 06 0C 60 86 48 01 86 F8 4D 02 01 01 01 16 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Extension struct : OID : < 06 03 55 1D 25 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Critical : FALSE
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] purpose 0 : OID : < 06 09 2A 86 48 86 F7 63 64 04 04 >
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] ..cert stored in Keychain.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] ..identity registered for domain com.apple.kerberos.kdc.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] launchctl: Error unloading: com.apple.kdcmond
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q add_principal -randkey afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] WARNING: no policy specified for afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57; defaulting to no policy
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Principal "afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95 AA2FC10A4004C80A40523C628FFCAEA57" created.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q ktadd afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57 with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57 with kvno 3, encryption type ArcFour with HMAC/md5 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57 with kvno 3, encryption type DES cbc mode with CRC-32 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/bin/defaults write /Library/Preferences/com.apple.AppleFileServer kerberosPrincipal afpserver/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95A A2FC10A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q add_principal -randkey cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] WARNING: no policy specified for cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57; defaulting to no policy
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Principal "cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC 10A4004C80A40523C628FFCAEA57" created.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q ktadd cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57 with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57 with kvno 3, encryption type ArcFour with HMAC/md5 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] Entry for principal cifs/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57 with kvno 3, encryption type DES cbc mode with CRC-32 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/bin/defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server LocalKerberosRealm LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q add_principal -randkey vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57
    9/15/10 3:16:54 PM com.apple.configureLocalKDC[57] WARNING: no policy specified for vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57; defaulting to no policy
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Principal "vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC1 0A4004C80A40523C628FFCAEA57" created.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] /usr/sbin/kadmin.local-q ktadd vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Authenticating as principal root/admin@LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57 with password.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Entry for principal vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57 with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Entry for principal vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57 with kvno 3, encryption type ArcFour with HMAC/md5 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] Entry for principal vnc/LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57@LKDC:SHA1.5D64E95AA2FC10 A4004C80A40523C628FFCAEA57 with kvno 3, encryption type DES cbc mode with CRC-32 added to keytab WRFILE:/etc/krb5.keytab.
    9/15/10 3:16:55 PM com.apple.configureLocalKDC[57] LKDC:SHA1.5D64E95AA2FC10A4004C80A40523C628FFCAEA57
    9/15/10 3:16:56 PM com.apple.ATSServer[107] FODBCheck: New annex file created
    9/15/10 3:24:55 PM [0x0-0x5005].com.apple.SetupAssistant[172] ...System identity already exists for domain com.apple.systemdefault. Done.
    9/15/10 3:26:50 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 3:26:52 PM com.apple.KerberosAutoConfig[198] The machine is standalone
    9/15/10 3:26:52 PM com.apple.KerberosAutoConfig[198] Removing /Library/Preferences/edu.mit.Kerberos
    9/15/10 3:26:58 PM [0x0-0x5005].com.apple.SetupAssistant[172] ...System identity already exists for domain com.apple.systemdefault. Done.
    9/15/10 3:27:28 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[171]) Exited: Terminated
    9/15/10 3:27:29 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[247]) Exited: Terminated
    9/15/10 3:27:29 PM com.apple.ATSServer[259] FODBCheck: New annex file created
    9/15/10 3:27:29 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 10 seconds
    9/15/10 3:27:32 PM SoftwareUpdateCheck[267] Checking for updates
    9/15/10 3:27:35 PM SyncServer[278] SyncServer: Reaping records for inactive clients. Next reap on 2010-10-30 15:27:35 -0400
    9/15/10 3:27:35 PM SyncServer[278] SyncServer: Truth vacuumed. Next vacuum date 2010-09-29 15:27:35 -0400
    9/15/10 3:27:38 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    9/15/10 3:27:38 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    9/15/10 3:28:01 PM SoftwareUpdateCheck[267] Downloading "AirPort Client Update 2009-001"
    9/15/10 3:28:03 PM SoftwareUpdateCheck[267] Auto-download of "AirPort Client Update 2009-001" SUCCESSFUL.
    9/15/10 3:28:03 PM SoftwareUpdateCheck[267] Downloading "Front Row Update"
    9/15/10 3:28:17 PM SoftwareUpdateCheck[267] Auto-download of "Front Row Update" SUCCESSFUL.
    9/15/10 3:28:17 PM SoftwareUpdateCheck[267] Downloading "QuickTime"
    9/15/10 3:28:33 PM Software Update[303] arguments=(null)
    9/15/10 3:29:40 PM com.apple.launchd[219] ([0x0-0xf00f].SoftwareUpdateCheck[267]) Exited: Killed
    9/15/10 3:40:28 PM com.apple.launchd[219] (com.apple.pboard[260]) Exited: Terminated
    9/15/10 3:40:28 PM com.apple.launchd[219] (com.apple.UserEventAgent-Aqua[257]) Exited: Terminated
    9/15/10 3:45:04 PM com.apple.launchd[1] (0x10aca0.mdworker[935]) Exited abnormally: Abort trap
    9/15/10 3:45:04 PM com.apple.launchd[1] (0x10aca0.mdworker) Failed to check-in!
    9/15/10 3:52:05 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] current cache invalid because /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore has changed
    9/15/10 3:52:06 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    9/15/10 3:52:07 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    9/15/10 3:52:07 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    9/15/10 3:52:07 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    9/15/10 3:52:08 PM com.apple.dyld[6699] updatedyld_sharedcache[6699] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    9/15/10 3:52:50 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 3:53:25 PM [0x0-0x1c01c].com.apple.SoftwareUpdate[343] kextcache: / locked; waiting for lock
    9/15/10 3:53:39 PM [0x0-0x1c01c].com.apple.SoftwareUpdate[343] kextcache: proceeding
    9/15/10 3:53:40 PM com.apple.loginwindow[333] Wed Sep 15 15:53:40 gillian-kyless-imac.local ManagedClient[340] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    9/15/10 3:55:39 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 3:55:39 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 3:55:39 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 3:55:39 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 3:55:39 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    9/15/10 3:55:49 PM com.apple.su.startup[19] Checking for securityd
    9/15/10 3:55:49 PM com.apple.su.startup[19] Running authsys_printadmin tool
    9/15/10 3:55:50 PM com.apple.su.startup[19] Cleaning up startup script resources
    9/15/10 3:59:51 PM com.apple.firmwaresyncd[30] kextload: /System/Library/Extensions/msdosfs.kext loaded successfully
    9/15/10 4:00:58 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[239]) Exited: Terminated
    9/15/10 4:00:58 PM com.apple.launchd[242] (org.x.startx) Unknown key for boolean: EnableTransactions
    9/15/10 4:01:10 PM Software Update[268] arguments=(null)
    9/15/10 4:11:15 PM com.apple.launchd[242] (com.apple.UserEventAgent-Aqua[250]) Exited: Terminated
    9/15/10 4:11:15 PM com.apple.launchd[242] (com.apple.pboard[254]) Exited: Terminated
    9/15/10 4:12:23 PM com.apple.launchd[1] (com.apple.installdb.system) Throttling respawn: Will start in 3 seconds
    9/15/10 4:13:58 PM com.apple.launchd[1] (0x106af0.updatedyldshar[916]) Check-in of Mach service failed. PID 916 is not privileged: com.apple.dyld
    9/15/10 4:14:14 PM com.apple.loginwindow[290] Wed Sep 15 16:14:14 gillian-kyless-imac.local ManagedClient[297] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    9/15/10 4:14:14 PM com.apple.loginwindow[290] Wed Sep 15 16:14:14 gillian-kyless-imac.local ManagedClient[297] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    9/15/10 4:14:14 PM com.apple.loginwindow[290] 2010-09-15 16:14:14.552 ManagedClient[297:10b] HIToolbox: received notification of WindowServer event port death.
    9/15/10 4:14:14 PM com.apple.loginwindow[290] 2010-09-15 16:14:14.556 ManagedClient[297:10b] port matched the WindowServer port created in BindCGSToRunLoop
    9/15/10 4:14:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Exit timeout elapsed (20 seconds). Killing.
    9/15/10 4:14:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 5 seconds ago...
    9/15/10 4:14:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 10 seconds ago...
    9/15/10 4:14:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 15 seconds ago...
    9/15/10 4:14:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 20 seconds ago...
    9/15/10 4:14:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 25 seconds ago...
    9/15/10 4:15:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 30 seconds ago...
    9/15/10 4:15:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 35 seconds ago...
    9/15/10 4:15:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 40 seconds ago...
    9/15/10 4:15:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 45 seconds ago...
    9/15/10 4:15:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 50 seconds ago...
    9/15/10 4:15:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 55 seconds ago...
    9/15/10 4:15:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 60 seconds ago...
    9/15/10 4:15:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 65 seconds ago...
    9/15/10 4:15:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 70 seconds ago...
    9/15/10 4:15:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 75 seconds ago...
    9/15/10 4:15:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 80 seconds ago...
    9/15/10 4:15:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 85 seconds ago...
    9/15/10 4:16:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 90 seconds ago...
    9/15/10 4:16:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 95 seconds ago...
    9/15/10 4:16:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 100 seconds ago...
    9/15/10 4:16:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 105 seconds ago...
    9/15/10 4:16:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 110 seconds ago...
    9/15/10 4:16:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 115 seconds ago...
    9/15/10 4:16:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 120 seconds ago...
    9/15/10 4:16:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 125 seconds ago...
    9/15/10 4:16:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 130 seconds ago...
    9/15/10 4:16:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 135 seconds ago...
    9/15/10 4:16:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 140 seconds ago...
    9/15/10 4:16:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 145 seconds ago...
    9/15/10 4:17:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 150 seconds ago...
    9/15/10 4:17:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 155 seconds ago...
    9/15/10 4:17:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 160 seconds ago...
    9/15/10 4:17:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 165 seconds ago...
    9/15/10 4:17:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 170 seconds ago...
    9/15/10 4:17:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 175 seconds ago...
    9/15/10 4:17:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 180 seconds ago...
    9/15/10 4:17:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 185 seconds ago...
    9/15/10 4:17:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 190 seconds ago...
    9/15/10 4:17:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 195 seconds ago...
    9/15/10 4:17:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 200 seconds ago...
    9/15/10 4:17:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 205 seconds ago...
    9/15/10 4:18:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 210 seconds ago...
    9/15/10 4:18:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 215 seconds ago...
    9/15/10 4:18:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 220 seconds ago...
    9/15/10 4:18:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 225 seconds ago...
    9/15/10 4:18:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 230 seconds ago...
    9/15/10 4:18:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 235 seconds ago...
    9/15/10 4:18:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 240 seconds ago...
    9/15/10 4:18:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 245 seconds ago...
    9/15/10 4:18:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 250 seconds ago...
    9/15/10 4:18:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 255 seconds ago...
    9/15/10 4:18:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 260 seconds ago...
    9/15/10 4:18:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 265 seconds ago...
    9/15/10 4:19:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 270 seconds ago...
    9/15/10 4:19:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 275 seconds ago...
    9/15/10 4:19:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 280 seconds ago...
    9/15/10 4:19:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 285 seconds ago...
    9/15/10 4:19:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 290 seconds ago...
    9/15/10 4:19:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 295 seconds ago...
    9/15/10 4:19:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 300 seconds ago...
    9/15/10 4:19:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 305 seconds ago...
    9/15/10 4:19:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 310 seconds ago...
    9/15/10 4:19:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 315 seconds ago...
    9/15/10 4:19:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 320 seconds ago...
    9/15/10 4:19:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 325 seconds ago...
    9/15/10 4:20:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 330 seconds ago...
    9/15/10 4:20:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 335 seconds ago...
    9/15/10 4:20:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 340 seconds ago...
    9/15/10 4:20:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 345 seconds ago...
    9/15/10 4:20:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 350 seconds ago...
    9/15/10 4:20:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 355 seconds ago...
    9/15/10 4:20:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 360 seconds ago...
    9/15/10 4:20:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 365 seconds ago...
    9/15/10 4:20:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 370 seconds ago...
    9/15/10 4:20:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 375 seconds ago...
    9/15/10 4:20:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 380 seconds ago...
    9/15/10 4:20:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 385 seconds ago...
    9/15/10 4:21:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 390 seconds ago...
    9/15/10 4:21:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 395 seconds ago...
    9/15/10 4:21:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 400 seconds ago...
    9/15/10 4:21:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 405 seconds ago...
    9/15/10 4:21:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 410 seconds ago...
    9/15/10 4:21:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 415 seconds ago...
    9/15/10 4:21:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 420 seconds ago...
    9/15/10 4:21:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 425 seconds ago...
    9/15/10 4:21:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 430 seconds ago...
    9/15/10 4:21:49 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 435 seconds ago...
    9/15/10 4:21:54 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 440 seconds ago...
    9/15/10 4:21:59 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 445 seconds ago...
    9/15/10 4:22:04 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 450 seconds ago...
    9/15/10 4:22:09 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 455 seconds ago...
    9/15/10 4:22:14 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 460 seconds ago...
    9/15/10 4:22:19 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 465 seconds ago...
    9/15/10 4:22:24 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 470 seconds ago...
    9/15/10 4:22:29 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 475 seconds ago...
    9/15/10 4:22:34 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 480 seconds ago...
    9/15/10 4:22:39 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 485 seconds ago...
    9/15/10 4:22:44 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Did not die after sending SIGKILL 490 seconds ago...
    9/15/10 4:22:45 PM com.apple.launchd[1] (com.apple.SystemStarter[353]) Exited: Killed
    9/15/10 4:23:35 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 4:23:35 PM com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    9/15/10 4:23:35 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 4:23:35 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 4:23:35 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 4:23:35 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    9/15/10 4:23:44 PM org.ntp.ntpd[14] Error : nodename nor servname provided, or not known
    9/15/10 4:28:50 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[162]) Exited: Terminated
    9/15/10 4:28:50 PM com.apple.launchd[168] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    9/15/10 4:28:50 PM com.apple.launchd[168] (org.x.startx) Unknown key for boolean: EnableTransactions
    9/15/10 4:29:24 PM Software Update[196] arguments=(null)
    9/15/10 4:52:38 PM com.apple.launchctl.System[2] fsck_hfs: Volume is journaled. No checking performed.
    9/15/10 4:52:38 PM com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    9/15/10 4:52:40 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 4:52:40 PM com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    9/15/10 4:52:40 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 4:52:40 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 4:52:40 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 4:52:40 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    9/15/10 4:57:50 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[139]) Exited: Terminated
    9/15/10 4:57:51 PM com.apple.launchd[145] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    9/15/10 4:57:51 PM com.apple.launchd[145] (org.x.startx) Unknown key for boolean: EnableTransactions
    9/15/10 5:21:02 PM com.apple.launchctl.System[2] fsck_hfs: Volume is journaled. No checking performed.
    9/15/10 5:21:02 PM com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    9/15/10 5:21:03 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 5:21:03 PM com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    9/15/10 5:21:03 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 5:21:03 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 5:21:03 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 5:21:03 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    9/15/10 5:26:15 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[76]) Exited: Terminated
    9/15/10 5:26:15 PM com.apple.launchd[82] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    9/15/10 5:26:15 PM com.apple.launchd[82] (org.x.startx) Unknown key for boolean: EnableTransactions
    9/15/10 5:32:47 PM com.apple.loginwindow[23] Shutdown NOW!
    9/15/10 5:32:47 PM com.apple.loginwindow[23] System shutdown time has arrived
    9/15/10 5:33:30 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    9/15/10 5:33:30 PM com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy) Unknown key for boolean: EnableTransactions
    9/15/10 5:33:30 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    9/15/10 5:33:30 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    9/15/10 5:33:30 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    9/15/10 5:33:30 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    9/15/10 5:33:40 PM org.ntp.ntpd[14] Error : nodename nor servname provided, or not known
    9/15/10 5:38:39 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[75]) Exited: Terminated
    9/15/10 5:38:39 PM com.apple.launchd[81] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    9/15/10 5:38:39 PM com.apple.launchd[81] (org.x.startx) Unknown key for boolean: EnableTransactions
    9/15/10 5:41:43 PM com.apple.launchd[81] (0x109420.Locum[126]) Exited: Terminated

    Curious to know how you got to 10.5.8, If you went through Software Update, using the "Delta" updates, or if you used the 10.5.8 Combo? It might be worthwhile applying (or re-applying) the 10.5.8 Combo, which might serve to fill in anything missing or possibly corrupted.
    http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
    The other thing I'd try is running Applejack which is a very useful little program for troubleshooting and repairing. It runs from Single User Mode. Hold CMD-S at the startup chime. Here's a short article explaining how it's used. (Also, be sure to read the Read Me.) It's very easy to use. You just follow the on screen prompts. First, just type in applejack and press return. To begin with, I'd only run it only for steps 3 and 4, which will do a relatively light cache cleaning (but, importantly in your case, clean out the boot cache) and check for corrupted Preference files. Doing it this way, you'll also be able to run those steps for your user, not just the system. If that doesn't help, you can run it for deeper cache cleaning by typing in applejack AUTO and let it run through a full sequence of tasks. Note: that if you do a deeper cache cleaning, you can expect the system to run a bit slower until those caches are rebuilt.
    http://reviews.cnet.com/8301-13727_7-10334620-263.html?tag=mfiredir
    Download
    http://applejack.sourceforge.net/
    Message was edited by: WZZZ

  • After having downloaded the free version of Maverick OS X, HD version, I haven`t got a clear screen anymore and even on my photos lots of scratches in different colours appear. It seems to me that something went wrong.

    Since I have downloaded the free version Maverick OS X, HD version, from the App Store, I haven`t got anymore a clear screen whenever I open a page. Scratches and stripes appear and this is especially annoying when I wanna have a look on my downloaded photos from my iPhone 5 S. Does anybody know a solution ? Maybe somebody is struggling with the same problem.

    I'm not sure what you mean by HD Version. There is only one Mavericks and I find nothing about HD.
    Perhaps you have the display resolution set wrong for your display.

  • Black screen before going to sleep

    With the "dim screen..." option box UNCHECKED, instead of dimming the screen before putting the display to sleep, the screen turns black. The same kinda black as if you dim your backlight to 0.
    So I can still see some windows etc... but the backlight is just not working.
    This is very annoying cause it turns my screen to black after one minute when I am on the battery and it makes it impossible to read a text.
    I believe this is a bug... what do you think, o you have the same problem?
    PS: Of course my sleep setting is set to a much longer time (15 minutes) so it is not related to that.

    Time stamp                Domain             
    Message                                                                   
    Duration 
    Delay    
    ==========                ======             
    =======                                                                   
    ======== 
    =====    
    UUID: Dxxxxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxxxxx
    7/6/13 11:02:32 PM GMT+0 Sleep             
    Software Sleep Sleep: Using AC (Charge:100%)                             
    154 secs 
    7/6/13 11:02:32 PM GMT+0 Timedout           
    Kernel: Response from TracSrvWrapper timed out                           
    30000 ms 
    7/6/13 11:02:33 PM GMT+0 SlowResponse       
    PMConnection: Response from mDNSResponder is slow (powercaps:0x0)         
    1191 ms 
    7/6/13 11:02:33 PM GMT+0 WakeRequests       
    Clients requested wake events: None                                       
    7/6/13 11:05:06 PM GMT+0 Wake               
    Wake due to EHC1/HID Activity: Using AC (Charge:100%)                     
    653 secs 
    Sleep/Wakes since boot:4   Dark Wake Count in this sleep cycle:0
    I used those command "pmset -g log"  to get this log and found the problem.

  • Out of memory, clear screen, cannot boot, no icons

    I have lost all icons. Cannot boot without a hard boot. Clear screen.
    All day long it said out of memory. I have 10gb. I cannot even access utilities or any programs.
    Really lost.

    http://www.macmaps.com/diskfull.html
    http://www.thexlab.com/faqs/freeingspace.html
    https://discussions.apple.com/thread/2804827?threadID=2804827
    Boot from another drive then. Don't have one, then boot from OS X DVD : Restore : and copy (clone) 'source' your drive to a new 'target' drive
    http://macperformanceguide.com/Mac-HowToClone.html
    http://macperformanceguide.com/Mac-HowToClone-backup.html

  • How to call selection screen before smartforms?

    Hi experts,
    I wanna call a selection screen before displaying smartforms. In NACE transaction, I have program that calls the smartforms and In that program, I wanna add a selection screen with three fields whom values comes from a value range that prepared by me. I don't wanna use popup selection FM's because as ,I said, I wanna display the values according to a value range.
    Do you know any way to do this?

    REPORT zsd_rv56td00.
    SET EXTENDED CHECK OFF.
    TABLES: vbpla, thead, ttxern, ttxit, t005, vbddl, stxh, sadr. "SADR40A
    INCLUDE vttkdata.                      "Shipment Header
    INCLUDE vttsdata.                      "Shipment Segment
    INCLUDE vttpdata.                      "Shipment Items
    INCLUDE vbpadata.                      "Partner
    INCLUDE vtfadata.                      "Flow
    INCLUDE sadrdata.                      "Address
    INCLUDE vtlfdata.                      "Delivery Selection
    INCLUDE rvadtabl.                      "Messages
    INCLUDE vsedata.                       "shipping units
    INCLUDE rv56acom.                      "I/O-Structure
    *INCLUDE zsd_form_screens.
    SET EXTENDED CHECK ON.
    DATA:
      xscreen(1)              TYPE c,
      retcode                 LIKE sy-subrc VALUE 0,
      there_was_output(1)     TYPE c        VALUE space,
      new_page_was_ordered(1) TYPE c        VALUE space.
    CONSTANTS:
      no(1)  VALUE space,
      yes(1) VALUE 'X'.
    TABLES : tpar,vbak.                                         "n_742056.
    SELECTION-SCREEN BEGIN OF SCREEN 900.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS :
    s_ulke FOR vbak-zzcikisulke,
    s_gumruk FOR vbak-zzvarisgumruk,
    s_ant FOR vbak-zzantrepo.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 900.
    Florian as you can see I created the screen! It exists!

  • Why is the voice not as clear as before.

    Because i am a semi blind user, the voice is not as clear as before. The main keyboard is to bright, not user friendly for me.

    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

Maybe you are looking for