Startup and networking

when booting my computer networking hangs then fails to load...
this is my error
Error for wireless request "Set Encode" (8B2A)
set failed on eth1: operation not supported
when It finally boots i can run #/etc/rc.d/network restart and it works every time.
What am I doing wrong??

this does happen at every start...
this started happening after i added the network key..
/etc/conf.d/wireless
wlan_eth1="eth1 essid lostsanity key (128bit wepkey)"
WLAN_INTERFACES=(eth1)
/etc/rc.conf
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.utf8"
HARDWARECLOCK="localtime"
TIMEZONE="United States/Eastern"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# Scan hardware and load required modules at bootup
MOD_AUTOLOAD="yes"
# Module Blacklist - modules in this list will never be loaded by udev
MOD_BLACKLIST=()
# Modules to load at boot-up (in this order)
# - prefix a module with a ! to blacklist it
MODULES=(sky2 ipw2200 acpi-cpufreq cpufreq-ondemand)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
HOSTNAME="laptop"
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available
# interfaces.
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
lo="lo 127.0.0.1"
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
eth0="dhcp"
eth1="dhcp"
INTERFACES=(lo !eth0 eth1)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network-profiles
#NET_PROFILES=(main)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
DAEMONS=(syslog-ng network netfs crond alsa acpid cpufreq)
# End of file
anything else that might be helpfull?

Similar Messages

  • Using launchd to send an email on startup and shutdown

    Hello All !
    I'd like to get an email whenever my Mac starts up and shuts down, since I have to leave it unattended for quite some long periods of time (and even with the help of a UPS, power goes out anyway...). My Mac runs under Mac OS X Lion.
    I found some help on the Internet, mainly from this page : http://www.syntaxtechnology.com/2009/06/email-on-shutdown-and-restart/ , which applies to Linux, and hoped it could work on Mac OS X (I thought at first I could just drop a script in something like /etc/init.d/ or /etc/rc.d/rc5.d but well... we have launchd instead...).
    The first method listed in the page above worked well, but sends an email only on startup (for a reminder: you add a line that starts with @reboot in your crontab, and a command that sends directly an email).
    I then tried to adapt the second method to Mac OS X, and succeeded partially: I wrote a small script based on what was shown on that page (a start and stop function, start gets called when the script is started, and stop gets called based on a trap on various kill signals, with an infinite wait loop: see below). I also wrote the plist file, loaded it in launchd and rebooted my Mac several times to test everything.
    I get an email on each startup (yeah!), but the shutdown mail gets sent only at the next startup. So I guess that postfix gets killed by the shutdown process *before* being able to send my shutdown email :-(
    So here are my main questions, if someone can help me:
    1. is there a way to precisely call a script during the shutdown process, meaning giving it a priority so it gets called before postfix dies ? (like the rc directories and the naming conventions (KnnScriptName and SnnScriptName) found on some Linux/Unix).
    2. is it possible to do that with launchd ? if not, what would be the Mac OS X sanctionned way of doing this ?
    Other things:
    3. my shell script writing ability is kind of rusty, so maybe I made some "very bad shell writingTM": l'm not sure putting an infinite while loop with a 15 second pause in it is the best way of telling a script to do nothing. There might other things in there that would make an Unix guru jump out of his chair: please tell me :-)
    This is my plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC “-//Apple Computer//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
    <plist version=“1.0”>
    <dict>
    <key>Disabled</key>
    <false/>
    <key>Label</key><string>org.amarante.startshutemail</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Library/Scripts/startshutemail-launchd.sh</string>
    <string>start</string>
    </array>
    <key>RunAtLoad</key><true/>
    </dict>
    </plist>
    And this is the script that does the job:
    #!/bin/bash
    # PHL 20120604 startshutemail-launchd.sh
    # Send an email on startup and shutdown (version for launchd)
    # Based on script and explanations found here:
    # http://www.syntaxtechnology.com/2009/06/email-on-shutdown-and-restart/
    # Modification history
    # PHL 20120604 v01 First version
    # Environment variables #################################################
    DEST_EMAIL="[email protected]"
    SRV_NAME=Amarante
    EVENT_TIME=$(date +%Y/%m/%d-%H:%M:%S)
    RESTART_SUBJECT="[$SRV_NAME] $EVENT_TIME : System Startup"
    RESTART_BODY="This is an automated message to notify you that $SRV_NAME started successfully at $EVENT_TIME."
    SHUTDOWN_SUBJECT="[$SRV_NAME] $EVENT_TIME : System Shutdown"
    SHUTDOWN_BODY="This is an automated message to notify you that $SRV_NAME is shutting down now ($EVENT_TIME)."
    # Functions ##########
    stop()
    echo "$SHUTDOWN_BODY" | mail -s "$SHUTDOWN_SUBJECT" $DEST_EMAIL
    return 0
    start()
    echo "$RESTART_BODY" | mail -s "$RESTART_SUBJECT" $DEST_EMAIL
    return 0
    # Main part #########
    case $1 in
    stop)
    stop
    start)
    start
    esac
    # trap kill signals to send an email
    trap stop HUP INT QUIT ABRT KILL ALRM TERM TSTP
    # sleep until killed
    while :
      do
        sleep 15
      done
    Thanks for your help, and any comment :-)
    Paul-Henri

    Thanks a lot for your answer, Camelot, even if it sorts of confirm what I suspected. Pinging a machine from an external observer is a solution, but it will also report broken links problems and not only a computer shutting down, and it raises the next tier of problems, general network reliability after individual system reliability. It's something I'll have to look at for sure.
    It's weird there isn't any way to access the way the shutdown process works.
    One of the commenters (#14) on the page from Syntaxtechnology had a similar problem: he added a "sendmail -q" in his script to force sendmail to go to work and service the queue before shutting down, which I can try, but he also added a delay to the stop process of sendmail, which is something I'm not sure I can do on Mac OS X (and that might disappear one day with one of the OS updates).
    Unless there is a way to change the launchd.plist file for postfix and add an ExitTimeOut option in it (I found this idea here : https://discussions.apple.com/message/17229690#17229690 )
    Cheers,
    Paul-Henri

  • My MacBook keeps freezing and crashing during startup and use, what's wrong?

    My MacBook functioned perfectly for YEARS, and suddenly it started freezing during startup. One of four things happens: it starts up no problem, it freezes at the apple logo with the load wheel spinning, it freezes at a 'no' symbol (a circle with a line through it) with the load wheel spinning, or it freezes at a logo which is a folder with a question mark in it. It occasionally goes through and gets to the homepage, where I can use the computer for a certain amount of time before it freezes again. I never get to use it for more than 30 or 45 minutes at a time.
    Yes, I have updated all my software, and I haven't dropped it or downloaded anything that could cause this issue. What could be going wrong? :(

    There are corrupted system files involved, so my suggestion is to reinstall OS X.
    If you are using Snow Leopard:
    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.
    If you are using Leopard or Tiger:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Mismatch between startup and running cofig after power up

    Hi Experts,
    I faced a strange issue today and looking for some inputs if somebody have faced this issue and any reaon for the same.
    Problem
    =======
    Switch : 3560
    IOS : c3560-i9-mz.122-20.SE1.bin
    Today in my network there was a power down and we took the backup before that and also applied wr mem.
    After power up we saw one config was lost "static route command" was missing
    Then I did show config and also tried sh startup and saw that command was still there.
    My question is after power up if something is there in startup config (nvram) is should be loaded to DRAM and come in running config but why "ip route " command did not came.
    Looking for some valuable information and thanks in advance.
    Regards,
    Ankur

    Yes, I'm assuming it would happen in either case (static to interface or static to next-hop) because if the interface is down you wouldn't have a path (the effect is the same ... no path to the destination).
    Is the link on that connection such that you could use portfast / uplinkfast (without risking a loop)?
    To me, since you can do the 'copy start run' and it "takes," that the problem is that the interface is down, not initialized, or not available when the routes are being created from your start config.
    It may also be that the other side of the connection is staying down during the switch boot & initialization. same thing, if spanning-tree portfast / uplinkfast can be implemented with little or no risk, give it a shot and see if it resolves the problem.
    Good Luck
    Scott

  • After upgrading to 10.3.1 I get error -50 on startup and 1008 when I try to sign in to the store

    After upgrading to iTunes 10.3.1 I get error -50 on startup and 1008 when I try to sign in to the Store. How do I fix this?

    I got the solution from another post...
    use the Finder to navigate to /library/preferences/SystemConfiguration and delete NetworkInterfaces.plist ( you will be prompted for username and password), then reboot. You will get a message about new network interface found--just reset the network info.
    That did it for me.

  • Super Slow Internet Browsing with Airport or LAN and networking activities.

    The people at AppleCare are awesome and way polite. But I am a new Mac user and still in my 90 day apple care plan and have not been able to convince anyone that my internet connection on my MacBook is Super Slow. I have quantified it (350k - 550k download and 150k - 250k upload depending on my location), whereas at work right next to my older PC (which I am still using to go on line with since it is more like 3-5mb download) and my Desk Top PC and My Laptop PC are both more than three times faster for internet browsing and network transfers. The Airport on my MacBook seems to be faster than using the Ethernet cable (which I find weird), but they are both more than three times slower than my PC's no matter where I am working.
    Which brings me to my next issue, simply changing channels on the router is not the solution because while I can do that on my router at home or at my office. I can not walk into Starbucks or into the school library or my friends houses and ask them all to "fix" their routers for me. These MacBooks need to get fixed.
    This is frustrating and I am still waiting for a real solution.
    ~~Eddie Pankow~~ Please contact me: Eddie at Pankow3 dot net
    P.S. - I'm beginning to resent buying my MacBook Pro

    I can post the info you request below, but as I said before, my connection is not dropping, and the problem is not only with Airport. I have an old PC running a 56K modem at home that is faster than my MBP whether I am using Airport or if I connect through my LAN...
    Sep 21 13:31:25 EddieMac configd[34]: setting hostname to "EddieMac.local"
    Sep 21 13:31:26 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 13:31:26 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 13:31:26 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 13:31:26 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 13:31:26 EddieMac kernel[0]: en1: 802.11d country code set to 'X0'.
    Sep 21 13:31:26 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 13:31:26 EddieMac bootlog[74]: BOOT_TIME: 1222029054 0
    Sep 21 13:31:26 EddieMac rpc.statd[58]: statd.notify - no notifications needed
    Sep 21 13:31:27 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:27 EddieMac fseventsd[67]: bumping event counter to: 0x1516c82 (current 0x0) from log file '0000000001513f9f'
    Sep 21 13:31:28 EddieMac blued[75]: Apple Bluetooth daemon started.
    Sep 21 13:31:29 EddieMac /usr/sbin/ocspd[88]: starting
    Sep 21 13:31:29 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 13:31:29 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:29 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[62]: Login Window Application Started
    Sep 21 13:31:31 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 13:31:31 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:32 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 13:31:32 EddieMac configd[34]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 13:31:32 EddieMac configd[34]: DHCP en2: INIT transmit failed
    Sep 21 13:31:34 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 13:31:35 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: 2008-09-21 20:31:35.172 krb5kdc[93:10b] Error loading /System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle/Conten ts/MacOS/ODLocate: dlopen(/System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle /Contents/MacOS/ODLocate, 262): Library not loaded: /usr/lib/libxml2.2.dylib
    Sep 21 13:31:35 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Reason: image not found
    Sep 21 13:31:35 EddieMac krb5kdc[93]: Error loading /System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle/Conten ts/MacOS/ODLocate: dlopen(/System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle /Contents/MacOS/ODLocate, 262): Library not loaded: /usr/lib/libxml2.2.dylib\n Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation\n Reason: image not found
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: 2008-09-21 20:31:35.357 krb5kdc[93:10b] Error loading /System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Contents/M acOS/odpac: dlopen(/System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Con tents/MacOS/odpac, 262): Library not loaded: /usr/lib/libxml2.2.dylib
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Reason: image not found
    Sep 21 13:31:36 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/share/icu/icudt36l.dat 13 (seatbelt)
    Sep 21 13:31:37: --- last message repeated 1 time ---
    Sep 21 13:31:35 EddieMac krb5kdc[93]: Error loading /System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Contents/M acOS/odpac: dlopen(/System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Con tents/MacOS/odpac, 262): Library not loaded: /usr/lib/libxml2.2.dylib\n Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation\n Reason: image not found
    Sep 21 13:31:37 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/share/icu/icudt36l.dat 13 (seatbelt)
    Sep 21 13:31:37: --- last message repeated 2 times ---
    Sep 21 13:31:37 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:44: --- last message repeated 1 time ---
    Sep 21 13:31:44 EddieMac ntpdate[81]: can't find host time.apple.com
    Sep 21 13:31:44 EddieMac org.ntp.ntpd[55]: Error : nodename nor servname provided, or not known
    Sep 21 13:31:44 EddieMac ntpdate[81]: no servers can be used, exiting
    Sep 21 13:31:52 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 13:31:52 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 13:31:59 EddieMac loginwindow[62]: Login Window Started Security Agent
    Sep 21 13:32:04 EddieMac com.apple.dyld[12]: updatedyld_sharedcache: deleting old temp cache file: /var/db/dyld//dyldshared_cachei386.tmp1285
    Sep 21 13:32:04 EddieMac com.apple.dyld[12]: updatedyld_sharedcache[12] regenerated cache for arch=i386
    Sep 21 13:32:35 EddieMac authorizationhost[107]: MechanismInvoke 0x1d2a990 retainCount 2
    Sep 21 13:32:35 EddieMac SecurityAgent[108]: MechanismInvoke 0x5a01650 retainCount 1
    Sep 21 13:32:35 EddieMac SecurityAgent[108]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 13:32:36 EddieMac SecurityAgent[108]: MechanismDestroy 0x5a01650 retainCount 1
    Sep 21 13:32:36 EddieMac loginwindow[62]: Login Window - Returned from Security Agent
    Sep 21 13:32:36 EddieMac authorizationhost[107]: MechanismDestroy 0x1d2a990 retainCount 2
    Sep 21 13:32:36 EddieMac loginwindow[62]: USER_PROCESS: 62 console
    Sep 21 13:32:36 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[103]): Exited: Terminated
    Sep 21 13:32:36 EddieMac com.apple.launchctl.Aqua[180]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 13:32:39 EddieMac Dock[188]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 13:32:40 EddieMac /System/Library/CoreServices/coreservicesd[87]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 13:32:47 EddieMac com.apple.launchd[112] (0x101080.VersionCueCS3monitor): Failed to check-in!
    Sep 21 13:32:57 EddieMac com.apple.dyld[206]: updatedyld_sharedcache[206] current cache invalid because /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate has changed
    Sep 21 13:33:02 EddieMac hdiejectd[212]: running
    Sep 21 13:33:03 EddieMac KernelEventAgent[63]: tid 00000000 received unknown event (12)
    Sep 21 13:33:31 EddieMac com.apple.dyld[206]: updatedyld_sharedcache[206] regenerated cache for arch=ppc
    Sep 21 13:35:56 EddieMac /System/Library/PrivateFrameworks/ISSupport.framework/Resources/AOSHelper[227]: Folder Manager is being asked to create a folder (flnt) while running as uid 0
    Sep 21 13:36:53 EddieMac Software Update[266]: arguments=(null)
    Sep 21 13:37:09 EddieMac ntpd[55]: time reset +0.618692 s
    Sep 21 13:40:41 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 14:02:39 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 14:17:06 EddieMac authexec[326]: executing /System/Library/CoreServices/Software Update.app/Contents/Resources/suapphelper
    Sep 21 14:49:36 EddieMac /usr/libexec/hidd[66]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 17:59:46 EddieMac /usr/libexec/hidd[66]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 17:59:53 EddieMac loginwindow[62]: DEAD_PROCESS: 0 console
    Sep 21 17:59:54 EddieMac com.apple.launchd[112] (com.apple.pboard[190]): Exited: Terminated
    Sep 21 17:59:54 EddieMac com.apple.launchd[112] (com.apple.UserEventAgent-Aqua[186]): Exited: Terminated
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[625]: Login Window Application Started
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: SessionGetInfo(0x59a8b0) -> -2147417855
    Sep 21 17:59:54: --- last message repeated 1 time ---
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: FindBestLSSession(), SessionGetInfo() returned error -2147417855 for sessionID=5875888 or 0 uid=0 euid=88; cf <rdar://problem/5123589>
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: SessionGetInfo(0x59a8b0) -> -2147417855
    Sep 21 17:59:54: --- last message repeated 1 time ---
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: FindBestLSSession(), SessionGetInfo() returned error -2147417855 for sessionID=5875888 or 0 uid=0 euid=88; cf <rdar://problem/5123589>
    Sep 21 17:59:54 EddieMac loginwindow[625]: USER_PROCESS: 625 console
    Sep 21 17:59:54 EddieMac Software Update[636]: arguments={\n RootInstallMode = YES;\n SkipConfirm = YES;\n}
    Sep 21 17:59:55 EddieMac Software Update[636]: cookie=""
    Sep 21 17:59:55 EddieMac Software Update[636]: Looking for products to install
    Sep 21 17:59:56 EddieMac Software Update[636]: Performing preflight
    Sep 21 17:59:56 EddieMac Software Update[636]: Preparing session
    Sep 21 17:59:57 EddieMac Software Update[636]: Starting session
    Sep 21 18:01:29 EddieMac defaults[1202]: \nThe domain/default pair of (//Contents/Info, CFBundleIdentifier) does not exist
    Sep 21 18:01:44 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 18:01:44 EddieMac kextd[10]: 0 cached, 407 uncached personalities to catalog
    Sep 21 18:01:46 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:01:58 EddieMac [0x0-0x48048].com.apple.SoftwareUpdate[636]: kextcache: / locked; waiting for lock
    Sep 21 18:01:59 EddieMac com.apple.dyld[1351]: updatedyld_sharedcache[1351] regenerated cache for arch=i386
    Sep 21 18:02:03 EddieMac [0x0-0x48048].com.apple.SoftwareUpdate[636]: kextcache: proceeding
    Sep 21 18:02:03 EddieMac Software Update[636]: kextcache returned 0
    Sep 21 18:02:03 EddieMac Software Update[636]: Running /sbin/reboot
    Sep 21 18:02:03 EddieMac reboot[1363]: rebooted by nobody
    Sep 21 18:02:03 EddieMac reboot[1363]: SHUTDOWN_TIME: 1222045323 308054
    Sep 21 18:02:03 EddieMac mDNSResponder mDNSResponder-171.4 (Apr 20 2008 11:59:52)[45]: stopping
    Sep 21 18:02:03 EddieMac Software Update[636]: Terminating
    Sep 21 18:02:03 EddieMac ManagedClient[633]: CGSShutdownServerConnections: Detaching application from window server
    Sep 21 18:02:03 EddieMac ManagedClient[633]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Sep 21 18:02:03 EddieMac com.apple.loginwindow[625]: Sun Sep 21 18:02:03 EddieMac.local ManagedClient[633] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Sep 21 18:02:03 EddieMac com.apple.loginwindow[625]: Sun Sep 21 18:02:03 EddieMac.local ManagedClient[633] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Sep 21 18:02:03 EddieMac /usr/sbin/kdcmond[64]: dnssd_clientstub read_all(3) failed 0/28 0
    Sep 21 18:04:06 localhost kernel[0]: npvhash=4095
    Sep 21 18:04:04 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 21 18:04:04 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 21 18:04:04 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 21 18:04:04 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 21 18:04:04 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 21 18:04:06 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 21 18:04:07 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 21 18:04:07 localhost kernel[0]: PAE enabled
    Sep 21 18:04:07 localhost kernel[0]: 64 bit mode enabled
    Sep 21 18:04:07 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 21 18:04:07 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 21 18:04:07 localhost kernel[0]: vmpagebootstrap: 970440 free pages and 78136 wired pages
    Sep 21 18:04:07 localhost kernel[0]: migtable_maxdispl = 79
    Sep 21 18:04:08 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 localhost kernel[0]: Extension "com.apple.driver.AppleIntelCPUPowerManagement" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 21 18:04:08 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 21 18:04:08 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 21 18:04:08 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 21 18:04:08 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 21 18:04:08 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 21 18:04:08 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 21 18:04:08 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 21 18:04:08 EddieMac kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 21 18:04:08 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: starting
    Sep 21 18:04:08 EddieMac kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 21 18:04:08 EddieMac kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 21 18:04:08 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 21 18:04:08 EddieMac kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 21 18:04:08 EddieMac kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 21 18:04:08 EddieMac kernel[0]: MAC Framework successfully initialized
    Sep 21 18:04:08 EddieMac kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 21 18:04:08 EddieMac kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 EddieMac kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08: --- last message repeated 1 time ---
    Sep 21 18:04:08 EddieMac kernel[0]: mbinit: done
    Sep 21 18:04:08 EddieMac kernel[0]: Security auditing service present
    Sep 21 18:04:08 EddieMac kernel[0]: BSM auditing present
    Sep 21 18:04:08 EddieMac kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 21 18:04:08 EddieMac kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.iokit.AppleYukon2" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 EddieMac kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 21 18:04:08 EddieMac kernel[0]: BTCOEXIST on
    Sep 21 18:04:08 EddieMac kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 21 18:04:08 EddieMac kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 21 18:04:08 EddieMac kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 21 18:04:08 EddieMac kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 21 18:04:08 EddieMac kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 21 18:04:08 EddieMac kernel[0]: Jettisoning kernel linker.
    Sep 21 18:04:08 EddieMac kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 21 18:04:09 EddieMac kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 21 18:04:09 EddieMac kernel[0]: AirPort: Link Down on en1
    Sep 21 18:04:09 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:04:09 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 18:04:09 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 18:04:09 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:04:09 EddieMac kernel[0]: en1: 802.11d country code set to 'X0'.
    Sep 21 18:04:09 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 18:04:10 EddieMac mDNSResponder[15]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 21 18:04:11 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 18:04:13 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 18:04:15: --- last message repeated 1 time ---
    Sep 21 18:04:15 EddieMac fseventsd[38]: event logs in /.fseventsd out of sync with volume. destroying old logs. (86 24 132)
    Sep 21 18:04:18 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 18:04:18 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 18:04:18 EddieMac blued[46]: Apple Bluetooth daemon started.
    Sep 21 18:04:21 EddieMac rpc.statd[29]: statd.notify - no notifications needed
    Sep 21 18:04:21 EddieMac fseventsd[38]: log dir: /.fseventsd getting new uuid: D835A075-6080-4201-A2AF-664F24FB75B8
    Sep 21 18:04:22 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 18:04:22 EddieMac org.ntp.ntpd[26]: Error : nodename nor servname provided, or not known
    Sep 21 18:04:22 EddieMac ntpdate[55]: can't find host time.apple.com
    Sep 21 18:04:22 EddieMac ntpdate[55]: no servers can be used, exiting
    Sep 21 18:04:22 EddieMac bootlog[45]: BOOT_TIME: 1222045431 0
    Sep 21 18:04:22 EddieMac /usr/sbin/ocspd[59]: starting
    Sep 21 18:04:28 EddieMac kernel[0]: BootCache: hit rate below threshold (2180 hits on 4361 lookups)
    Sep 21 18:04:28 EddieMac kextd[10]: 0 cached, 407 uncached personalities to catalog
    Sep 21 18:04:28 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 18:04:30 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:04:30 EddieMac kernel[0]: Matching service count = 1
    Sep 21 18:04:30 EddieMac kernel[0]: Matching service count = 2
    Sep 21 18:04:31: --- last message repeated 4 times ---
    Sep 21 18:04:31 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 21 18:04:31 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 18:04:31 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 18:04:31 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 18:04:31 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 21 18:04:32 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 21 18:04:32 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:04:32: --- last message repeated 1 time ---
    Sep 21 18:04:32 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[33]: Login Window Application Started
    Sep 21 18:04:45 EddieMac loginwindow[33]: Login Window Started Security Agent
    Sep 21 18:04:46 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 18:10:17 EddieMac ntpd[26]: time reset +0.686169 s
    Sep 21 18:34:30 EddieMac /usr/libexec/hidd[37]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 18:34:36 EddieMac authorizationhost[96]: MechanismInvoke 0x128b20 retainCount 2
    Sep 21 18:34:36 EddieMac SecurityAgent[97]: MechanismInvoke 0x101660 retainCount 1
    Sep 21 18:34:36 EddieMac SecurityAgent[97]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 18:34:37 EddieMac loginwindow[33]: Login Window - Returned from Security Agent
    Sep 21 18:34:37 EddieMac SecurityAgent[97]: MechanismDestroy 0x101660 retainCount 1
    Sep 21 18:34:37 EddieMac authorizationhost[96]: MechanismDestroy 0x128b20 retainCount 2
    Sep 21 18:34:37 EddieMac loginwindow[33]: USER_PROCESS: 33 console
    Sep 21 18:34:37 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[93]): Exited: Terminated
    Sep 21 18:34:37 EddieMac com.apple.launchctl.Aqua[181]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 18:34:43 EddieMac Dock[196]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 18:34:45 EddieMac /System/Library/CoreServices/coreservicesd[52]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 18:34:48 EddieMac com.apple.launchd[179] (0x100f70.VersionCueCS3monitor): Failed to check-in!
    Sep 21 18:35:09 EddieMac SyncServer[215]: SyncServer: Reaping records for inactive clients. Next reap on 2551-11-05 17:35:09 -0800
    Sep 21 18:35:20 EddieMac SyncServer[215]: SyncServer: Truth vacuumed. Next vacuum date 2551-10-05 18:35:09 -0700
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicJSWindowExternalHandler is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicWizardController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicPanel is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicJSWindowExternalHandler is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicWizardController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicPanel is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:30 EddieMac hdiejectd[235]: running
    Sep 21 18:45:31 EddieMac KernelEventAgent[34]: tid 00000000 received unknown event (12)
    Sep 21 18:45:50 EddieMac /Library/Application Support/FLEXnet Publisher/Service/11.03.005/FNPLicensingService[246]: Started
    Sep 21 18:45:50 EddieMac /Library/Application Support/FLEXnet Publisher/Service/11.03.005/FNPLicensingService[246]: This service performs licensing functions on behalf of FLEXnet enabled products.
    Sep 21 18:54:28 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:54:28 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 18:54:28 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 19:09:14 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `Time-Machine-Update.pkg': 30
    Sep 21 19:09:22 EddieMac Installer[472]: <ZeroSliderSplitView: 0x3aa272c0>: the delegate <TargetSelectPage: 0x3aa27e60> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    Sep 21 19:09:22 EddieMac Installer[472]: Split view bounds: {{0, 0}, {402, 104}}
    Sep 21 19:09:22 EddieMac Installer[472]: Subview frame: {{0, 0}, {0, 32}}
    Sep 21 19:09:22 EddieMac Installer[472]: Subview frame: {{0, 0}, {402, 104}}
    Sep 21 19:09:22 EddieMac Installer[472]: The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    Sep 21 19:14:05 EddieMac Software Update[510]: arguments=(null)
    Sep 21 19:49:29 EddieMac SCHelper[663]: no command
    Sep 21 19:49:29 EddieMac com.apple.launchd[179] ([0x0-0x1a01a].com.apple.systempreferences[331]): Stray process with PGID equal to this dead job: PID 663 PPID 1 SCHelper
    Sep 21 19:56:29 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `Time-Machine-Update.pkg': 30
    Sep 21 19:56:35 EddieMac Installer[857]: <ZeroSliderSplitView: 0x39922150>: the delegate <TargetSelectPage: 0x39936be0> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    Sep 21 19:56:35 EddieMac Installer[857]: Split view bounds: {{0, 0}, {402, 104}}
    Sep 21 19:56:35 EddieMac Installer[857]: Subview frame: {{0, 0}, {0, 32}}
    Sep 21 19:56:35 EddieMac Installer[857]: Subview frame: {{0, 0}, {402, 104}}
    Sep 21 19:56:35 EddieMac Installer[857]: The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    Sep 21 19:57:05 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `.DS_Store': 30
    Sep 21 20:17:34 EddieMac Dreamweaver[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1f403b48: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 20:17:11 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:18:11: --- last message repeated 3 times ---
    Sep 21 20:17:34 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1f403b48: Non-aligned pointer being freed
    Sep 21 20:17:34 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 20:24:20 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 20:26:26 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:27:22: --- last message repeated 19 times ---
    Sep 21 20:26:54 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:27:57: --- last message repeated 55 times ---
    Sep 21 20:27:36 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:28:45: --- last message repeated 79 times ---
    Sep 21 20:28:05 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:31:42: --- last message repeated 51 times ---
    Sep 21 20:31:41 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:32:16: --- last message repeated 15 times ---
    Sep 21 20:31:59 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:32:55: --- last message repeated 31 times ---
    Sep 21 20:32:35 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:34:35: --- last message repeated 79 times ---
    Sep 21 20:33:39 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:35:51: --- last message repeated 39 times ---
    Sep 21 20:34:51 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:35:51: --- last message repeated 27 times ---
    Sep 21 20:35:51 EddieMac helpdatad[1194]: port 'com.apple.helpdata' created
    Sep 21 20:37:15 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 21:09:07: --- last message repeated 3 times ---
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSConditionLock dealloc]: lock (<NSConditionLock: 0x1993abe0> '(null)') deallocated while still in use
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993a9c0> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993b230> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993b1f0> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1c229b90: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 21:23:49 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1c229b90: Non-aligned pointer being freed (2)
    Sep 21 21:23:49 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 21:24:02 EddieMac loginwindow[33]: DEAD_PROCESS: 0 console
    Sep 21 21:24:03 EddieMac com.apple.loginwindow[33]: Shutdown NOW!
    Sep 21 21:24:03 EddieMac shutdown[1635]: halt by eddiepankow:
    Sep 21 21:24:03 EddieMac com.apple.loginwindow[33]: System shutdown time has arrived^G^G
    Sep 21 21:24:03 EddieMac shutdown[1635]: SHUTDOWN_TIME: 1222057443 186031
    Sep 21 21:24:03 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: stopping
    Sep 21 21:58:09 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 21 21:58:09 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 21 21:58:09 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 21 21:58:09 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 21 21:58:09 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 21 21:58:10 localhost kernel[0]: npvhash=4095
    Sep 21 21:58:10 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 21 21:58:10 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 21 21:58:10 localhost kernel[0]: PAE enabled
    Sep 21 21:58:10 localhost kernel[0]: 64 bit mode enabled
    Sep 21 21:58:10 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 21 21:58:10 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 21 21:58:10 localhost kernel[0]: vmpagebootstrap: 972053 free pages and 76523 wired pages
    Sep 21 21:58:10 localhost kernel[0]: migtable_maxdispl = 79
    Sep 21 21:58:10 localhost kernel[0]: 95 prelinked modules
    Sep 21 21:58:10 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 21 21:58:10 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 21 21:58:10 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 21 21:58:10 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 21 21:58:10 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 21 21:58:11 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 21 21:58:11 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 21 21:58:10 localhost mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[16]: starting
    Sep 21 21:58:11 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 21 21:58:11 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 21 21:58:11 localhost kernel[0]: MAC Framework successfully initialized
    Sep 21 21:58:11 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 21 21:58:11 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 21 21:58:11 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 21 21:58:11 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 21 21:58:11 localhost kernel[0]: mbinit: done
    Sep 21 21:58:11 localhost kernel[0]: Security auditing service present
    Sep 21 21:58:11 localhost kernel[0]: BSM auditing present
    Sep 21 21:58:11 localhost kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 21 21:58:11 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 21 21:58:11 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 21 21:58:11 localhost kernel[0]: BTCOEXIST on
    Sep 21 21:58:11 localhost kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 21 21:58:11 localhost kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 21 21:58:11 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 21 21:58:11 localhost kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 21 21:58:11 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 21 21:58:11 localhost kernel[0]: Jettisoning kernel linker.
    Sep 21 21:58:11 localhost kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 21 21:58:11 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 21 21:58:11 localhost kernel[0]: AirPort: Link Down on en1
    Sep 21 21:58:11 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 21 21:58:12 EddieMac mDNSResponder[16]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 21 21:58:14 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 21:58:15 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 21:58:15 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 21:58:15 EddieMac kernel[0]: AirPort: Roam (DeAuth/DisAssoc)
    Sep 21 21:58:15 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 21:58:18: --- last message repeated 1 time ---
    Sep 21 21:58:18 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 21:58:20 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 21:58:20 EddieMac fseventsd[38]: bumping event counter to: 0x5d7c (current 0x0) from log file '00000000000000ce'
    Sep 21 21:58:20 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 21:58:20 EddieMac rpc.statd[29]: statd.notify - no notifications needed
    Sep 21 21:58:20 EddieMac kernel[0]: Matching service count = 1
    Sep 21 21:58:20 EddieMac kernel[0]: Matching service count = 2
    Sep 21 21:58:20: --- last message repeated 4 times ---
    Sep 21 21:58:20 EddieMac kextd[10]: 407 cached, 0 uncached personalities to catalog
    Sep 21 21:58:21 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 21 21:58:21 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 21 21:58:21 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 21:58:21 EddieMac bootlog[45]: BOOT_TIME: 1222059484 0
    Sep 21 21:58:24 EddieMac /usr/sbin/ocspd[60]: starting
    Sep 21 21:58:24 EddieMac blued[46]: Apple Bluetooth daemon started.
    Sep 21 21:58:24 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[33]: Login Window Application Started
    Sep 21 21:58:24 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 21:58:24 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 21:58:25 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 21:58:24 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 21 21:58:25 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 21:58:27 EddieMac loginwindow[33]: Login Window Started Security Agent
    Sep 21 21:58:28 EddieMac org.ntp.ntpd[26]: Error : nodename nor servname provided, or not known
    Sep 21 21:58:28 EddieMac ntpdate[77]: can't find host time.apple.com
    Sep 21 21:58:28 EddieMac ntpdate[77]: no servers can be used, exiting
    Sep 21 21:58:32 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 21:58:34 EddieMac kernel[0]: BlackberryUSBDev: 0 0 start - initDevice failed
    Sep 21 21:58:35 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 21:58:35 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 21:58:36 EddieMac kernel[0]: BlackberryUSB: - Version number 3.0.9
    Sep 21 21:58:36 EddieMac authorizationhost[75]: MechanismInvoke 0x1258c0 retainCount 2
    Sep 21 21:58:36 EddieMac SecurityAgent[76]: MechanismInvoke 0x101660 retainCount 1
    Sep 21 21:58:36 EddieMac SecurityAgent[76]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 21:58:37 EddieMac loginwindow[33]: Login Window - Returned from Security Agent
    Sep 21 21:58:37 EddieMac SecurityAgent[76]: MechanismDestroy 0x101660 retainCount 1
    Sep 21 21:58:37 EddieMac authorizationhost[75]: MechanismDestroy 0x1258c0 retainCount 2
    Sep 21 21:58:37 EddieMac loginwindow[33]: USER_PROCESS: 33 console
    Sep 21 21:58:37 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[72]): Exited: Terminated
    Sep 21 21:58:37 EddieMac com.apple.launchctl.Aqua[87]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 21:58:41 EddieMac Dock[96]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 21:58:46 EddieMac /System/Library/CoreServices/coreservicesd[58]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 21:58:49 EddieMac com.apple.launchd[66] (0x101080.VersionCueCS3monitor): Failed to check-in!
    Sep 21 21:59:49 EddieMac /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[101]: StatusMonitor::volumesChangedCallBack returned -47
    Sep 21 22:00:21 EddieMac DVD Player[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x14127000: pointer being freed was not allocated\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:00:21 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x14127000: pointer being freed was not allocated
    Sep 21 22:00:21 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:02:50 EddieMac ntpd[26]: time reset +0.978829 s
    Sep 21 22:09:43 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 22:09:45 EddieMac kernel[0]: BlackberryUSBDev: 0 0 start - initDevice failed
    Sep 21 22:09:46 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 22:09:48 EddieMac kernel[0]: BlackberryUSB: - Version number 3.0.9
    Sep 21 22:39:26 EddieMac DVD Player[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x13ff2000: pointer being freed was not allocated\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:39:26 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x13ff2000: pointer being freed was not allocated
    Sep 21 22:39:26 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:40:05 EddieMac loginwindow[33]: DEAD_PROCESS: 0 console
    Sep 21 22:40:06 EddieMac shutdown[275]: halt by eddiepankow:
    Sep 21 22:40:06 EddieMac shutdown[275]: SHUTDOWN_TIME: 1222062006 67975
    Sep 21 22:40:06 EddieMac com.apple.loginwindow[33]: Shutdown NOW!
    Sep 21 22:40:06 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[16]: stopping
    Sep 21 22:40:06 EddieMac com.apple.loginwindow[33]: System shutdown time has arrived^G^G
    Sep 21 22:40:06 EddieMac /usr/sbin/kdcmond[35]: dnssd_clientstub read_all(3) failed 0/28 0
    Sep 23 07:32:38 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 23 07:32:38 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 23 07:32:38 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 23 07:32:38 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 23 07:32:38 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 23 07:32:40 localhost kernel[0]: npvhash=4095
    Sep 23 07:32:40 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 23 07:32:40 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 23 07:32:40 localhost kernel[0]: PAE enabled
    Sep 23 07:32:40 localhost kernel[0]: 64 bit mode enabled
    Sep 23 07:32:40 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 23 07:32:40 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 23 07:32:40 localhost kernel[0]: vmpagebootstrap: 971983 free pages and 76593 wired pages
    Sep 23 07:32:40 localhost kernel[0]: migtable_maxdispl = 79
    Sep 23 07:32:40 localhost kernel[0]: 98 prelinked modules
    Sep 23 07:32:40 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 23 07:32:40 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 23 07:32:40 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 23 07:32:40 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 23 07:32:40 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 23 07:32:40 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 23 07:32:40 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 23 07:32:40 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 23 07:32:40 localhost mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: starting
    Sep 23 07:32:40 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 23 07:32:40 localhost kernel[0]: MAC Framework successfully initialized
    Sep 23 07:32:40 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 23 07:32:40 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 23 07:32:40 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 23 07:32:40 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 23 07:32:40 localhost kernel[0]: mbinit: done
    Sep 23 07:32:40 localhost kernel[0]: Security auditing service present
    Sep 23 07:32:40 localhost kernel[0]: BSM auditing present
    Sep 23 07:32:40 localhost kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 23 07:32:40 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 23 07:32:40 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 23 07:32:40 localhost kernel[0]: BTCOEXIST on
    Sep 23 07:32:40 localhost kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 23 07:32:40 localhost kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 23 07:32:40 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 23 07:32:40 localhost kernel[0]: in6_ifattach: lo0 failed to attach a linklocal address.
    Sep 23 07:32:40 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 23 07:32:40 localhost kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 23 07:32:40 localhost kernel[0]: Jettisoning kernel linker.
    Sep 23 07:32:40 localhost kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 23 07:32:40 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 23 07:32:40 EddieMac kernel[0]: AirPort: Link Down on en1
    Sep 23 07:32:40 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 23 07:32:41 EddieMac airportd[21]: No networks found on channels remembered for NETGEAR
    Sep 23 07:32:41 EddieMac airportd[21]: Could not find "NETGEAR"
    Sep 23 07:32:41 EddieMac mDNSResponder[15]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 23 07:32:42 EddieMac kernel[0]: AppleYukon2 - en0 link active, 100-Mbit, full duplex, symmetric flow control enabled port 0
    Sep 23 07:32:42 EddieMac configd[14]: AppleTalk startup
    Sep 23 07:32:45 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 23 07:32:45 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 23 07:32:46 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 23 07:32:46 EddieMac kextd[10]: 407 cached, 0 uncached personalities to catalog
    Sep 23 07:32:46 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 23 07:32:46 EddieMac kernel[0]: Matching service count = 1
    Sep 23 07:32:46 EddieMac kernel[0]: Matching service count = 2
    Sep 23 07:32:47: --- last message repeated 4 times ---
    Sep 23 07:32:47 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 23 07:32:47 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 23 07:32:47 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 23 07:32:47 EddieMac bootlog[46]: BOOT_TIME: 1222180354 0
    Sep 23 07:32:47 EddieMac fseventsd[39]: bumping event counter to: 0x6c7a (current 0x0) from log file '0000000000006091'
    Sep 23 07:32:47 EddieMac rpc.statd[30]: statd.notify - no notifications needed
    Sep 23 07:32:47 EddieMac blued[47]: Apple Bluetooth daemon started.
    Sep 23 07:32:47 EddieMac /usr/sbin/ocspd[59]: starting
    Sep 23 07:32:47 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[34]: Login Window Application Started
    Sep 23 07:32:48 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 23 07:32:48 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 23 07:32:48 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 23 07:32:48 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 23 07:32:48 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 23 07:32:57 EddieMac configd[14]: AppleTalk startup complete
    Sep 23 07:33:00 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 23 07:33:00 EddieMac loginwindow[34]: Login Window Started Security Agent
    Sep 23 07:33:53 EddieMac authorizationhost[79]: MechanismInvoke 0x1258a0 retainCount 2
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: MechanismInvoke 0x101660 retainCount 1
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 23 07:33:53 EddieMac loginwindow[34]: Login Window - Returned from Security Agent
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: MechanismDestroy 0x101660 retainCount 1
    Sep 23 07:33:53 EddieMac authorizationhost[79]: MechanismDestroy 0x1258a0 retainCount 2
    Sep 23 07:33:53 EddieMac loginwindow[34]: USER_PROCESS: 34 console
    Sep 23 07:33:53 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[76]): Exited: Terminated
    Sep 23 07:33:53 EddieMac com.apple.launchctl.Aqua[87]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 23 07:33:57 EddieMac Dock[95]: _DESCRegisterDockExtraClient failed 268435459
    Sep 23 07:34:01 EddieMac /System/Library/CoreServices/coreservicesd[58]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 23 07:34:04 EddieMac com.apple.launchd[85] (0x100f70.VersionCueCS3monitor): Failed to check-in!
    Sep 23 07:39:35 EddieMac hdiejectd[131]: running
    Sep 23 07:39:36 EddieMac KernelEventAgent[35]: tid 00000000 received unknown event (12)
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: Backup requested by user
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: Starting standard backup
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: FSMatchAliasBulk returned -35 while resolving alias to backup target
    Sep 23 07:39:55 EddieMac /System/Library/CoreServices/backupd[143]: Backup failed with error: 19
    Sep 23 07:43:07 EddieMac kernel[0]: AppleYukon2 - en0 link down
    Sep 23 07:43:07 EddieMac configd[14]: AppleTalk shutdown
    Sep 23 07:43:07 EddieMac configd[14]: AppleTalk shutdown complete
    Sep 23 07:43:15 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 23 08:52:42 EddieMac /usr/libexec/hidd[38]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 23 08:53:12: --- last message repeated 10 times ---

  • Unable to capture startup and shutdown event of Photoshop in automation Plugin.

    Hi,
    I am creating an automation plugin and I want to register some events. I have seen listener plugin sample to register event in startup and unregister event in shutdown. I have used same code in my plugin but I am unable to capture the startup nad shutdown event of Photoshop. On clicking the menu item of my plugin the calls come inside the AutoPluginMain but during the startup or shutdown of plugin, the calls does not come inside the AutoPluginMain.
    I am unable to detect the cause of the problem. Can someone please giude me??
    Thanks in advance.

    Hi Tom,
    Thanks for the suggestion.
    Yes, I am working on Windows. As you suggested, I compiled .rc file but the compile option for .r file was disabled. After compiling the .rc file, I again rebuild the complete project and tested my build. But still I was not able to achive the desired result.
    Any other thing that I need to do to make it work?
    Thanks

  • I installed the latest version of Firefox last night. It worked 3-4 times flawlessly. Now, it crashes at startup and gives me a box with crash detail report. How can I fix this?

    I have a brand new HP dv8t laptop that is straight from the manufacturer 2 days ago.
    Last night, I attempted to download and installed the latest version of Firefox. After installing, it worked great for an hour or so (3.4 different sessions).
    Then, this morning when I came back to the computer, Firefox crashes at startup and gives me the option of finding a solution online or quitting the program.
    How aggravating!
    I have installed this same version on 2 other computers that I own, without any issue.
    I have attempted to uninstall Firefox from the dv8 and reinstalling, to no avail.
    I cannot find the crash report, but I do this see this message once the app crashes:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: firefox.exe
    Application Version: 1.9.0.3399
    Application Timestamp: 49f1091d
    Fault Module Name: StackHash_5701
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Code: 4000001f
    Exception Offset: 046b75ba
    OS Version: 6.1.7600.2.0.0.768.3
    Locale ID: 1033
    Additional Information 1: 5701
    Additional Information 2: 5701071bdc29491833a7ab96965d1870
    Additional Information 3: c8d0
    Additional Information 4: c8d0e80632ad4cc967a76f7e9c35ca44
    Please help! I cant stand iE anymore and I'm so lost without Firefox!

    You might try using the add-on 'NoSquint' which allows numerous zoom options specific to each page you visit & keeps your settings - https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    If you want to go back to 3.6x, you will find it here:
    http://www.mozilla.com/en-US/firefox/all-older.html
    In most cases you can simply "upgrade" (meaning downgrade) directly from the installation. It would be a good idea to save your passwords & bookmarks just to be on the safe side.

  • Wireless and network printing transcript for Meet the Experts

    On March 16th, HP hosted its first online chat event on wireless and network printing. Below is a transcript of that session.
    I am in the process of planning the next chat event. I would love to hear what topics would interest you, what day of the week and time is best for you, and if you think an hour is too long.
    So, if you get a minute, please let me know.
    Here's the transcript:
    SiobhanF-HP: Welcome! Cameron, Craig, David, and Jim are ready to tackle your questions.
    SiobhanF-HP: Just to remind you if you want to ask a question, you must be a member of the HP Support Forums. If you want to join, go here https://passport2.hp.com/hppcf/createuser.do
    nc256: Do I need a wireless router to hook up my wireless printer?
    CameronL-HP: No, but most people will want to do it this way. You can use a feature called an ad hoc connection to avoid using a router, but it is only covered under an older standard that is slower and less secure. Also, without something to route traffic between the local network and the internet, you cannot get an internet connection. Using a wireless router makes setting up a wireless network easier, and it will generally make the network work better too.
    jest1: I've seen some hardware in stores for a "print server" hardware device that attaches to a network. Is this something that I need in order to run a printer over a network?
    CraigB--HP: Not if you have a printer that has a network connection built in. Many models of HP computers are ready to be connected directly to your wired or wireless network.
    katiepage: How can I print when I am using a VPN?
    DavidH-HP: VPN connections generally hide the rest of your home network to increase the security of the VPN connection. A printer on the network isn’t a security threat but the VPN doesn’t know that. It just hides everything just to be sure. That means that when a VPN is active you need some way to connect to the printer other than your home network. Bluetooth, USB, and even printing to a thumb drive and plugging that into the printer are all ways of getting your print job to the printer that don’t go through your home network.
    SiobhanF-HP: If you have specific product questions, the more information you give us the better we will be able to help you. Getting your exact model number; any error messages; a description of your wireless network including what kind of security you have, what wireless-devices are connected to your network, and your IP address will go a long way to helping us answer your question.
    MelissaP: Why would I want a wireless printer?
    CraigB--HP: The main advantage of a wireless printer is the ability to place the printer somewhere in your home or office even if this is not near your router or computer.
    Deltan: What is the maximum distance I can have between my router and my printer?
    CameronL-HP: It does depend on your environment. Without interference about 25 feet. Walls and floors and other objects can reduce this. The types of walls are important. For example, mirrors and outdoor walls will greatly reduce the indoor range.
     jest1: Is there a preferred wireless router type or brand for wireless printing compatibility? We are using a Linksys 802.11g router in my home.
     JimB-HP: In general, any wireless-router from a name brand manufacturer that has been Wi-Fi certified is compatible with our printers (look for the Wi-Fi logo). We use Linksys in our lab with great success.
     nc256: Are there any digital cameras that can send directly to an HP wireless printer for photo printing?
     DavidH-HP: Many printers support a feature called Pictbridge. If the camera and printer both supports this feature, the camera can be plugged directly into the printer to print photos. Or are you asking about printing over a network connection?
     KevinW: I keep hearing that you shouldn’t use default settings for a network. Why?
     CraigB--HP: There are three reasons not use default settings: First, wireless-routers do not have any wireless security enabled by default. Second, you will be using a common network name in which case you may connect accidentally to your neighbor’s network. Third, your wireless-router is accessible by inadvertent guests who may change the configuration of your wireless-router without your knowledge or use your internet connection without your permission.
    Bodie08: I have an HP Lan attached printer and Windows XP on my home network. Is there a known setting (Firewall/port/other) or patch to address the issue of hpqtra08.exe hanging on Windows XP Shutdown? A number of us in the forum have identified this issue. Thanks!
    DavidH-HP: This problem has been seen in the past but there were attempts to address it. Have you checked to see if there is a later release of software available on the web? (hp.com)
    ZhuLee3: How old is wireless printing technology? I noticed all the experts have around 20 years of experience with it, was there wireless 20 years ago?
    JimB-HP: Wireless printing first appeared with the introduction of the 802.11 standard in late 1990's. HP has been making wireless printers since 2003.
    lpeterson123: What makes wireless so flaky at times?
    CameronL-HP: There are lots of reasons. Wireless signals are affected by distance, walls, metal objects, and other wireless devices like cordless phones. However, most of the problems seem to be from how the network or how security software is configured, and these can also cause things to fail only occasionally or in certain situations. Having a good wireless connection between a PC and printer involves several hardware devices and lots of software made by different companies that all have to work together; if something is not quite right in any of these things then the whole solution looks flaky.
    Bowman16: I use a Mac, are there any features that would not work if I was to set it up for wireless use
    DavidH-HP: All the features will work on a Mac if you install the full HP software solution.
    jest1: Thanks for the answer on the router question. The next question, then, is to ask what would be a recommended consumer-grade wireless-enabled printer (or series) just so I can start my research.
    JimB-HP: Any of our Photosmart or Officejet wireless printers will work with Wi-Fi certified wireless-routers. Our price points really have more to do with how much printing you do. In general, our more expensive printers cost less per page than our less expensive models.
    Bodie08: Why would I choose "spooling" on my PC over "direct connect”?
    CraigB--HP: In general, spooling allows you to use your program sooner than printing directly.
    ZhuLee3: Jim: What is it like to be an "HP Printing Expert"? What kind of stuff do you get to work on, on a day to day basis?
    JimB-HP: I really like my job -- I've always been a radio enthusiast so working on 802.11 technology is really a dream job for me. I'm also fortunate to work with a great team here in Vancouver, WA. More importantly, I like designing equipment that people use in their everyday lives.
    TEACHER1: Recently I changed routers, now I am unable to print wirelessly, even though the SES and wireless network light are steady on my Deskjet 6980 printer. What is the solution? Thanks.
    DavidH-HP: The wireless light indicates that the radio is on but does not indicate that the printer is connected to the network. First check that the printer is connected to the network by printing a network configuration page from the printer.
    AgentRed: I get my internet with a Verizon wireless broadband card. Someone told me that wouldn't work with a wireless printer. Is that true?
    CameronL-HP: Our wireless printers use the 802.11 b, g or n standard which is not compatible with the wireless cellular standard. It would be like trying to connect to a wireless network using Bluetooth. They are different wireless technologies.
    DavidH-HP: Regarding the Verizon card, it is true that you cannot connect the printer over the Verizon connection, but as long as your laptop has Wife you can print to the printer over WiFi at the same time that the Verizon connection is active. This should not be a problem.
    jest1: Is there a "minimum" internet connection that is recommended for wireless printing? We live a bit far from the DSL CO so our connection is sometimes flaky. I would guess that incoming speed shouldn't affect my local wireless LAN but I want to ask it anyway
    CameronL-HP: There are 2 parts to your home network. 1 is your wireless router which manages your local network equipment, then your network connection to the world wide web which your DSL provider gives you. The connection speed of your local network is not affected by your internet connection speed.
    Bowman16: Are any HP printers 802.11n? I do not want to add an 802.11b,g to my network and cause it to slow down.
    JimB-HP: Currently, our printers comply with the 802.11g standard. We are investigation the emerging 802.11n standard.
    ZhuLee3: Will there be a transcript of all the questions and answers from this chat available for viewing after the session? I think I missed some questions at the start.
    SiobhanF-HP: The chat event begins when you joined. Sorry that you can't see what was said before you joined. I hope to have transcript posted tomorrow or on Wednesday at the latest.
    nc256: Where is the future of printers headed? Does HP have any interesting plans with printing technology? And what’s your opinion on whether or not color laser printing will ever approachthe photo realism of ink jet color?
    JimB-HP: The future of HP printing will be characterized by wireless connectivity to not only computers but to mobile internet devices. In fact, as mobile devices become smaller (think phone or netbooks), the need to print from your mobile device might become more relevant.
    jest1: Am I able to print from my iphone to a wireless printer?
    CraigB--HP: You can print photos from your iPhone to HP wireless printers and it works great in my experience. Go to http://www.hp.com/go/iprintphoto to get the details.
    TEACHER1: Thank you. I printed a page. It shows that wireless is disconnected.
    DavidH-HP: Then you just need to input the wireless settings from your new router into the printer. If your printer does not let you input the settings from the front panel, you can use the CD that came with the printer or downloaded from hp.com to configure the printer again ( look for the option to "add a device" ).
    ZhuLee3: Question about security... if I get a wireless printer, what’s to prevent other people within range of my printer, from adding it and printing documents? How is this configured on the actual printer?
    JimB-HP: The simplest way to secure your printer is to enable WPA-PSK security for your wireless network and to use a security pass-phrase that is at least 12 characters long. This configuration is very safe from intruders for the foreseeable future.
    CameronL-HP: It' is also a good idea to use a unique network name, also called an SSID.
    carolj: I have a photosmart C7180 and I have it hooked up to my laptop (windows vista) when the setup completed the printer was put in networking instead of printers and I cannot access it or move it out of there. What do you suggest?
    CraigB--HP: You might need to uninstall and reinstall. Before doing this, make sure your get the latest driver from the HP support at: http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?product=1153754&lc=en&cc=us&dlc=en&lang=en&cc=us This is also where you can get a copy of the instruction book.
    wizll: Hi, I haven't done much research in wireless printing, but I'm interested as I currently have my printer set up the old fashioned way where it's connected to a networked PC, but if the PC is off I can no longer print, which is obviously inconvenient. Do hp wireless printers have a web gui you can connect to once it's on the home network, or is it simply all done from the printer's interface. I've seen some old wired network printers that only use the printer's ui and that seems like a clunky use.
    DavidH-HP: Yes, the HP printers which have networking built-in have what we call an "embedded" web server which allow you to configure settings, check status, and have many other features; on some models you can even scan using the embedded web server.
    nc256: Jim: Will color laser printing ever reach ink jet quality for photos?
    JimB-HP: While never is a long time, inkjet printers will, for the near future, output higher quality photos.
    katiepage: If I'm at home, connected to my office network via VPN, can I access my office networked printers?
    CraigB--HP: Yes, when you are connected to the office VPN, you can print to your office printers. However, you will not be able to print to your home networked printers while you are connected to the VPN.
    jest1: If a friend comes over to my house with their laptop and needs to print something, are they able to do this just by authenticating with my wireless LAN (assuming I have a wireless printer set up)?
    CraigB--HP: In addition to authenticating to your network, you friend will also need to install the printer driver for your printer.
    jpszambelan: Is there a wireless USB device of some kind I can connect to my printer if there is no network connection already built in?
    JimB-HP: HP sells an accessory that adds Wi-Fi capability to your USB printer (see http://www.shopping.hp.com/product/printer/inkjet/wireless/4/accessories/Q6236A%2523A2L) Also, many higher-end wireless-routers allows USB printers to be connected to them to allow sharing of the printer from the network. Note that this solution often limits you to just printing and not scanning from the network.
    rockwoodchev: It seems that my computer can find my printer, but my printer can't find the computer, so that "Scan to computer" won't work. What do I need to do in order to fix that?
    DavidH-HP: This can be blocked by security software running on the PC (such as a personal firewall). Make sure that your firewall is configured to allow communication on your local network. You can also unblock specific ports, but the easiest way is often just to allow communication on the local home network. The specific setting varies from firewall to firewall.
    SiobhanF-HP: We are nearing the end of our chat session. We only have time for 3 more questions. If we did not get to your question, please post it on the Networking and Wireless board in the Printers and All-in-Ones forum. http://h30434.www3.hp.com/psg/board?board.id=Networking
    SSPatrick: Is it possible to print wirelessly to the same HP printer using both a PC and a Mac?
    JimB-HP: Yes -- I do this in my home. I have both Macs and PCs on my network without any trouble.
    Bowman16: Any plans to do this again?
    SiobhanF-HP: Yes we are.
    ZhuLee3: Do all of the experts hang out on the HP community? Will we see you posting there after this?
    DavidH-HP: Oh yes, whenever time permits. In addition to trying to help people, I learn things too.
    JimB-HP: I'm known as Wi-Fi-Guy on the support forums. I hang out there often helping where I can. It helps me be a better designer.
    CraigB--HP: I monitor the forums looking for problems to take back to the development lab for investigation. To date, I have only posted one reply.
    CameronL-HP: I haven't been involved in the past but expect to be more involved in the future.
    SiobhanF-HP: We only have time for one more question. If we did not get to your question, please post it on the Networking and Wireless board in the Printers and All-in-Ones forum. http://h30434.www3.hp.com/psg/board?board.id=Networking
    ZhuLee3: Thanks for setting this up!
    SiobhanF-HP: The transcript will be posted on http://h30434.www3.hp.com/psg/board?board.id=Networking
    TEACHER1: Thank you all for conducting this session !!!!
    jest1: Is there an OS limitation to print wirelessly?
    JimB-HP: All the OS versions supported by the printer as supported wirelessly. In general, we are compatible with Macs, Windows and Linux.
    SiobhanF-HP: We are ending the chat event. Thank you for coming. We hope you found it worthwhile. I will be posting a transcript of the event in the Networking and Wireless board in the Printers and All-in-Ones forum. We will be hosting future Meet the Experts chat sessions on a variety of topics, so please tell us what you thought of the event and how it could be improved. http://h30434.www3.hp.com/psg/board/message?board.id=Feedback&thread.id=525
    Live Forum Closed
    Message Edited by timhsu on 03-18-2009 05:39 PM
    Message Edited by timhsu on 03-18-2009 05:43 PM
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    I expected this to be released quite earlier. But now that it's in process, I'll wait patiently.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.

  • IPhone 4 and network extender troubles

    I live in an area where I need a network extender to receive a signal.  All has worked perfectly fine in the last 4 years I've been with Verizon, until about 4 weeks ago when my daughter was trying to send me pictures that I never received.  I then noticed a picture I had sent her didn't go through either. I'm usually connected to wifi, but when I'm not and try to access the internet it says "could not activate cellular date network".   I have tried every suggestion I could find on the internet from other people who have had this issue with no luck, and I do mean everything from toggling off and on this and that, to taking my phone back to factory settings, which by the way, even with no back up and just adding one picture and one contact this issue exists.  When I'm in a 3G area I have cellular data and the phone works fine, including being able to send and receive pictures and being able to access the internet, so I have no reason to believe it's the phone or the settings.  I'm thinking it has something to do with the network extender not playing nice with my iPhone because my husbands Android is able to send and receive pictures and access the internet with no problems.   I would also like to note that about 2 weeks ago I contacted support to see if they had any news, the tech tried sending me a picture which I did just randomly receive about 2-3 hours later, along with a picture my daughter had sent me earlier in the day.  I asked her to send me another one which I got, but after that I tried sending her a picture and the problem was back. 
    I have been in contact with technical support and network support, who haven't really helped me.  I don't think they know what the problem is so they just ignore me, as it's been 8 days since I've heard from them.  I think 4 weeks is plenty of time to at least narrow it down.  On my first ticket they asked me to run a speed test, which I did and they were going to check the towers.  They called me on my cell, but I missed the call, thanks for leaving that VM though, no cellular data=no VM, so I didn't know until days later you left a message saying no problems were found.  So I had to start over again, two weeks since the problem started.   On my second ticket they said they didn't do the first ticket right, a week later they called back asking for another speed test, which came back above minimum requirements,  they were going to pass it on to network support and here I wait 8 days later, 4 weeks total with no end in sight.
    Today I stopped at the Verizon store hoping they'd have some suggestions.  They said they couldn't do anything on their end, I'd have to call technical support...The only thing they told me that was new was something about a security breach with Samsung extenders, and maybe an update was pushed to my extender that's not playing nice with iPhone.  But how do I check on something like that, who do I report this to??   If that was the case wouldn't Verizon tech support know about it?  I'm not getting any help and I don't feel like anyone at Verizon really cares, but you can bet if my payment was 4 weeks late there'd be an issue. 
    Any suggestions? 

    How old is the extender?  Can it support 1x or both 1x and 3G?  Try checking the Network Extender space for more suggestions and similar questions.

  • TS3694 good evening i have an problem with my iphone 4 the wif and network cant on now if i tray is showing iTunes i tray to reload the ios is showing an error -1 can you help me

    good evening i have an problem with my iphone 4 the wif and network cant on now if i tray is showing iTunes i tray to reload the ios is showing an error -1 can you help me

    No problem, glad to help!
    Update: my PC USB hub was connected to a USB 3 port, I connected the 30 pin cable directly to my PC, And the restore worked just fine. Restored phone from iCloud backup and seems to be working fine.

  • How to find SSID and Network Key to setup wireless printer to iMac?

    It is easy to find your "SSID" and "Network Key" once you understand what you are looking for. Here is what worked for me when I setup a new wirless printer today:
    1) SSID = Your Network Name
    Ex. Jason's Wi-Fi Network
    Ex. Harry's Lounge
    First way to find: on an iMac, go to the top bar on the right side and click on the "wireless symbol". You will see a list of all the wireless networks your computer is picking up. The one you are connected to (if you are able to surf the Internet) is the name you enter when asked for the SSID.
    NOVICE HINT: This is the equivalent to walking into a Starbucks and logging onto their wi-fi via their "network name," which has the word Starbucks in it. Some network names will have have locks next to them, meaning they are "secured by a password" and some will not, meaning anyone can access this "free" wi-fi. This doesn't matter either way, it just helps with making sure you have located the list. Of course, it is also possible, if you live in a remote area, that only your network name will show up.
    Second way to find: on an iMac, go to the apple symbol in the upper left corner of computer and make sure it says "finder" (if it doesn't, just click on your desktop and it will show up), then select:
    go > applications > utilities > Airport Utility > double-click on the image of the AirPort Extreme and the network name will be listed
    2) Network Key = Password used to access your Wi-Fi Network
    Ex. BMXGuy456!
    Ex. Millionare$!!!
    This is the password you created when you setup your wireless network, meaning it may not (and should not be for better security purposes) the same password as you use for your Apple ID, email etc.
    NOVICE HINT: So if for example a friend came to stay with you and wanted to connect to your "secured wifi" meaning there is a lock next to it, you would give them this password.
    EXTRA INFO:
    Why do I need this info anyway?
    Because just like anyone who wants to use your wifi when they come over, the printer needs to understand what to connect to, therefore it basically needs the network name to know "WHAT" to connect to, and the "PASSWORD" in order to access that network.

    After much stumbling around, I also discovered this answer. I picked up the 2270DW used, without disc or manual, so downloaded what I needed from the Brother site, but the Brother Mac OSX instructions feel as if they're written by a non-Mac user. I am on OSX 10.7.5, using an Airport wireless unit in Bridging mode (because I have to use a provider's router at the front end of my setup). But once I picked my Airport network name through the Brother Wireless Setup Utility and then typed my network name in the SSID box and my network password in the Network Key box ("es" --- I think the "network key - i.e. password" had to be confirmed a second time) after waiting for the utility to process the information, it worked like a charm.

  • Open and Network-EAP authentication - difference in security?

    As far as security goes, and assuming Radius authentication wil actually authenticate and allow users access to the wireless network (or not), it there any difference (once again, as far as security goes), between Open Authentication and Network-EAP as described below?
    In any EAP/802.1x-based authentication method, you may question what the differences are between Network-EAP and Open authentication with EAP. These items refer to values in the Authentication Algorithm field in the headers of management and association packets. Most manufacturers of wireless clients set this field at the value 0 (Open authentication), and then signal their desire to do EAP authentication later in the association process. Cisco sets the value differently, from the start of association with the Network EAP flag.

    1. Join process - comparable to connecting a cable in the wired network world. Usually "OPEN".2. Authentication - this verifies the client is who they claim they are because they possess a certificate (EAP-TLS), know the password or a PSK.3. Encryption with TKIP or AES - this is about protecting data as it is transmitted through the air AFTER authentication.
    You are correct.
    What confuses me when attempting to configure the Aironet I'm working with is the difference in terminology with the familiar choices I had in Linksys access points, something like this:- WEP- WPA- WPA-Enterprise- WPA2- WPA2-EnterpriseI thought WPA-Enterprise has to do with Radius and indeed I was able to create a test network in which a Windows XP laptop could connect via a Linksys access point, authenticating with EAP-TLS, with WPA-Enterprise selected on the AP. The Windows 2008 server was both a certificate authority, a radius (NPS) server and a domain controller.With the Aironet, I'm not sure what the equivalent choices should be, because, if you look at the link in my last post, there is a larger selection: WEP 40 bit, WEP 128 bit, TKIP, AES, combinations of what precedes and no reference to WPA or WPA2. I'm guessing TKIP = WPA and AES = WPA2.And while I can select "EAP" in the Express Security Setup tab, I cannot see where I would opt for EAP-TLS rather than PEAP or EAP-TTLS and so forth.I'm going to take a look at your blog now and see if that doesn't enlighten me further.
    You are on track my friend keep the thinking going .... you are very close!
    Some more foundation for you ...
    WPA   -  Is PSK with TKIP
    WPA2 -  Is PSK with AES
    WPA Enterprsie -  EAP- ??? with TKIP
    WAP2 Enterprsie - EAP - ??? with AES
    ??? = Your selected EAP type
    Now, why dont you have to configure EAP type on the AP? Great question, lets break this down.
    1. The AP or WLC for that matter doesnt care what EAP type you use . Why you ask?
    When you configure 802.1X, there are 2 virtual ports . These are virtual and you do nothing to configure these. Once you connect to an AP and EAP starts, the ap BLOCKS ALL TRAFFIC except for EAPOL  traffic. This is the ONLY traffic allowed past the until the AP / WLC receives a RADIUS SUCCESS. Once the AP/WLC sees this radius success it then switches virtually over to the controlled port and allows ALL your traffic to pass.
    2. With that being said, your client is only passing traffic through the ap and wlc. The ap / wlc doesnt care what EAP you are using. Your client is talking directly to the radius server at that point. The AP/WLC at this point is only a pass through, nothing more.
    Does that help ?
    "Satisfaction does not come from knowing the solution, it comes from knowing why." - Rosalind Franklin

  • 10.6.1 Slow Startup and Shutdown

    Did anyone notice the difference between the 10.6.1 startup and shutdown times and the 10.6 times ?
    I had to do a clean install of 10.6 and ignore the 10.6.1 update to get back speed in startup and shutdown.
    Is there anyway to solve this.
    Thanks.

    I had the same problems, and I figured out the cause. It seems that somehow the ownership of my root directory (/) wasn't assigned to the root account anymore, but to myself instead. This made the kernel prelinking fail since it requires that root is the owner. This is how you solve this after launching the Terminal app:
    {quote:title=terminal commands}sudo chown root:admin /
    sudo kextcache -system-prelinked-kernel
    sudo kextcache -system-caches{quote}
    You'll have to enter your password after the first command.
    Hope this helps someone, since it was really frustrating to have these slower startup/shutdown times for me.

  • Kernel Panic while transfering data between MAC HD and network drives

     Kernel Panic while transfering data between MAC HD and network drives. it's an iMAC 24" 2011. Snow Leopard 10.6.8. I can't seem to find the cause to this.Thank you guys !
    Here is the log fine  with error code:
    Error code: 0x0000000000000000
    Interval Since Last Panic Report:  5 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    3C5AA43F-D876-4F9D-A831-D8043218C6E0
    Tue Aug 16 14:54:46 2011
    panic(cpu 0 caller 0xffffff80002d1208): Kernel trap at 0xffffff7f815c6b54, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000005, CR3: 0x0000000000100000, CR4: 0x0000000000040660
    RAX: 0x0000000000000000, RBX: 0xffffff8000000000, RCX: 0x0000000001000000, RDX: 0xffffff8013ae9200
    RSP: 0xffffff80de173ea0, RBP: 0xffffff80de173ed0, RSI: 0x0000000000000000, RDI: 0xffffff8013ae9200
    R8:  0x0000000000000001, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff8016207008, R14: 0xffffff8015a228f8, R15: 0x0000000000000000
    RFL: 0x0000000000010246, RIP: 0xffffff7f815c6b54, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80de173b40 : 0xffffff8000204d15
    0xffffff80de173c40 : 0xffffff80002d1208
    0xffffff80de173d90 : 0xffffff80002e3f4a
    0xffffff80de173da0 : 0xffffff7f815c6b54
    0xffffff80de173ed0 : 0xffffff80002524fe
    0xffffff80de173f00 : 0xffffff8000478c7f
    0xffffff80de173f40 : 0xffffff7f8159b158
    0xffffff80de173fa0 : 0xffffff80002c8527
          Kernel Extensions in backtrace (with dependencies):
             com.thursby.kext.cifs(5.1)@0xffffff7f815ae000->0xffffff7f815cffff
                dependency: com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000
             com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000->0xffffff7f815adfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 105374280984
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet            3.1.3
    com.vmware.kext.vmioplug       3.1.3
    com.vmware.kext.vmci                3.1.3
    com.trendmicro.kext.KERedirect              1.0.0
    com.trendmicro.kext.filehook   1.5.0
    com.vmware.kext.vmx86            3.1.3
    com.thursby.kext.cifs    5.1
    com.thursby.kext.NetBIOS         5.1
    com.apple.filesystems.smbfs     1.6.7 - last loaded 60402747883
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AppleTyMCEDriver      1.0.2d2
    com.apple.driver.AppleHWSensor           1.9.3d0
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleUpstreamUserClient      3.5.7
    com.apple.driver.AppleMikeyHIDDriver                1.2.0
    com.apple.driver.AppleMCCSControl     1.0.20
    com.apple.driver.AppleIntelPenrynProfile           17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyDriver       2.0.5f14
    com.apple.kext.ATIFramebuffer              6.3.6
    com.apple.driver.AppleBluetoothMultitouch     54.3
    com.apple.driver.AppleIntelHDGraphics               6.3.6
    com.apple.driver.AppleIntelNehalemProfile       11
    com.apple.driver.AudioIPCDriver             1.1.6
    com.apple.driver.AppleHDA       2.0.5f14
    com.apple.driver.AppleGraphicsControl               2.10.6
    com.apple.ATIRadeonX3000       6.3.6
    com.apple.iokit.AppleBCM5701Ethernet              3.0.5b8
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPort.Atheros9388   426.35.3
    com.apple.driver.ACPI_SMC_PlatformPlugin      4.7.0a1
    com.apple.driver.AppleLPC         1.5.1
    com.apple.driver.AppleBacklight              170.0.46
    com.apple.kext.AppleSMCLMU                1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB        6.3.6
    com.apple.driver.AppleUSBCardReader                2.6.1
    com.apple.driver.AppleIRController        303.8
    com.apple.iokit.SCSITaskUserClient        2.6.8
    com.apple.iokit.IOAHCIBlockStorage      1.6.4
    com.apple.driver.AppleUSBHub               4.2.4
    com.apple.driver.AppleFWOHCI               4.7.3
    com.apple.BootCache   31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib                1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort             2.1.7
    com.apple.driver.AppleUSBEHCI              4.2.4
    com.apple.driver.AppleUSBUHCI             4.2.0
    com.apple.driver.AppleACPIButtons      1.3.6
    com.apple.driver.AppleRTC        1.3.1
    com.apple.driver.AppleHPET      1.5
    com.apple.driver.AppleSMBIOS                1.7
    com.apple.driver.AppleACPIEC 1.3.6
    com.apple.driver.AppleAPIC      1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient         142.6.0
    com.apple.security.sandbox       1
    com.apple.security.quarantine  0
    com.apple.nke.applicationfirewall           2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement     142.6.0
    com.apple.driver.AppleProfileReadCounterAction           17
    com.apple.driver.AppleProfileTimestampAction               10
    com.apple.driver.AppleProfileThreadInfoAction               14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction       10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface           74.2
    com.apple.iokit.IOBluetoothSerialManager         2.4.5f3
    com.apple.iokit.IOSerialFamily   10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.IOBluetoothHIDDriver               2.4.5f3
    com.apple.driver.AppleMultitouchDriver             207.11
    com.apple.driver.DspFuncLib     2.0.5f14
    com.apple.iokit.IOAudioFamily  1.8.3fc2
    com.apple.kext.OSvKernDSPLib                1.3
    com.apple.driver.AppleSMBusController              1.0.10d0
    com.apple.iokit.IOFireWireIP     2.0.3
    com.apple.iokit.AppleProfileFamily         41
    com.apple.driver.AppleHDAController   2.0.5f14
    com.apple.iokit.IOHDAFamily     2.0.5f14
    com.apple.iokit.IO80211Family  320.1
    com.apple.iokit.IONetworkingFamily      1.10
    com.apple.driver.IOPlatformPluginFamily            4.7.0a1
    com.apple.driver.AppleSMBusPCI           1.0.10d0
    com.apple.driver.AppleBacklightExpert 1.0.1
    com.apple.iokit.IONDRVSupport              2.2
    com.apple.driver.AppleSMC       3.1.0d5
    com.apple.driver.AppleThunderboltEDMSink     1.1.1
    com.apple.driver.AppleThunderboltEDMSource               1.1.1
    com.apple.kext.ATI6000Controller           6.3.6
    com.apple.kext.ATISupport        6.3.6
    com.apple.iokit.IOGraphicsFamily            2.2
    com.apple.driver.AppleThunderboltDPOutAdapter         1.3.2
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily   1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter   1.1.6
    com.apple.driver.AppleUSBHIDKeyboard             141.5
    com.apple.driver.AppleHIDKeyboard     141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController               2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController        2.4.5f3
    com.apple.iokit.IOBluetoothFamily         2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass              2.6.7
    com.apple.iokit.IOSCSIBlockCommandsDevice   2.6.8
    com.apple.iokit.IOUSBHIDDriver               4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice      2.6.8
    com.apple.iokit.IOBDStorageFamily        1.6
    com.apple.iokit.IODVDStorageFamily     1.6
    com.apple.iokit.IOCDStorageFamily        1.6.1
    com.apple.driver.AppleUSBMergeNub 4.2.4
    com.apple.driver.AppleUSBComposite  3.9.0
    com.apple.driver.XsanFilter        402.1
    com.apple.iokit.IOAHCISerialATAPI         1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily              2.6.8
    com.apple.driver.AppleThunderboltNHI               1.2.6
    com.apple.iokit.IOThunderboltFamily    1.4.9
    com.apple.iokit.IOFireWireFamily            4.2.6
    com.apple.iokit.IOUSBUserClient             4.2.4
    com.apple.driver.AppleFileSystemDriver              2.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOUSBFamily     4.2.4
    com.apple.driver.AppleEFIRuntime         1.4.0
    com.apple.iokit.IOHIDFamily      1.6.6
    com.apple.iokit.IOSMBusFamily                1.1
    com.apple.security.TMSafetyNet             6
    com.apple.kext.AppleMatch      1.0.0d1
    com.apple.driver.DiskImages     289
    com.apple.iokit.IOStorageFamily              1.6.3
    com.apple.driver.AppleACPIPlatform     1.3.6
    com.apple.iokit.IOPCIFamily       2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    System Profile:
    Model: iMac12,1, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDS722020ALA330, 1.82 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Officejet Pro 8000 A809, 0x03f0  (Hewlett Packard), 0x3612, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa132000 / 8
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 6

    There is something incompatible would be my guess. Did you disconnect all your peripherals in safe mode just to check?
    You might now create a new temporary user account. Log into the new account. Do the panics still occur?
    I would also visit The XLab FAQs and read the FAQ on diagnosing kernel panics. Sometimes they can be difficult to track down. Looking at each new panic log would help determine if it's cause is associated with the same extensions.

Maybe you are looking for