Mounting folders error

I work for a school division where we needed a script that logs the user on to the servers User folder and Assignment folder. We had one that worked last year on the iBook carts but now our staff have macbooks and the original script no longer fuctions.
Each school has a different IP so we used linux calls netstat through awk command like so:
set the IPID to (do shell script "netstat -nr | grep default |awk '{print $2}' | awk -F \".\" '{print $2}'")
to obtain the second IP number. All the other numbers are constant ie: 169.1.41.0, 169.2.41.0, 169.3.41.0 ...
The first mount is the 169.(#).41.0 /username and the second would 169.(#).41.0/Assignments ( not the real IP of course)
-- this works fine
What happens though is if there is already one of the mounted drives on the laptop the script errors out, so we tried using a:
tell application "Finder" to eject (every disk whose local volume is false)
This removes the mounts off the desktop but it causes the script to error. After much searching we found out it is because Linux still thinks one of the drives is mounted. I did a df in terminal to see and its listed there so eject is not removing them entirely just their visiblity from the desktop.
I tried using:
set the nameHolder to (do shell script "logname")
and unmounting the drivers using umount:
do shell script ("umount /Volumes/169." & IPID & ".41.0/" & nameHolder)
delay 5
do shell script ("umount /Volumes/169." & IPID & ".41.0/Assignments")
which worked if the teacher logs in or they haven't any other folders already mounted. But students who log on with a local generic user "Student" have to use the same script to get to their private folders on the server to save their work using a seperate username and password.
So unlike the teachers who have mobile accounts they log in with a generic local account and then log into the server through the script to save their work. We have worked out most of it except unmounting the existing drives.
Compounded the teachers can also pick other folders to mount after they are logged in.
Is there a applescript command that will unmount every network mounted drive? Eject and unmount did not work. umount -A causes permission errors on all the other mounts so the script again fails.
here is the script:
set the IPID to (do shell script "netstat -nr | grep default |awk '{print $2}' | awk -F \".\" '{print $2}'")
-- we tried eject here: tell application "Finder" to eject (every disk whose local volume is false)
if IPID = "" then
display dialog "Sorry... You do not have a network connection. Network volumes cannot be mounted at this time." buttons {"OK"} with icon stop
-- we also tried the eject script here.
else
repeat
set the userid to text returned of (display dialog "Please enter your School Network User ID:" with icon note default answer "")
set the pass to text returned of (display dialog "Please enter the password for account ID: " & userid with icon note default answer "" with hidden answer)
if userid = "" or pass = "" then
display dialog "You must enter both a User ID and password in order to log on to the network." with icon caution giving up after 10
else
exit repeat
end if
end repeat
mount volume "afp://" & userid & ":" & pass & "@169." & IPID & ".41.0/" & userid
mount volume "afp://" & userid & ":" & pass & "@169." & IPID & ".41.0/Assignments"
end if

I'm not sure I follow the entire thread but the upshot is you're occassionally getting errors unmounting drives.
The first, and most obvious solution, is to find out which files are open and close off whatever processes are using those files, but that's not a trivial task to script.
The alternative is to force-unmount the volume. This will ensure the volume is unmounted but has potential hazards if it's run when there are files in use - they risk becoming corrupted.
If you want the force approach, just:
<pre class=command>do shell script ("umount -f /Volumes/169." & IPID & ".41.0/" & nameHolder)</pre>
The addition of the -f switch forces the unmount.

Similar Messages

  • Mount ocfs2 error in oracle 10g installation on vmware

    Dear All this is very urgent.....kindly help me...
    i m running this command for mount ocfs folder but not run gives error below.......
    [root@rac1 ~]#mount -t ocfs2 -o datavolume,nointr /dev/sda1 /ocfs
    ocfs2_hb_ctl: Bad magic number in superblock while reading uuid
    mount.ocfs2: Error when attempting to run /sbin/ocfs2_hb_ctl: "Operation not permitted"
    --------I have run this command for checking----------
    $ mounted.ocfs2 -d
    $ mounted.ocfs2 -f
    $ cat /etc/ocfs2/cluster.conf
    $ /etc/rc.d/init.d/ocfs2 status [ as root ]
    ---------the output is below--------------------------------
    --------From node 1----------------------------------------------
    [root@rac1 ~]# mounted.ocfs2 -d
    Device FS UUID Label
    [root@rac1 ~]# mounted.ocfs2 -f
    Device FS Nodes
    [root@rac1 ~]# cat /etc/ocfs2/cluster.conf
    node:
    ip_port = 7777
    ip_address = 172.16.31.195
    number = 0
    name = rac1
    cluster = ocfs2
    node:
    ip_port = 7777
    ip_address = 172.16.31.197
    number = 1
    name = rac2
    cluster = ocfs2
    cluster:
    node_count = 2
    name = ocfs2
    [root@rac1 ~]#
    [root@rac1 ~]# /etc/rc.d/init.d/ocfs2 status
    [root@rac1 ~]#
    ----------------------from node 2----------------------------------
    output from node2
    [root@rac2 ~]# su -
    [root@rac2 ~]# mounted.ocfs2 -d
    -bash: mounted.ocfs2: command not found
    [root@rac2 ~]# mounted.ocfs2 -f
    -bash: mounted.ocfs2: command not found
    [root@rac2 ~]# cat /etc/ocfs2/cluster.conf
    node:
    ip_port = 7777
    ip_address = 172.16.31.195
    number = 0
    name = rac1
    cluster = ocfs2
    node:
    ip_port = 7777
    ip_address = 172.16.31.197
    number = 1
    name = rac2
    cluster = ocfs2
    cluster:
    node_count = 2
    name = ocfs2
    [root@rac2 ~]# /etc/rc.d/init.d/ocfs2 status
    [root@rac2 ~]#
    the both node is installed on VMWARE AND LINUX IS OEL4....THE CONFIGRATION OF vmx file below
    ------from first node vmx file configration----------------------
    .encoding = "windows-1252"
    config.version = "8"
    virtualHW.version = "7"
    scsi0.present = "TRUE"
    scsi0.virtualDev = "lsilogic"
    memsize = "1056"
    ide0:0.present = "TRUE"
    ide0:0.fileName = "D:\vmware\ractesting\rac1.vmdk"
    ide1:0.present = "TRUE"
    ide1:0.autodetect = "TRUE"
    ide1:0.deviceType = "cdrom-image"
    floppy0.startConnected = "FALSE"
    floppy0.fileName = ""
    floppy0.autodetect = "TRUE"
    ethernet0.present = "TRUE"
    ethernet0.wakeOnPcktRcv = "FALSE"
    ethernet0.addressType = "generated"
    usb.present = "TRUE"
    ehci.present = "TRUE"
    sound.present = "TRUE"
    sound.fileName = "-1"
    sound.autodetect = "TRUE"
    serial0.present = "TRUE"
    serial0.fileType = "thinprint"
    pciBridge0.present = "TRUE"
    pciBridge4.present = "TRUE"
    pciBridge4.virtualDev = "pcieRootPort"
    pciBridge4.functions = "8"
    pciBridge5.present = "TRUE"
    pciBridge5.virtualDev = "pcieRootPort"
    pciBridge5.functions = "8"
    pciBridge6.present = "TRUE"
    pciBridge6.virtualDev = "pcieRootPort"
    pciBridge6.functions = "8"
    pciBridge7.present = "TRUE"
    pciBridge7.virtualDev = "pcieRootPort"
    pciBridge7.functions = "8"
    vmci0.present = "TRUE"
    roamingVM.exitBehavior = "go"
    displayName = "rac1"
    guestOS = "rhel4"
    nvram = "rac1.nvram"
    virtualHW.productCompatibility = "hosted"
    printers.enabled = "TRUE"
    extendedConfigFile = "rac1.vmxf"
    disk.locking="FALSE"
    disklib.dataCacheMaxSize="0"
    scsi1.sharedBus="virtual"
    scsi0:0.present = "TRUE"
    scsi0:0.fileName = "D:\sharedstorage\ocfs2disk.vmdk"
    scsi0:0.mode = "independent-persistent"
    scsi0:0.deviceType="disk"
    scsi0:1.present = "TRUE"
    scsi0:1.fileName = "D:\sharedstorage\asmdisk1.vmdk"
    scsi0:1.mode = "independent-persistent"
    scsi0:1.deviceType="disk"
    scsi0:2.present = "TRUE"
    scsi0:2.fileName = "D:\sharedstorage\asmdisk2.vmdk"
    scsi0:2.mode = "independent-persistent"
    scsi0:2.deviceType="disk"
    scsi0:3.present = "TRUE"
    scsi0:3.fileName = "D:\sharedstorage\asmdisk3.vmdk"
    scsi0:3.mode = "independent-persistent"
    scsi0:3.deviceType="disk"
    ethernet1.present = "TRUE"
    ethernet1.connectionType = "hostonly"
    ethernet1.wakeOnPcktRcv = "FALSE"
    ethernet1.addressType = "generated"
    ide1:0.fileName = "E:\OEL4\Enterprise-R4-U4-i386-disc4.iso"
    ethernet0.generatedAddress = "00:0c:29:de:6c:7a"
    ethernet1.generatedAddress = "00:0c:29:de:6c:84"
    uuid.location = "56 4d a1 a0 2f 33 08 24-12 e5 7a 39 a7 de 6c 7a"
    uuid.bios = "56 4d a1 a0 2f 33 08 24-12 e5 7a 39 a7 de 6c 7a"
    cleanShutdown = "FALSE"
    replay.supported = "FALSE"
    replay.filename = ""
    ide0:0.redo = ""
    scsi0:0.redo = ""
    scsi0:1.redo = ""
    scsi0:2.redo = ""
    scsi0:3.redo = ""
    pciBridge0.pciSlotNumber = "17"
    pciBridge4.pciSlotNumber = "21"
    pciBridge5.pciSlotNumber = "22"
    pciBridge6.pciSlotNumber = "23"
    pciBridge7.pciSlotNumber = "24"
    scsi0.pciSlotNumber = "16"
    usb.pciSlotNumber = "32"
    ethernet0.pciSlotNumber = "33"
    ethernet1.pciSlotNumber = "34"
    sound.pciSlotNumber = "35"
    ehci.pciSlotNumber = "36"
    vmci0.pciSlotNumber = "37"
    vmotion.checkpointFBSize = "16777216"
    ethernet0.generatedAddressOffset = "0"
    ethernet1.generatedAddressOffset = "10"
    vmci0.id = "-1478595462"
    checkpoint.vmState = ""
    tools.syncTime = "TRUE"
    tools.remindInstall = "FALSE"
    ide1:0.startConnected = "FALSE"
    ------and also paste vmx file configration from node2---------------------
    .encoding = "windows-1252"
    config.version = "8"
    virtualHW.version = "7"
    scsi0.present = "TRUE"
    scsi0.virtualDev = "lsilogic"
    memsize = "1056"
    ide0:0.present = "TRUE"
    ide0:0.fileName = "rac2.vmdk"
    ide1:0.present = "TRUE"
    ide1:0.autodetect = "TRUE"
    ide1:0.deviceType = "cdrom-image"
    floppy0.startConnected = "FALSE"
    floppy0.fileName = ""
    floppy0.autodetect = "TRUE"
    ethernet0.present = "TRUE"
    ethernet0.wakeOnPcktRcv = "FALSE"
    ethernet0.addressType = "generated"
    usb.present = "TRUE"
    ehci.present = "TRUE"
    sound.present = "TRUE"
    sound.fileName = "-1"
    sound.autodetect = "TRUE"
    serial0.present = "TRUE"
    serial0.fileType = "thinprint"
    pciBridge0.present = "TRUE"
    pciBridge4.present = "TRUE"
    pciBridge4.virtualDev = "pcieRootPort"
    pciBridge4.functions = "8"
    pciBridge5.present = "TRUE"
    pciBridge5.virtualDev = "pcieRootPort"
    pciBridge5.functions = "8"
    pciBridge6.present = "TRUE"
    pciBridge6.virtualDev = "pcieRootPort"
    pciBridge6.functions = "8"
    pciBridge7.present = "TRUE"
    pciBridge7.virtualDev = "pcieRootPort"
    pciBridge7.functions = "8"
    vmci0.present = "TRUE"
    roamingVM.exitBehavior = "go"
    displayName = "rac2"
    guestOS = "rhel4"
    nvram = "rac2.nvram"
    virtualHW.productCompatibility = "hosted"
    printers.enabled = "TRUE"
    extendedConfigFile = "rac2.vmxf"
    ethernet1.present = "TRUE"
    ethernet1.connectionType = "hostonly"
    ethernet1.wakeOnPcktRcv = "FALSE"
    ethernet1.addressType = "generated"
    disk.locking="FALSE"
    disklib.dataCacheMaxSize="0"
    scsi1.sharedBus="virtual"
    scsi0:0.present = "TRUE"
    scsi0:0.fileName = "D:\sharedstorage\ocfs2disk.vmdk"
    scsi0:0.mode = "independent-persistent"
    scsi0:0.deviceType="disk"
    scsi0:1.present = "TRUE"
    scsi0:1.fileName = "D:\sharedstorage\asmdisk1.vmdk"
    scsi0:1.mode = "independent-persistent"
    scsi0:1.deviceType="disk"
    scsi0:2.present = "TRUE"
    scsi0:2.fileName = "D:\sharedstorage\asmdisk2.vmdk"
    scsi0:2.mode = "independent-persistent"
    scsi0:2.deviceType="disk"
    scsi0:3.present = "TRUE"
    scsi0:3.fileName = "D:\sharedstorage\asmdisk3.vmdk"
    scsi0:3.mode = "independent-persistent"
    scsi0:3.deviceType="disk"
    ide1:0.fileName = "E:\OEL4\Enterprise-R4-U4-i386-disc4.iso"
    ide1:0.startConnected = "FALSE"
    ethernet0.generatedAddress = "00:0c:29:dc:e1:c9"
    ethernet1.generatedAddress = "00:0c:29:dc:e1:d3"
    tools.syncTime = "TRUE"
    uuid.location = "56 4d c6 2a 5b 77 ee e5-79 46 84 cd 2b dc e1 c9"
    uuid.bios = "56 4d c6 2a 5b 77 ee e5-79 46 84 cd 2b dc e1 c9"
    cleanShutdown = "FALSE"
    replay.supported = "FALSE"
    replay.filename = ""
    ide0:0.redo = ""
    scsi0:0.redo = ""
    scsi0:1.redo = ""
    scsi0:2.redo = ""
    scsi0:3.redo = ""
    pciBridge0.pciSlotNumber = "17"
    pciBridge4.pciSlotNumber = "21"
    pciBridge5.pciSlotNumber = "22"
    pciBridge6.pciSlotNumber = "23"
    pciBridge7.pciSlotNumber = "24"
    scsi0.pciSlotNumber = "16"
    usb.pciSlotNumber = "32"
    ethernet0.pciSlotNumber = "33"
    ethernet1.pciSlotNumber = "34"
    sound.pciSlotNumber = "35"
    ehci.pciSlotNumber = "36"
    vmci0.pciSlotNumber = "37"
    vmotion.checkpointFBSize = "16777216"
    usb:1.present = "TRUE"
    ethernet0.generatedAddressOffset = "0"
    ethernet1.generatedAddressOffset = "10"
    vmci0.id = "735896009"
    usb:1.deviceType = "hub"

    What's the output of "/etc/init.d/o2cb status"
    Have you formatted the partition i.e. mkfs -t ocfs2 /dev/sdb1

  • Invalid checksum or cannot mount image errors with disk copy

    I just upgraded my B/W G3 from OS9 to OS X.2 and only have Internet explorer 5.1 for Mac for internet browsing. I can't even access the Apple downloads page and alternate browsers download as .dmg files. When I click the download I am prompted to pick a location....(I tried to open the files directly through applications/disk copy and that option is grayed out; I can only save files to the desktop) so I saved the files to desktop and when I try to use disk copy to open them, I get either invalid checksum or cannot mount image errors. I am a brand new Mac user and understand this is not Windows and all and I understand the process of dragging the icon to the apps folder, but I can't get that far, I am getting these errors and can't figure out what I'm doing wrong, the icon that appears on the desktop after the download is an image of a hard drive, but on a sheet of paper, not an image of a hard drive itself.
    I think this has to do with the errors, but don't know where to go from here. Any suggestions?

    a few updates-corrections:
    I am running OS 10.1 with the latest update being 10.1.5
    I have upgraded the RAM to 896 mb with some memory chips I got from Ebay...worked like a charm!
    The only browser I can get to install and run is Camino, which crashes sometimes but is way better than IE5 for Mac
    The majority of downloads I find on the internet stil give me the cannot mount image error
    I tried the firmware update but it wants OS9 installed....but I am pretty sure I ran that before I installed OS 10.1.....OS9 still exists on my hard drive, but is not accessable in 10.1
    When I can get an image mounted, a lot of times the program loads in the dashboard, but immediately closes out
    With all these issues, I am considering upgrading to OS 10.4 but am hesitant since I don't know if that is the core problem
    This old Mac is really cool and a refreshing change from Windows and I don't want to give up on it, but I don't want to keep spending money on things that don't work.

  • OsIntegration.mount() failed error

    I'm receiving an "osIntegration.mount() failed" error (see below) when trying to connect using my custom handler in Drive. This error only happens on the Mac.  Connection to the same CMS through Windows 7 works perfectly.  The error seems to be related to the URL entered in Drive.  For example, if I enter
          icms://mobiledemo.flatironssolutions.com:8443/icmsserver/repo
    I get the error.  However, if I enter
         icms://mobiledemo:8443/icmsserver/repo
    it works.  So at first, it appears to be related to entering a fully qualified host name.  However, I have also see it fail on a different host without a fully qualified name (e.g, icms://mtcdmtl601:8080/icmsserver/gpp_dev_repo01).  It is consistent in that if a URL works, it will always work; if it fails, it will always fail.
    Here's the error from the log file:
    2012/01/24 14:43:22,392 [ConnectionHandler-Adobe Drive-20671] INFO  GetServerInfoHandler - -->In()
    2012/01/24 14:43:22,392 [ConnectionHandler-Adobe Drive-20671] INFO  GetServerInfoHandler - -->Out()
    2012/01/24 14:43:22,520 [ConnectionHandler-Adobe Drive-20671] INFO  ConnectHandler - -->In()
    2012/01/24 14:43:22,641 [ConnectionHandler-Adobe Drive-20671] INFO  ConnectHandler - -->Out()
    2012/01/24 14:43:22,641 [ConnectionHandler-Adobe Drive-20671] WARN  DataManager - No IEventService for server ( | icms://mtcdmtl601:8080/icmsserver/gpp_dev_repo01 | icms://mtcdmtl601:8080/icmsserver/gpp_dev_repo01 | enableOfflineEditing: false | isOfflineEditing: false)
    2012/01/24 14:43:22,642 [ConnectionHandler-Adobe Drive-20671] INFO  GetAssetsHandler - -->In()
    2012/01/24 14:43:22,642 [ConnectionHandler-Adobe Drive-20671] INFO  GetAssetsHandler - -->Out()
    2012/01/24 14:43:22,649 [ConnectionHandler-Adobe Drive-20671] INFO  GetVolumeIconsHandler - -->In()
    2012/01/24 14:43:22,650 [ConnectionHandler-Adobe Drive-20671] INFO  GetVolumeIconsHandler - -->Out()
    2012/01/24 14:43:22,819 [ConnectionHandler-Adobe Drive-20671] ERROR MountService - osIntegration.mount() failed
    com.adobe.drive.data.model.DriveException: the server with uuid icms://mtcdmtl601:8080/icmsserver/gpp_dev_repo01 could not be mounted
        at com.adobe.drive.internal.biz.filesystem.mount.OperatingSystemIntegrationMac.mount(Operati ngSystemIntegrationMac.java:95)
        at com.adobe.drive.internal.biz.filesystem.mount.MountService.internalMount(MountService.jav a:144)
        at com.adobe.drive.internal.biz.filesystem.mount.MountService.mount(MountService.java:102)
        at com.adobe.drive.ui.ncomm.handler.MountServerHandler.mountServer(MountServerHandler.java:2 74)
        at com.adobe.drive.ui.ncomm.handler.AddServerHandler.handle(AddServerHandler.java:136)
        at com.adobe.csi.internal.ncomm.InvokeHandler.handle(InvokeHandler.java:88)
        at com.adobe.csi.internal.ncomm.NCommDelegate.execute(NCommDelegate.java:107)
        at com.adobe.versioncue.internal.nativecomm.host.Host.execute(Host.java:200)
        at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.handleRequest(ConnectionH andler.java:162)
        at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.run(ConnectionHandler.jav a:81)
        at java.lang.Thread.run(Thread.java:655)
    2012/01/24 14:43:22,824 [ConnectionHandler-Adobe Drive-20671] INFO  DataManager - java.lang.NullPointerException
    Any help would be greatly appreciated.

    I worked around this issue.  I removed the GetServerInfoHandler reference in my Factory.  Something I was passing for either UIID or IpAddress was causing the problem.

  • Can't mount iPod error message

    Hi, I am trying to fix a feezing problem on my iPod (on startup the display shows a folder with an exclamation mark) and was trying to do a factory restore on it when I ran into the following error messages.
    Installing the latest version of Updater, I tried connecting the iPod and then saw a Windows error message that said:
    Cannot Install this Hardware
    There was a problem installing this hardware
    Apple iPod USB Device
    An error occurred during the installation of the device
    The specified service does not exist as an installed service
    After seeing this error message, Updater then displayed the next error message:
    Can't mount iPod
    Can someone suggest how I can fix this so the iPod is recognized and I can have Updater restore the factory settings?
    Thanks in advance,
    Apple iPod 20GB 20 GB 4th Gen M9282LL/A   Windows XP Pro  

    Have a read the following carefully
    http://discussions.apple.com/thread.jspa?messageID=2001071#2001071
    Seems that you may need to change your iPod drive no.

  • Mount Notification Error 295

    I have a Mount Issue and sent this to Apple last year with no fix. It has now transferred over to my iMac and I need to know why because it is causing my iMac to not connect to the network when the power goes off and it reboots. Can anyone translate it for me?
    Process:         Mount Notification [295]
    Path:            /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
    Identifier:      com.yourcompany.Mount-Notification
    Version:         9.5.0 (1)
    Code Type:       X86 (Native)
    Parent Process:  vendorservice [264]
    Responsible:     vendorservice [264]
    User ID:         502
    Date/Time:       2014-08-19 20:48:52.673 -0500
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  20393E13-1B2A-64A3-FB60-23C1F8BD6C35
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x94ee8471 __raiseError + 193
    1   libobjc.A.dylib                     0x975b4091 objc_exception_throw + 162
    2   CoreFoundation                      0x94ee838b +[NSException raise:format:] + 139
    3   Foundation                          0x92ff276a -[NSKeyedUnarchiver initForReadingWithData:] + 490
    4   AppKit                              0x93b078a8 loadNib + 164
    5   AppKit                              0x93b06da1 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 320
    6   AppKit                              0x93db097e +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 154
    7   AppKit                              0x93b06a1f +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 709
    8   AppKit                              0x93b01d69 NSApplicationMain + 510
    9   Mount Notification                  0x00001bea _start + 216
    10  Mount Notification                  0x00001b11 start + 41
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x94ee8dc7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   com.apple.CoreFoundation       0x94ee8770 __raiseError + 960
    2   libobjc.A.dylib               0x975b4091 objc_exception_throw + 162
    3   com.apple.CoreFoundation       0x94ee838b +[NSException raise:format:] + 139
    4   com.apple.Foundation           0x92ff276a -[NSKeyedUnarchiver initForReadingWithData:] + 490
    5   com.apple.AppKit               0x93b078a8 loadNib + 164
    6   com.apple.AppKit               0x93b06da1 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 320
    7   com.apple.AppKit               0x93db097e +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 154
    8   com.apple.AppKit               0x93b06a1f +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 709
    9   com.apple.AppKit               0x93b01d69 NSApplicationMain + 510
    10  com.yourcompany.Mount-Notification 0x00001bea _start + 216
    11  com.yourcompany.Mount-Notification 0x00001b11 start + 41
    Thread 1:
    0   libsystem_kernel.dylib         0x9a080046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x978e8dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x978eccce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x9a080992 kevent64 + 10
    1   libdispatch.dylib             0x950cb899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x950cb532 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib         0x9a080046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x978e8dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x978eccce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib         0x9a080046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x978e8dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x978eccce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x01113a00  ecx: 0x00000000  edx: 0x00000000
      edi: 0x002436d0  esi: 0x94ee83be  ebp: 0xbffff0c8  esp: 0xbffff0c0
       ss: 0x00000023  efl: 0x00000286  eip: 0x94ee8dc7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x000e4000
    Logical CPU:     1
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
        0x1000 -     0x2ff3 +com.yourcompany.Mount-Notification (9.5.0 - 1) <0F8175C9-BB2C-A871-3211-E967E973BCC0> /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
    0x8fe00000 - 0x8fe32417  dyld (239.4) <FF5ED937-CC28-3FEF-BCAF-750B1CDBAE36> /usr/lib/dyld
    0x9005a000 - 0x9005effc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x9043d000 - 0x90518ff7  com.apple.LaunchServices (572.28 - 572.28) <2DEA5B87-80AC-3ACD-9F60-4BC61353B66E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90519000 - 0x9056aff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x9059a000 - 0x90698fff  libJP2.dylib (1043) <7B186EC7-B37E-3126-BCCE-7787F65C878D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x914b2000 - 0x914b6ffc  com.apple.IOSurface (91.1 - 91.1) <70637267-4D54-3EFF-A929-54FC0A8A907A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92298000 - 0x9265dff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9276e000 - 0x927e5ffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) <D1308EE0-96AA-3442-A27B-264F58AE12B4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x927e6000 - 0x92802fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x92803000 - 0x9281eff6  libPng.dylib (1043) <AFF54258-8124-31AE-BBAA-575FD7C43EF3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9281f000 - 0x9282dff3  com.apple.opengl (9.6.1 - 9.6.1) <B01AF67E-F702-3179-B64F-1C241CDF7B55> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9282e000 - 0x9286bffb  libGLImage.dylib (9.6.1) <E2DADD8A-8A60-3F39-840B-4B7FE7001384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92875000 - 0x92875ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x92876000 - 0x92bebff9  com.apple.HIToolbox (2.1.1 - 698) <392738F0-322F-3C80-BEF7-138AFB124C35> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92c2c000 - 0x92c35fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92c36000 - 0x92c36fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92c37000 - 0x92dfdffb  libicucore.A.dylib (511.34) <9588FA53-7801-3A44-8E5A-1365586A4918> /usr/lib/libicucore.A.dylib
    0x92eb3000 - 0x92ec1fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x92f16000 - 0x92f3afff  libJPEG.dylib (1043) <257BE460-DFB1-3398-8AC5-A2E50FBED794> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92fdc000 - 0x93307ffe  com.apple.Foundation (6.9 - 1056.13) <C33A8984-7E97-36BE-B842-EE4FE35F53EA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93308000 - 0x933f8ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x933f9000 - 0x93586ffb  com.apple.CFNetwork (673.3 - 673.3) <2C900A5F-9E29-3636-846D-68B24774E82A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x935dc000 - 0x93652ff3  com.apple.securityfoundation (6.0 - 55122.3) <6E1412EF-2E22-3C9D-851C-9534903D926A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x936a9000 - 0x936b5ffc  libkxld.dylib (2422.110.17) <FBC1725B-74D4-3DFC-954E-0628948C0781> /usr/lib/system/libkxld.dylib
    0x936b6000 - 0x936c4ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x936c5000 - 0x936f0ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x936f1000 - 0x93703fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x93704000 - 0x93716fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x9374d000 - 0x937aeff7  com.apple.Symbolication (1.4 - 129.0.2) <FD025FD5-C206-3C90-B3BE-FE9B1BEECAFB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9387d000 - 0x93889ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E264995C-298E-3DA4-8AFD-11C941BA5E40> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9388a000 - 0x9388cfff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x9388d000 - 0x93898ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x93899000 - 0x938cffff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x93918000 - 0x93919fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x9391a000 - 0x939e8ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <C09AF796-385F-34DB-B551-68967989E9CB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93ac0000 - 0x93ac6ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x93aca000 - 0x93ae4ff7  com.apple.GenerationalStorage (2.0 - 160.3) <D39634C9-93BF-3C74-828B-4809EF895DA0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x93aed000 - 0x93af5fff  liblaunch.dylib (842.92.1) <C180016C-F2DB-3D8B-A72D-5185CE67DFA2> /usr/lib/system/liblaunch.dylib
    0x93af6000 - 0x93afefff  libcopyfile.dylib (103.92.1) <9B62DDFE-FEFD-31CA-989F-9BE0AB606C49> /usr/lib/system/libcopyfile.dylib
    0x93aff000 - 0x9471dff3  com.apple.AppKit (6.9 - 1265.21) <1D31697B-6F33-3239-BACE-5D1361B1F79A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9471e000 - 0x947b6ff7  com.apple.Metadata (10.7.0 - 800.28) <2DC6EFB3-BE95-3F2C-A892-BD74C077D292> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x947b7000 - 0x94ab8ffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94ab9000 - 0x94abdfff  libheimdal-asn1.dylib (323.92.1) <DD8BAEED-28AC-389E-9DC4-E32DA60CB05A> /usr/lib/libheimdal-asn1.dylib
    0x94ac4000 - 0x94b37fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94b38000 - 0x94b44ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x94b45000 - 0x94b82ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x94b83000 - 0x94c03ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <DA7C0406-EC4A-3369-B1FE-F21FD814F2D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94d83000 - 0x94f85fff  com.apple.CoreFoundation (6.9 - 855.17) <E382BBB6-4F41-3959-ADC7-238BE49A2155> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94f86000 - 0x94fb7ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x94fb8000 - 0x94fbaffb  libRadiance.dylib (1043) <ECD94F60-9AAD-3207-B3BD-9DB559FC5032> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x95021000 - 0x95045ff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x95085000 - 0x950c7fff  libGLU.dylib (9.6.1) <0655104D-2F22-36CE-955B-52A533CA70D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x950c8000 - 0x950e0ffd  libdispatch.dylib (339.92.1) <7E7A88BF-74B3-363B-B534-6F757DF2DDE3> /usr/lib/system/libdispatch.dylib
    0x951c5000 - 0x951c6fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x951f5000 - 0x9525effa  com.apple.datadetectorscore (5.0 - 354.5) <CB793FA7-B873-39A9-855F-D86AB0C35298> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9525f000 - 0x9526cfff  com.apple.AppleFSCompression (56.92.1 - 1.0) <D2E7A2DF-9E5B-35E6-9CCD-0D40ADA7E021> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9526d000 - 0x953c3ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95734000 - 0x957beff7  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <A33D0598-8699-39AC-A1DD-37079F423269> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x957ef000 - 0x957f8fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x957f9000 - 0x957feff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x957ff000 - 0x95801ffe  libCVMSPluginSupport.dylib (9.6.1) <C2071F9E-72A1-360C-BF7E-286F9681922F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9581e000 - 0x95836ff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x95837000 - 0x95847ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95848000 - 0x95934ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x9598b000 - 0x95992ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95993000 - 0x959a7ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <06C2834A-91E9-3DCC-B7D0-9EAC592CE1C5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x959a8000 - 0x95a54ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95aab000 - 0x95ad5fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x95b39000 - 0x95c4bffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x95c86000 - 0x95d6cff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95f38000 - 0x960e4fff  com.apple.QuartzCore (1.8 - 332.3) <DA347693-5E26-3E47-A2B3-3824C52EB08B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9611b000 - 0x96128fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x96129000 - 0x9655dff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x9655e000 - 0x965f5ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x965f7000 - 0x965fbff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x9749e000 - 0x974daff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x975a6000 - 0x9774e4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9775b000 - 0x97764fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x97765000 - 0x977cefff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <3AD9C90B-40A9-312B-B479-3AB178A96EA1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x977cf000 - 0x977f6fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x977f7000 - 0x97810fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97817000 - 0x97834ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x97835000 - 0x9783aff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x9783b000 - 0x9783cfff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9783d000 - 0x9788dff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9788e000 - 0x978e3ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <CB06B746-9EB1-3972-A798-A139E15F5ACC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x978e6000 - 0x978edffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x978ee000 - 0x978f9ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x97a39000 - 0x97a3affd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x97a3b000 - 0x97a81ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97a82000 - 0x97a83fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x97a8d000 - 0x97abdff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x97abe000 - 0x97b81ff1  com.apple.CoreText (367.20 - 367.20) <42445623-3BDD-3678-8B46-845C441B6251> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x97cb0000 - 0x97d0cffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x97d0d000 - 0x97d0efff  libSystem.B.dylib (1197.1.1) <BAD8FCD7-5116-31E8-94A8-A571E12E7E5A> /usr/lib/libSystem.B.dylib
    0x98636000 - 0x9865aff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x9865b000 - 0x986ecfff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9877f000 - 0x98787ffe  libGFXShared.dylib (9.6.1) <632989B3-36C2-302E-8A85-A02125A9C5D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98788000 - 0x987d7ff9  com.apple.HIServices (1.23 - 468) <72D000B0-C8F0-3CE5-89E9-D99E2FAF6F5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x987e9000 - 0x9887bff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x989fb000 - 0x98ce5fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x98d99000 - 0x98e0eff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98e0f000 - 0x98e0ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98e49000 - 0x98e9efff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x98e9f000 - 0x98ea0ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x99044000 - 0x9917bfff  com.apple.desktopservices (1.8.3 - 1.8.3) <3574872B-435C-3AB8-A453-02A33A771CDB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x993f9000 - 0x99411ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <184471C6-C810-3346-B7C7-D86E695D0FA1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x99413000 - 0x9941dfff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x99434000 - 0x9949ffff  com.apple.Heimdal (4.0 - 2.0) <D6465D74-9351-3FF3-9561-AC149AEDB86F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99a0e000 - 0x99a67ffa  libTIFF.dylib (1043) <C03B34F4-8037-3AF5-AE51-B8B5FC8DB639> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x99add000 - 0x99badfef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x99bae000 - 0x99bb8ff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x99c10000 - 0x99e74ff7  com.apple.CoreData (107 - 481.3) <8EB45FB9-CF78-36E1-919C-E976AE4C8146> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99e75000 - 0x99e75ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <9515158F-3A33-39CF-AD5A-201C2B121F33> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99e9f000 - 0x99ecdff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x99ece000 - 0x99fdbff7  com.apple.ImageIO.framework (3.3.0 - 1043) <3AA4C524-1B31-39AC-A641-189D0D6EA427> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x99fdc000 - 0x99fdfff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99fe0000 - 0x99fe9ffc  com.apple.CommonAuth (4.0 - 2.0) <99219CEB-D340-3E1F-9C04-FD0FA700BD67> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x99fea000 - 0x99feafff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9a00a000 - 0x9a00afff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9a00b000 - 0x9a05bfff  com.apple.opencl (2.3.59 - 2.3.59) <D5DAB6C0-D5F6-3E07-BE3D-B24F7560ADE1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a068000 - 0x9a085ff4  libsystem_kernel.dylib (2422.110.17) <BCE753BB-9F18-30CB-87BC-D960721254C1> /usr/lib/system/libsystem_kernel.dylib
    0x9a086000 - 0x9a08affa  libGIF.dylib (1043) <276F48A6-766B-3D40-85C4-C9E8E6051DF7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9a08b000 - 0x9a08cffa  libsystem_sandbox.dylib (278.11.1) <DA875837-A5C2-3004-8117-65F378E4BD03> /usr/lib/system/libsystem_sandbox.dylib
    0x9a09b000 - 0x9a0c7ff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9a0c8000 - 0x9a0d0fff  libsystem_dnssd.dylib (522.92.1) <7E36B79E-6BF4-3462-9A84-C0744D029636> /usr/lib/system/libsystem_dnssd.dylib
    0x9a45c000 - 0x9a550fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9a551000 - 0x9a582ffb  com.apple.GSS (4.0 - 2.0) <145B389F-AC1E-3817-835D-8EA263E96EA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9a583000 - 0x9a5cfff7  libcups.2.dylib (372.4) <A11AA954-07E7-3929-84AB-309B0C0DDB5D> /usr/lib/libcups.2.dylib
    0x9a65f000 - 0x9a68aff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9a68b000 - 0x9aa83ffb  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <9BCF8082-2CE7-3DE6-A5F2-4C84CAE21BB1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9aad2000 - 0x9ab6efff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9ab71000 - 0x9ab80fff  libGL.dylib (9.6.1) <885E9C1F-11C7-347D-BE10-522A40A46596> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9ab81000 - 0x9ab9dff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9abb8000 - 0x9ac0eff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9ac0f000 - 0x9ac1dff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9ac1e000 - 0x9ad91ffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <4248C0FE-F872-34AB-9402-0045D5CD0CC1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9ad92000 - 0x9ad9bfff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x9af17000 - 0x9b20cffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9b326000 - 0x9b326fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x9b327000 - 0x9b596ff2  com.apple.security (7.0 - 55471.14.8) <8AF3BEF0-0EF9-32CD-A316-F9C6325E3491> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9b9bd000 - 0x9b9c1ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x9ba52000 - 0x9ba9afff  com.apple.PerformanceAnalysis (1.47 - 47) <5C6FA727-EAC9-3924-8662-AF01090A9EF4> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9ba9d000 - 0x9bac5fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x9bac6000 - 0x9bb24ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9bd92000 - 0x9bd96ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9bd97000 - 0x9bda2fff  com.apple.CrashReporterSupport (10.9 - 539) <10FE9B2D-404F-32B8-B3CA-CBA3524B4CFF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9be36000 - 0x9be39ff7  libdyld.dylib (239.4) <C03C330D-1757-3D0B-BDD1-913124973BC8> /usr/lib/system/libdyld.dylib
    0x9c13a000 - 0x9c13afff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9c1db000 - 0x9c1ddfff  libsystem_configuration.dylib (596.15) <E49AAD29-35C2-3EE2-AF4D-59514C4B478F> /usr/lib/system/libsystem_configuration.dylib
    0x9c20d000 - 0x9c24dff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 306
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=129.6M resident=61.9M(48%) swapped_out_or_unallocated=67.7M(52%)
    Writable regions: Total=50.5M written=1416K(3%) resident=1684K(3%) swapped_out=0K(0%) unallocated=48.8M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    140K
    Kernel Alloc Once                     4K
    MALLOC                             40.7M
    MALLOC (admin)                       48K
    Stack                              65.6M
    VM_ALLOCATE                         352K
    __DATA                             13.4M
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         43.2M
    __OBJC                             1768K
    __PAGEZERO                            4K
    __TEXT                             86.4M
    __UNICODE                           544K
    mapped file                       139.9M
    shared memory                         4K
    ===========                      =======
    TOTAL                             392.5M
    Model: iMac13,2, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 2.9 GHz, 8 GB, SMC 2.11f16
    Graphics: NVIDIA GeForce GTX 660M, NVIDIA GeForce GTX 660M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: APPLE HDD WDC WD10EALX-408EA0, 1 TB
    USB Device: Composite Device
    USB Device: Hub
    USB Device: OneTouch
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: My Book ES
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 23.4

    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and except as stated in this comment, I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmymac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button. The uninstaller might also be accessed by clicking the Customize button, if there is one.
    Back up all data before making any changes.
    You will generally have to restart the computer in order to complete an uninstallation. Until you do that, there may be no effect, or unpredictable effects.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" such as "AppCleaner" and the like that purport to remove software.

  • Problems with External Hard drive, will not mount and errors in disk utilit

    i have a powerbook g4 aluminum. i have an external hard drive for it. a simple tech 100gig portable drive, almost brand new. i dont know what happened to it, but one day i was starting my computer up with it attached. it wounldnt fully start up, said "waiting for local disks" so i uplugged the external hard drive. now it wont mount and will only show up in the disk utility of my friends macbook. i tried to verify and repair, and this is the message i got.
    Verify and Repair disk “UNTITLED”
    ** /dev/disk1s1
    could not read boot block (Input/output error)
    Error: The underlying task reported failure on exit
    1 non HFS volume checked
    1 volume could not be repaired because of an error
    Im in mexico writing a book and so i really need help on this one guys.

    Hi, hjbugs, and welcome to Apple Discussions. Disconnecting the drive while your Powerbook was accessing it probably caused your problem. It may be repairable using DiskWarrior or TechTool Pro, but if you don't have access to one of those and aren't going to buy one, reformatting the drive with Disk Utility may be the only other way to make it usable again. If it contains data you need to recover first (i.e., data that isn't also stored on your internal HD or other storage media), download the free demo version of one of the data recovery utilities mentioned in this thread and use it to see what is recoverable. If the files you need are recoverable, buy the full version of one of the utilities and recover them.

  • Latest Server Update CAN'T COPY TO SERVER FOLDERS Error Code -36

    I've recently upgraded to the latest OS on my Mac Mini Server...which required an upgrade to the latest Mac Server. I have to say that it's been nothing but frustrations.
    Of all of them, one of the most lingering is issues with copying files to the server from a user's desktop Mac. Namely, mine, the administrator with open permissions as wide as they allow.
    Every time I drag a file over I get this:
    That's when I copy one file. Now, the copy fully works but this happens regardless.
    Worse, when I copy over multiple files I get this error as well and only the top file in the copy-from folder gets successfully copied. In short, I have no way to copy over multiple files. It's requiring me to drag each one and then clear out the error message, which frankly is not possible given I often need to copy hundreds of files from desktop to server.
    PLEASE, some one help.
    Best,
    Seth
    P.S. Some of the other issues in the "upgrade" to this server have been complete folders providing very different folder content and permissions. I've had to complete remove share points on the server and drag over all content and share the new location. I've also had to delete and rebuild users and groups for the entire server. What a waste of time.

    I've recently upgraded to the latest OS on my Mac Mini Server...which required an upgrade to the latest Mac Server. I have to say that it's been nothing but frustrations.
    Of all of them, one of the most lingering is issues with copying files to the server from a user's desktop Mac. Namely, mine, the administrator with open permissions as wide as they allow.
    Every time I drag a file over I get this:
    That's when I copy one file. Now, the copy fully works but this happens regardless.
    Worse, when I copy over multiple files I get this error as well and only the top file in the copy-from folder gets successfully copied. In short, I have no way to copy over multiple files. It's requiring me to drag each one and then clear out the error message, which frankly is not possible given I often need to copy hundreds of files from desktop to server.
    PLEASE, some one help.
    Best,
    Seth
    P.S. Some of the other issues in the "upgrade" to this server have been complete folders providing very different folder content and permissions. I've had to complete remove share points on the server and drag over all content and share the new location. I've also had to delete and rebuild users and groups for the entire server. What a waste of time.

  • Solaris 9 installation "misleads" into mount drives-error  -- please help -

    hi out there - masters of the using of Solaris 9 ...
    whenever I try to install the program onto any harddisk after loading drivers the installation program tells me that not even one of the harddisks can be mounted ... well I have 3 harddisks & 1 combo-drive with Windows Millenium on C: Windows XP Home on the first and second harddisk + smaller disk for pagefile.sys on the second IDE
    - there is just one error message at the beginning of loading drivers (one system device is being added twice -- controller or something as I can remember - once as a Non-acpi and secondly as ACPI-device - but I could change nothing here)
    - please help -- I would be very glad if you would help me install from my 4 Cd-roms
    thanks in advance

    Try to boot from the "Software 1 of 2" CD, not the "Installation" CD.
    Maybe the good old installation method works better on your system than the new webstart installer.

  • Can anyone help me with this Mount Notification Error?

    Here's the text in the error:
    Process:    
    Mount Notification [123]
    Path:       
    /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
    Identifier: 
    com.yourcompany.Mount-Notification
    Version:    
    9.5.0 (1)
    Code Type:  
    X86 (Native)
    Parent Process:  vendorservice [106]
    Date/Time:  
    2012-12-13 23:24:29.233 -0500
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    216187 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  3 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    62350DEF-99F3-4E44-BC68-AC4D91D433A3
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'
    *** Call stack at first throw:
    0   CoreFoundation                 
    0x90fa46ca __raiseError + 410
    1   libobjc.A.dylib                
    0x955385a9 objc_exception_throw + 56
    2   CoreFoundation                 
    0x90fa43f8 +[NSException raise:format:arguments:] + 136
    3   CoreFoundation                 
    0x90fa436a +[NSException raise:format:] + 58
    4   Foundation                     
    0x95968f31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
    5   AppKit                         
    0x9441e11a loadNib + 119
    6   AppKit                         
    0x9441d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    7   AppKit                         
    0x9441d4ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    8   AppKit                         
    0x9441d3f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    9   AppKit                         
    0x9441a1fd NSApplicationMain + 434
    10  Mount Notification             
    0x00001bea _start + 216
    11  Mount Notification             
    0x00001b11 start + 41
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation 
    0x90fefa37 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib          
    0x955385a9 objc_exception_throw + 56
    2   com.apple.CoreFoundation 
    0x90fa43f8 +[NSException raise:format:arguments:] + 136
    3   com.apple.CoreFoundation 
    0x90fa436a +[NSException raise:format:] + 58
    4   com.apple.Foundation     
    0x95968f31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
    5   com.apple.AppKit         
    0x9441e11a loadNib + 119
    6   com.apple.AppKit         
    0x9441d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    7   com.apple.AppKit         
    0x9441d4ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    8   com.apple.AppKit         
    0x9441d3f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    9   com.apple.AppKit         
    0x9441a1fd NSApplicationMain + 434
    10  ...rcompany.Mount-Notification
    0x00001bea _start + 216
    11  ...rcompany.Mount-Notification
    0x00001b11 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x917ff382 kevent + 10
    1   libSystem.B.dylib        
    0x917ffa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x917fef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x917fecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x917fe781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x917fe5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x917fe412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x917fe9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x917fe5c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x95538585  ecx: 0xa01c9540  edx: 0x0000003b
      edi: 0xa0564ab0  esi: 0x005084a0  ebp: 0xbffff628  esp: 0xbffff610
       ss: 0x0000001f  efl: 0x00000282  eip: 0x90fefa37   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x000cf000
    Binary Images:
    0x1000 -
    0x2ff3 +com.yourcompany.Mount-Notification 9.5.0 (1) <0F8175C9-BB2C-A871-3211-E967E973BCC0> /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0x90003000 - 0x9000eff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9000f000 - 0x90031fef  com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e9a000 - 0x90e9bff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90ea6000 - 0x90eb4fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x90ed0000 - 0x9104bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x910e5000 - 0x91105fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9173f000 - 0x917d7fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x917d8000 - 0x9197fff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x91a22000 - 0x91a48ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91d48000 - 0x91d48ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91f93000 - 0x91fb7ff7  libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92030000 - 0x92350ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92357000 - 0x92367ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9263d000 - 0x92647fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92648000 - 0x926a5ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x926a6000 - 0x926f9ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92d76000 - 0x92d76ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x92d77000 - 0x92d79ff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92dad000 - 0x92db9ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x92df0000 - 0x92ef0fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x92f29000 - 0x930abfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
    0x930d3000 - 0x9343eff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9343f000 - 0x93541fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9373f000 - 0x9380afef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9389c000 - 0x93b02ff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93b2e000 - 0x93c08fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93c09000 - 0x943f8557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x943f9000 - 0x94417fe7  libPng.dylib ??? (???) <5B979A83-8CE7-6BD7-B84C-A2D1119B378D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94418000 - 0x94cfbff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94cfc000 - 0x94d3fff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94fd6000 - 0x9501aff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95047000 - 0x95066ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95157000 - 0x95168ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x954ab000 - 0x9552dffb  SecurityFoundation ??? (???) <2E1F1AF0-A258-D215-2600-5DF03896D1F1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9552e000 - 0x955dbfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x955dc000 - 0x955e0ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x955f5000 - 0x957b8feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x957b9000 - 0x957bdff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x957f2000 - 0x95813fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x95827000 - 0x95896ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95958000 - 0x95bc9fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95bca000 - 0x95c83fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95ccd000 - 0x95e0afe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95e0b000 - 0x95e75fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x95ede000 - 0x95f2efe7  libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95f9f000 - 0x960abfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x960b7000 - 0x960cfff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x960d0000 - 0x9616dfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9639a000 - 0x9642cfe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x964a9000 - 0x964acff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96b0d000 - 0x96b5dff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96b68000 - 0x96b68ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96cb2000 - 0x96cb8fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x96cb9000 - 0x96cfbff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96cfc000 - 0x96d42ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x96d79000 - 0x96d79ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96d7a000 - 0x96d83ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96d84000 - 0x96db5ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96dd8000 - 0x96e1cfe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96e24000 - 0x96e85fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96e86000 - 0x96e93ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96e94000 - 0x96f42ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97015000 - 0x9704fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x97227000 - 0x972a1fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x972a2000 - 0x97322feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x974b1000 - 0x974c5fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x976a0000 - 0x976c8ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x976c9000 - 0x976d3ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x976ed000 - 0x97b03ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97b05000 - 0x97b52feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97b53000 - 0x97b56fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98d69000 - 0x98e21feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x98e22000 - 0x98f50fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x98f51000 - 0x98fecfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98fed000 - 0x98fffff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99000000 - 0x99001ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x99002000 - 0x9903fff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99040000 - 0x99120fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x99200000 - 0x99635ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x99636000 - 0x99669ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x998e4000 - 0x998f8ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x998f9000 - 0x998f9ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x998fa000 - 0x999b6fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99acc000 - 0x99ad1ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x99ad2000 - 0x99ad2ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99b4d000 - 0x99e71fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99f34000 - 0x99f34ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9a0a4000 - 0x9a14cffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9a880000 - 0x9a88eff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9a8c8000 - 0x9a974fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9a975000 - 0x9a979ff7  IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBook7,1, BootROM MB71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.60f5
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Kindle, 0x1949  (Lab126), 0x0006, 0x24100000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0x06630000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000 / 2

    For now, yes. We'll see if someday in the future I need the program. In the meantime, I'm going to continue enjoying an error-free boot.

  • CSS '%% The File System is not mounted.' error.

    While I first thought that this was a hardware problem, I've had it happen to 3 of my CSS 11503s in the last 2 weeks. I logged into the CSS and found that the prompt had gone back to the default prompt. Upon further investigation, I was not able to do a write mem - it would just return the following error:
    %% The File System is not mounted.
    Has anyone seen this before? I went to reboot the unit, but I've lost access to it. I'm actually going to the datacenter today to check it further, but I was hoping someone might be able to tell me if this is a bug or software issue I might need to worry about. Any help would be appreciated. Thanks!
    Additional info:
    CSS 11503 - failover pair running in one-armed mode.
    Version: sg0730203 (07.30.2.03)
    Flash (Locked): 07.30.2.03
    Flash (Operational): 07.30.2.03
    Type: PRIMARY
    Licensed Cmd Set(s): Standard Feature Set
    Jason

    Looks like you have a hard disk failure.
    Reboot the CSS and let it go through a full diagnostic.
    If it does not work after reboot, you will need to replace the unit.
    If it works, this could be a one-time error.
    If the error comes back, definitely replace the box.
    Gilles.

  • Udev Mounting - DBus error RemoteVolumeMonitor.Failed

    Hello.
    I have been using thunar-git for a while and every time a mount an external media (cd/dvd, flash memory, etc....) I get this error:
    "DBus error org.gtk.Private.RemoteVolumeMonitor.Failed: An operation is already pending."
    The drive mounts and I don't have any problems, but the error is sort of annoying. As far as I can tell, the error doesn't bring any ill effects except having to close the dialog box. Does anyone know how I can prevent this error from showing or fix it?
    Thanks!

    Solved. I created the file
    /etc/polkit-1/localauthority/50-local.d/org.freedesktop.udisks.pkla
    Here is my file:
    [Local Users]
    Identity=unix-user:johnny
    Identity=unix-group:storage
    Action=org.freedesktop.udisks.*
    ResultAny=yes
    ResultInactive=no
    ResultActive=yes
    No more problems with thunar (there was an option to add in the "Action" section to allow the automounting of the internal drives, but i don't remember. I don't need it).
    EDIT: I think that you can also do:
    [Local Users]
    Identity=unix-user:*
    Identity=unix-group:storage
    Action=org.freedesktop.udisks.*
    ResultAny=yes
    ResultInactive=no
    ResultActive=yes
    If you want allow to a generic user this option.
    Last edited by reddhawk (2012-10-31 06:59:38)

  • PC does not recognize Ipod - Can't mount IPOD error message

    Hello everyone,
    I was wondering if anyone experienced the same problem with their Ipod as I have. I have tried to play songs on my Ipod through the shuffle songs function but it does not work. The Ipod tries to play one song; however, it will not play it and then it will continue to the next which won't play either and this continues until I just shut off my Ipod. I have tried resetting it and also reinstalling Itunes but it does not help the problem.
    A second problem is that my Windows PC does not recognize my Ipod when I plug it in. I have tried so many things to try and solve this including trying to restore my IPOD using the updater but when I keep getting the error message "Can't mount IPOD".
    If anyone knows what I can do to try to fix this I am greatly in your debt!
    Thanks!

    I had the same problem. Now I have many new ones. Here goes the chain of events 1st iPod did the same exact thing:
    1. Was going along my marry way listening to music
    2. Music stops playing
    3. I look to find my iPod cycling throughe very song but playing none... for an hour.
    4. I turn it off.
    5. I get home to attempt to restore it but when I plug it up to the computer, it is not recognized, cannot mount, ect.
    6. I continue trying to find a way, then it stops going to the "Do Not Disconnect" screen.
    7. Well I try it later on today, like 20 mins ago and it does it! Yay! but then it resets itself and it now rests on the apple logo and Windows does not recognize the USB device.
    Oh yeah, did I mention I made the trade and got this one SATURDAY. Yeah so it's already broken.
    any suggestions?

  • New zone and inherited file system mount point error

    Hi - would anyone be able to help with the following error please. I've tried to create a new zone that has the following inherited file system:
    inherit-pkg-dir:
    dir: /usr/local/var/lib/sudo
    But when I try to install it fails with:
    root@tdukunxtest03:~ 532$ zoneadm -z tdukwbprepz01 install
    A ZFS file system has been created for this zone.
    Preparing to install zone <tdukwbprepz01>.
    ERROR: cannot create zone <tdukwbprepz01> inherited file system mount point </export/zones/tdukwbprepz01/root/usr/local/var/lib>
    ERROR: cannot setup zone <tdukwbprepz01> inherited and configured file systems
    ERROR: cannot setup zone <tdukwbprepz01> file systems inherited and configured from the global zone
    ERROR: cannot create zone boot environment <tdukwbprepz01>
    I've added this because unknown to me when I installed sudo from sunfreeware in the global it requires access to /usr/local/var/lib/sudo - sudo itself installs in /usr/local. And when I try to run any sudo commands in the new zone it gave this:
    sudo ls
    Password:
    sudo: Can't open /usr/local/var/lib/sudo/tdgrunj/8: Read-only file system
    Thanks - Julian.

    Think I've just found the answer to my problem, I'd already inherited /usr ..... and as sudo from freeware installs in /usr/local I guess this is never going to work. I can only think to try the sudo version of the Solaris companion DVD or whatever it's called.

  • Video DVDs will not mount, gives error.

    I'm getting an errors when I try to mount a DVD video. Not a DVD with data on it like the iLife installer, which works just fine, but your common video DVD. I've tried a bunch of random DVDs from my video library and they either give an error dialog saying it can't read them or it just doesn't say anything at all.
    I also got the following 2 errors in the console when I opened DVD Player:
    2011-02-05 6:44:50 AM com.apple.SecurityServer\[20] Failed to authorize right by client /Applications/DVD Player.app for authorization created by /Applications/DVD Player.app.
    2011-02-05 6:44:50 AM com.apple.SecurityServer\[20] Failed to authorize right com.apple.dvdplayer.authorizemedia by client /Applications/DVD Player.app for authorization created by /Applications/DVD Player.app.
    Anyone know what is going on here?

    Oh, I'd like to give a shout out to the following resources that helped me:
    http://discussions.apple.com/thread.jspa?threadID=687983&tstart=105
    http://hints.macworld.com/article.php?story=20070119211646338

Maybe you are looking for

  • Iphone Videos & Video Out not working

    Hi All, I have several TV programmes on my iphone, and yet when i plug the iphone into my TV using the apple composite AV cable, and tell the iphone to display on screen nothing happens, no sound or picture at all. I have just moved to Chicago from L

  • Adobe X Standard: Cant't load standard.joboptions or any other .joboptions file

    After installing Acrobat X standard on a Win 7, 64 Bit, professionell machine Acrabat and distiller start, but when printing to Acrobat or out of distiller there is always an error: Adobe PDF-Setting: Error reading the file.....  (as described: the .

  • Simple How-To # 1: Adding additional base stations

    That's all I need. A series of simple, step-by-step 'how-to's'. I've been using Macs for almost 20 years, but find the instruction manual and software for the new Airport Utility [AEBSn device] to be particularly unhelpful. I need to add an AX to ext

  • Setting up JDBC Data Source for JCA Database Adapter  in WLS - only SID?

    Following the documentation for setting up a connection for use with the JCA Database Adapter (http://otnbeta.oracle.com/fmw11g/582tj30eapvb/integration.1111/e10231/life_cycle.htm), section 2.4.1, Step 8 simply says "Enter the connection properties i

  • Embedding audio into my muse website

         I have been reading through many discussions on this topic, and they've all been answered with the same answer. I have tried this answer many different ways, but everytime I end up with an empty music player. This is the code I came across: <aud