Linux visa crash

I am working on Linux with LabVIEW 7.0, communicating with a serial
device.  I recently downloaded the latest NI-VISA for Linux
(NI-VISA 3.4). I previously had NI-VISA 3.0 (I think) installed. Now
when I run my program LabVIEW and my program disappear into thin air. I
can even make this happen by trying to open the Serial Port Init VI
that contains the VISA commands.
Thanks for any suggestions.
Sam

Hi Sam,
What exactly happens when your program disappears?  Is LabVIEW
simply closing?  Do you get an errors or logs?  What version
of Linux are you running?  Have you been able to reproduce this on
a different computer?  It sounds like your installation might be
corrupted if simply opening on of the native LabVIEW serial VI's causes
this to happen.  You may need to uninstall and reinstall.
Hope this helps,
Robert Mortensen
Software Engineer
National Instruments

Similar Messages

  • LINUX OS crashing

    hi every body
    i am a newbie .
    i was trying to install 10g on OEL 5.6 on VMware according to this article.
    http://kamranagayev.wordpress.com/2009/01/05/installing-centos-on-vmware-step-by-step/
    i have done all the installation steps correctly and when the installation is complete and i try to reboot then my linux sytem crashes
    giving this error
    “Panic on CPU 0
    General protection fault
    error_code 0000 :”
    i am getting the options of selecting the kernal and when i select it ,it produces some code and then this error is generated and OS restarts .
    i am a student and donot know much about linux.
    plz plz help me and m sorry for posting it under the wrong topic but no one is replying me on other forums.may be some one here can help me .
    i have performed this installation 3 times :(
    looking forward to any response.
    thanx in advance .
    REGARDS !

    When installing Oracle make sure you follow the installation guide very carefully and make sure you have the kernel settings as a min below. I have ran into the issues you are seeing before and it is most likely an inncorect setting. Go back through and follow step by step.
    kernel.shmall = 2097152
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default=262144
    net.core.wmem_default=262144
    net.core.rmem_max=262144
    net.core.wmem_max=262144
    Also make sure you set the Oracle limits correct.
    /etc/security/limits.conf
    oracle soft nproc 2047
    oracle hard nproc 16384
    oracle soft nofile 1024
    oracle hard nofile 65536
    http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.html

  • CVI 8.0 Linux runtime crashing in PlotStripChart

    I'm trying a quick port of some old CVI 5.5 code to the CVI Linux runtime 8.0. Building the Windows code with CVI8.0.1 on Windows 2000 in an Oracle Virtualbox-3.2 on Ubuntu 8.04 it all works so I know there are no CVI 5.5 -> 8.0 issues. But after building with cvicc the Linux code crashes when run on Ubuntu 8.04. Using the KDbg interface to gdb I've isolated it to PlotStripChart() function call.
    This is what is puzzling and got me stumped, if I build the stripchart.prj example on Ubuntu 8.04 it plots a stripchart just fine. I've also used the stripchart control on other CVI Linux Runtime projects and it always worked. The only difference I could find was this code is plotting VAL_INTEGER where the example and my other code was plotting VAL_DOUBLE, but modifying my plot buffer and the PlotStripChart() to use doubles still fails.
    If I comment out the single PlotStripChart() line in the code it runs fine and appears to work correctly. Its a fairly complicated application that communicates over TCP/IP to a networked real-time controller and provides the user interface and data saving functions for our experiment. On a couple of dry runs without the PlotStripChart() call the saved data and output commands all appear correct, so this appears to be the only issue.
    Any suggestions, I'm out of ideas and getting no more clues from KDbg/gdb.
    I'm in the process of trying out the CVI2010 Linux Runtime Beta, but since CVI2010 no longer supports Windows 2000 I'm slowed down by having had to set up an XP virtual machine (Boy there sure are a lot of patches since my last MSDN XP disk ) and the fact that alien fails to create the 32-bit files on the 64-bit Ubuntu 10.04 I'm currently targeting. I'll have to convert the runtime rpm files on my 32-bit Ubuntu 8.04 system. Not a showstopper but a time-waster so I've had to put it aside for now. I have the 8.0 CVI Linux Runtime apparently working on 64-bit Ubuntu 10.04 so I expect the same procedures should get me going with the 2010 beta once I get alien to make the 32-bit deb files from the rpm files.
    Solved!
    Go to Solution.

    Hassan A wrote:
    Hi Wally_666,
    I would like to attempt to reproduce this issue to figure out exactly what is going on.  If you can provide me with the workspace, project and all necessary source files for your application (preferably in a .zip file) after you ported it to CVI 8.0.1 that would be appreciated.
    -Hassan A.
    Applications Engineer
    National Instruments
    I'm happy to see this follow up, but without the networked data source to connect to, my program will just quit with an error message and there will never be a call to the PlotStripChart function if I comment out the exit, as there will be no incoming TCP/IP data.
    At one point during development I had a little program that would run on the local system and accept the TCP/IP connection, swallow any commands and fake a reasonable response,  while outputting pretend (sawtooth-wave) data on a few channels.
    Let me try and recreate it on the 2010 beta runtime and if I can then I will be willing to put some work into trying to let you duplicate it.  If importing the Windows CVI 8.0 UIR file into CVI 2010beta fixes the issue when loaded by the Linux Runtime 2010beta its not worth either of our efforts to resolve.
    As I said it will be next week at the earliest before I can get back to trying the beta.
    Attached is the UIR file from my Windows archive, you might load it into a blank project, run the code generator and then have the timer callback plot some random data.  Then you could move the project to Linux and run cvicc and see if it locks up in the PlotStripChart function or not.
    I could do UIR edits on Windows and added a few debugging indicators and it always worked when run on Windows and failed when run on Linux after building with cvicc until I deleted the stripchart control and pasted in a version copied from an another variaton of the code. I suspect deleting and re-creating would have worked too, but the stripchart  had a lot of color and other attribute tweaks from the defaults, all via the UIR editor long ago. 
    I suspect there is something corrupt in this UIR file that LoadPanel on Windows fixes or ignores but causes the control to fail (lock up the process) when loaded on Linux.
    Using CVI 8.0.1 on an Oracle Virtualbox with the source code on a network share (to the local Linux machine) was very convenient as the Virtualbox NAT let it connect to my networked data source to verify the Windows version worked.   The only real hassle was after building on Windows I had to delete the civbuild.* directory before I could run the cvicc command on the shared source directory.
    I see some requests for "running the full IDE on Linux", but I think NI could do almost as well with minimal effort by licensing VIrtualbox  & and a Windows version to distribute a CVI "appliance VM" of the Windows IDE and appropriate CVI version.  Documenting some tips abut using gdb with KDbg or ddd or whatever on the cvicc -debug code would finish the deal.  I found KDbg easier to start with for converging on the statement causing the lockup.  But while gdb is a pretty big step down from the CVI debugger (which is by far the best I've ever used!) it is more than servicable.
    --wally.
    Attachments:
    stripchart.uir ‏25 KB

  • Swing Java 8 Linux Radeon Crash

    I'm developing a Swing app on a Linux workstation.  When resizing the window of the running app, I get a crash caused by something (I assume the JVM) trying to initialize/load the linux kernel radeon module.  I'm not using that module.  In fact, I have the radeon module blacklisted because I'm using the native fglrx catalyst driver, which requires nomodeset, and the radeon module doesn't work with nomodeset.  Running the app under Java 7, this does not occur.
    Nothing special about the app: a JFrame with a toolbar and a JTable.
    Any insight/tips/suggestions?
    Details:
    Java 8 (crashes):
    Java(TM) SE Runtime Environment (build 1.8.0-b132)
    Java HotSpot(TM) 64-Bit Server VM (build 25.0-b70, mixed mode)
    Java 7 (works):
    Java(TM) SE Runtime Environment (build 1.7.0_60-b19)
    Java HotSpot(TM) 64-Bit Server VM (build 24.60-b09, mixed mode)
    System:
    Linux 3.9.10-100.fc17.x86_64 #1 SMP x86_64 GNU/Linux
    X.Org X Server 1.12.4
    xorg-x11-drv-catalyst 12.10

    I'm developing a Swing app on a Linux workstation.  When resizing the window of the running app, I get a crash caused by something (I assume the JVM) trying to initialize/load the linux kernel radeon module.  I'm not using that module.  In fact, I have the radeon module blacklisted because I'm using the native fglrx catalyst driver, which requires nomodeset, and the radeon module doesn't work with nomodeset.  Running the app under Java 7, this does not occur.
    Nothing special about the app: a JFrame with a toolbar and a JTable.
    Any insight/tips/suggestions?
    Details:
    Java 8 (crashes):
    Java(TM) SE Runtime Environment (build 1.8.0-b132)
    Java HotSpot(TM) 64-Bit Server VM (build 25.0-b70, mixed mode)
    Java 7 (works):
    Java(TM) SE Runtime Environment (build 1.7.0_60-b19)
    Java HotSpot(TM) 64-Bit Server VM (build 24.60-b09, mixed mode)
    System:
    Linux 3.9.10-100.fc17.x86_64 #1 SMP x86_64 GNU/Linux
    X.Org X Server 1.12.4
    xorg-x11-drv-catalyst 12.10

  • 4.0b6pre on linux started crashing on https on 9/12 & unable to send crash reports?

    Both on Sunday 9/12/2010 & today Monday 9/13/2010 using Lucid Puppy 5.1 on 2 different pcs the latest-trunk of Minefield 4.0b6pre for 686 linux
    crashed horribly trying to load: https://www.chase.com/ . I am using
    opendns via copying nameserver 208.67.222.222 & 208.67.220.220 to
    /etc/resolv.conf .
    I went back to 09/10 latest-trunk to post this. I have not added any extensions or addons. But after the crashes updated flash to the latest version.

    4.0b7pre crashes trying to ask about default browser. Unable to send crash report.
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:4.0b7pre
    BuildID: 20100914030208
    CrashTime: 1284422847
    EMCheckCompatibility: true
    FramePoisonBase: 00000000f0dea000
    FramePoisonSize: 4096
    InstallTime: 1284422616
    ProductName: Firefox
    ReleaseChannel: nightly
    SecondsSinceLastCrash: 179
    StartupTime: 1284422837
    Theme: classic/1.0
    Throttleable: 1
    URL: http://www.mozilla.org/projects/firefox/4.0b7pre/whatsnew/
    Vendor: Mozilla
    Version: 4.0b7pre
    This report also contains technical information about the state of the application when it crashed.

  • Linux - T420s crash with screen flickering

    Hello all together,
    I have a strange problem with my Linux Mint 15 running on a Thinkpad T420s.
    Sometimes while doing graphic intensive stuff, like watching movies, the system crashes and i get only colored flickering on the screen (as seen in the image:http://i.imgur.com/xPUkvVu.jpg).
    After about 15 seconds the system shuts down. After this i can normally start the system and everything works fine. 
    The logfiles don't show any usefull information on the crash.
    I experience this issue with several kernel versions. Right know i am using Kernel 3.8.0-19-generic.
    I also already tried several different versions of the i915 driver module.
    Does anybody else have similar problems or does somebody have a hint on how to solve this issue?
    Thank you in advance,
    Loranon

    The RAM is not the problem.
    I've restored the original memory, but the problem persists..
    Anothers guys with the same or similar problem with Mac OS X Lion?
    Any idea?
    Thanks.

  • Linux server crashing neither CLI nor the GUI will be accessible, server down

    Problem:
    Background:
    Linux server became unresponsive today both from GUI and CLI, could happen to both (Airwave or Clearpass)
    collected the below logs from the server:
    memory usage , CPU usage and /var/log/messages
    After doing a hard reboot the server was accessible.
    Diagnostics:
    Check Memory usage
    Following log shows server memory usage
    [root@localhost mercury]# sar -r
    15:00:01 kbmemfree kbmemused %memused kbbuffers kbcached kbcommit %commit
    15:20:01 476604 1396772 74.56 110140 707116 1201652 30.64
    15:30:02 526240 1347136 71.91 110412 710536 1165148 29.71
    15:55:53 LINUX RESTART
    16:00:01 kbmemfree kbmemused %memused kbbuffers kbcached kbcommit %commit
    16:10:01 517168 1356208 72.39 136040 588964 1196724 30.52
    16:20:01 510580 1362796 72.75 137488 596560 1191664 30.39
    As we can see, it’s not that high and has plenty of free Memory.
    Check CPU usage
    Following log shows CPU usage.
    [root@localhost mercury]# sar -u
    15:00:01 CPU %user %nice %system %iowait %steal %idle
    15:20:01 all 6.01 0.04 1.74 1.59 0.14 90.48
    15:30:02 all 4.97 0.04 1.54 7.87 0.15 85.44
    Average: all 7.20 0.06 2.19 2.69 0.26 87.60
    15:55:53 LINUX RESTART
    16:00:01 CPU %user %nice %system %iowait %steal %idle
    16:10:01 all 9.13 0.04 2.78 6.98 0.31 80.76
    16:20:01 all 4.21 0.04 1.39 3.49 0.15 90.73
    Again, CPU wasn’t at 100%.
    However, when i check the /var/log/messages log , saw the following:
    Check Kernel Panic messages in Logs
    Aug 22 15:38:05 servercore kernel: INFO: task jbd2/vda3-8:250 blocked for more than 120 seconds.
    Aug 22 15:38:05 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:05 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:05 servercore kernel: jbd2/vda3-8 D 0000000000000000 0 250 2 0x00000000
    Aug 22 15:38:06 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:06 servercore kernel: Call Trace:
    Aug 22 15:38:06 servercore kernel: INFO: task rs:main Q:Reg:1035 blocked for more than 120 seconds.
    Aug 22 15:38:06 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:06 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:06 servercore kernel: rs:main Q:Reg D 0000000000000000 0 1035 1 0x00000080
    Aug 22 15:38:06 servercore kernel: Call Trace:
    Aug 22 15:38:06 servercore kernel: INFO: task queueprocd - qu:1793 blocked for more than 120 seconds.
    Aug 22 15:38:06 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:06 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:06 servercore kernel: queueprocd - D 0000000000000000 0 1793 1 0x00000080
    Aug 22 15:38:06 servercore kernel: Call Trace:
    Aug 22 15:38:06 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:06 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:06 servercore kernel: Call Trace:
    Aug 22 15:38:06 servercore kernel: INFO: task httpd:30439 blocked for more than 120 seconds.
    Aug 22 15:38:06 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:07 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:07 servercore kernel: httpd D 0000000000000000 0 30439 2223 0x00000080
    Aug 22 15:38:07 servercore kernel: Call Trace:
    Aug 22 15:38:11 servercore kernel: INFO: task httpd:30482 blocked for more than 120 seconds.
    Aug 22 15:38:11 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:38:11 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:38:11 servercore kernel: httpd D 0000000000000000 0 30482 2223 0x00000080
    Aug 22 15:38:11 servercore kernel: Call Trace:
    Aug 22 15:39:54 servercore kernel: INFO: task jbd2/vda3-8:250 blocked for more than 120 seconds.
    Aug 22 15:39:54 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:39:54 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:39:54 servercore kernel: jbd2/vda3-8 D 0000000000000000 0 250 2 0x00000000
    Aug 22 15:39:54 servercore kernel: Call Trace:
    Aug 22 15:39:54 servercore kernel: INFO: task flush-253:0:263 blocked for more than 120 seconds.
    Aug 22 15:39:54 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:39:54 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:39:54 servercore kernel: flush-253:0 D 0000000000000000 0 263 2 0x00000000
    Aug 22 15:39:54 servercore kernel: Call Trace:
    Aug 22 15:39:56 servercore kernel: INFO: task rs:main Q:Reg:1035 blocked for more than 120 seconds.
    Aug 22 15:39:56 servercore kernel: Not tainted 2.6.32-431.11.2.el6.x86_64 #1
    Aug 22 15:39:56 servercore kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Aug 22 15:39:56 servercore kernel: rs:main Q:Reg D 0000000000000000 0 1035 1 0x00000080
    Aug 22 15:39:56 servercore kernel: Call Trace:
    Aug 22 15:42:11 servercore kernel: Clocksource tsc unstable (delta = -8589964877 ns)
    As we can see all the errors contained “echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.” and “blocked for more than 120 seconds” somewhere.
    Explanation
    By default Linux uses up to 40% of the available memory for file system caching. After this mark has been reached the file system flushes all outstanding data to disk causing all following IOs going synchronous. For flushing out this data to disk this there is a time limit of 120 seconds by default. In the case here the IO subsystem is not fast enough to flush the data within 120 seconds. As IO subsystem responds slowly and more requests are served, System Memory gets filled up resulting in the above error.
    Solution
    Increasing the vm.dirty_background_ratio by 5% and vm.dirty_ratio to 10, would give some buffer for the server.
    Change vm.dirty_ratio and vm.dirty_backgroud_ratio
    [root@localhost mercury]# sysctl -w vm.dirty_ratio=10
    vm.dirty_ratio=10
    [root@localhost mercury]# sysctl -w vm.dirty_background_ratio=5
    vm.dirty_background_ratio=5
    Commit Change by running the below command:
    [root@localhost mercury]# sysctl -p
    The above command should fix the kernel panic errors. However, a reboot would reset these changes.
    So, we could monitor the server for a week or so and after confirming there are no more errors in the messages log, we could make this change permanent by doing the following:
    [root@localhost mercury]# vi /etc/sysctl.conf
    ADD 2 lines at the bottom
    vm.dirty_background_ratio = 5
    vm.dirty_ratio = 10
    Save and exit by hitting the escape key + wq!
    [root@localhost mercury]# reboot
    More Explanation:
    vm.dirty_background_ratio is the percentage of system memory that can be filled with “dirty” pages — memory pages that still need to be written to disk — before the pdflush/flush/kdmflush background processes kick in to write it to disk. My example is 5%, so if my virtual server has 32 GB of memory that’s 1.6 GB of data that can be sitting in RAM before something is done.
    vm.dirty_ratio is the absolute maximum amount of system memory that can be filled with dirty pages before everything must get committed to disk. When the system gets to this point all new I/O blocks until dirty pages have been written to disk. This is often the source of long I/O pauses, but is a safeguard against too much data being cached unsafely in memory.

    Hi,
    Please apply the following correction manually.
    1. Go to transaction ST03N
    2. Change user from 'Administrator' to 'Expert Mode'.
    3. Go to Collector and performance analysis -> Performance database
       -> Monitoring database -> Contents
    4. Search where further info contains the string "h/2"
    like the following monikeys:
      - 'days  h/2'
      - 'weeks  h/2'
      - 'months  h/2'  
    5. Double click on each, so that they become red and show ** delete
    6. Finally SAVE
    This will remove the corresponding database related history up to the deletion date. It will accumulate anew afterwards.
    How can I identify the monikey that has to be deleted?
    When you load the text of the dump and then jump off to the break point of the debugger you may find the error break point look like:
    "IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY".
    To find the right monikey entry causing the dump you can search for the word 'MONIKEY' within the text of the dump. This can be 'days  h/3' or
    'tabgrowth  2'...
    You can then go back to the procedure above and search where further info contains the monikey that you found in the text of the dump.
    997535     DB02: Problems with History Data.
    Award points if helpful.
    Thanks,
    Tanuj

  • Linux: usb crashes player

    I'm running Scientific Linux 6 on a Toshiba laptop. Scientific Linux 6 is a clone virtually identical to RHEL 6 (Red Hat Enterprise Linux) except for Red Hat logos etc as required by Red Had redistribution policies.
    Playback works fine--until I move my USB mouse. Then the audio stops within 5 - 20 seconds every time; video continues.
    The version of the player was downloaded a few days ago directly from the Adobe respository. This has been tested on several websites; on Windows (installed on the same computer) there is no problem. Likewise there is no problem on Linux as long as I don't move the USB mouse; the trackpad causes no problem, nor is there a problem with other audio applications.
    Thanks for any insights.

    Check out this video from James Ward, it might help you out:
    http://www.jamesward.com/2010/09/15/install-flash-player-on-64-bit-linux/

  • "Using a CIN to Create an Array of Strings in LabVIEW" example crashes LV on Linux

    Tried to utilize this NI example: "Using a CIN to Create an Array of Strings in LabVIEW" (http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B4B282BE7EF907C8E034080020E74861&p_node=&p_source=External)
    Compiles OK with the makefile made by the LV's lvmkmf utility. Nevertheless when I try to run the VI (with the code loaded into the CIN, of course), LabVIEW 7.1.1 on a SUSE 9.3 Linux machine crashes:
    LabVIEW caught fatal signal
    7.1.1 - Received SIGSEGV
    Reason: address not mapped to object
    Attempt to reference address: 0x0
    Segmentation fault
    Any ideas? Did anybody try this on a Windows machine?

    H View Labs wrote:
    Tried to utilize this NI example: "Using a CIN to Create an Array of Strings in LabVIEW" (http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B4B282BE7EF907C8E034080020E74861&p_node=&p_source=External)
    Compiles OK with the makefile made by the LV's lvmkmf utility. Nevertheless when I try to run the VI (with the code loaded into the CIN, of course), LabVIEW 7.1.1 on a SUSE 9.3 Linux machine crashes:
    LabVIEW caught fatal signal
    7.1.1 - Received SIGSEGV
    Reason: address not mapped to object
    Attempt to reference address: 0x0
    Segmentation fault
    Any ideas? Did anybody try this on a Windows machine?
    This code is badly broken. In addition to resizing the actual handle to hold the number of string handles you also would need to create the string handles itself before attempting to write into them. NumericArrayResize is the fucntion to use as it will either resize an existing handle (if any) or create a new one if the value is uninitialized (NULL).
    /* resize strarr to hold handles to NUMSTRINGS strings */
    err = SetCINArraySize((UHandle)strarr, 0, NUMSTRINGS);
    if (err)
    goto out;
    /* perform this loop once for each element */
    /* of array of strings being created */
    for (i = 0; i < NUMSTRINGS;) {
    LStrHandle handle = (*strarr)->arg1[i];
    /* determine length of string that will be element of strarr */
    strsize = StrLen(str[i]);
    err = NumericArrayResize(uB, 1, &handle, strsize);
    if (err)
    goto out;
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    /* moves strsize bytes from the address pointed to */
    /* by str[i] to the address pointed to by the data pointer in the handle */
    MoveBlock(str[i], LStrBuf(*handle), strsize);
    /* manually set size of string pointed to by *strarr */
    (*((*strarr)->arg1[i]))->cnt = strsize;
    /* manually set dimSize of strarr */
    (*strarr)->dimSize = ++i;
    return noErr;
    out:
    return err;
    Rolf KalbermatterMessage Edited by rolfk on 06-30-2005 03:15 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Linux crash and reinstall???

    Hello to everyone. I have a question. Is it true that if Linux (anykind) crashes then you have to reinstall it again to get it to work??
    jaxx

    d2_racing wrote:You can always CHROOT and repair
    You'd have a bit of a problem with that if you'd done this though:
    # rm -rf /bin
    (don't try this at home kids... (only at work )
    pacman.static to the rescue!

  • WANTED: workaround for error in fontmgr.cpp line 1023 when loading LV 6 VIs

    Hi,
    when loading existing VIs from LV6 with our new LV7Express the program (running under Linux 8) crashes with an error in fontmgr.cpp line 1023.
    Is there a workaround?
    Thanks.

    Hi dieter,
    there is normally no workaround for internal LV errors. Report the error through the support pages to NI. Together with your VIs they will be able to fix the problem.
    Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Webkitgtk browsers crashes

    Last time I give a try for lighter web browsers based on webkit. My choice is webkitgtk based as I use mainly GTK apps (LXDE + SpaceFM + many more). I tried epiphany (hard gnome dependent, but I was wondered with speed and light comapring to Chromium and Firefox and even to Opera) and second try - dwb-gtk3-git (another "must have" app - a little work to set up shortcuts and it is really amazing). But it seems to be serious problem - a lot of websites just crashes in these 2 browsers (all google: google.com, maps.google.com, gmail.com; hotmail.com and many other). But some are displayed super fast and with no rendering problem: archlinux.org, duckduckgo.com etc.
    I can't find the reason of crashes. dwb just escapes:
    [mm@domowy_46 ~]$dwb
    DWB EXTENSION: extension adblock_subscriptions: Successfully loaded and initialized.
    DWB EXTENSION: extension speeddial: Successfully loaded and initialized.
    DWB EXTENSION: extension formfiller: Successfully loaded and initialized.
    [mm@domowy_46 ~]$
    and epiphany gives "black screen of death":
    Oops!
    Something went wrong while displaying this page. Please reload or visit a different page to continue.
    [mm@domowy_46 ~]$epiphany
    (epiphany:11757): Gtk-WARNING **: Theme directory preferences/48 of theme Numix-Grey has no size field
    ** Message: Remote error from secret service: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.secrets was not provided by any .service files
    ** (WebKitWebProcess:11767): WARNING **: Error caching form data: The name org.freedesktop.secrets was not provided by any .service files
    ** Message: Remote error from secret service: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.secrets was not provided by any .service files
    ** (WebKitWebProcess:12032): WARNING **: Error caching form data: The name org.freedesktop.secrets was not provided by any .service files
    I think warnings about secret service is not very important - the same cras vas with gnome-keyring installed.
    I made a strace for both programs - here end of dwb:
    mmap2(NULL, 16384, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xaa593000
    madvise(0xaa593000, 16384, MADV_DONTNEED) = 0
    mprotect(0xaa593000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa593000, 4096, MADV_WILLNEED) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 733099896}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 733206296}) = 0
    mprotect(0xaa594000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa594000, 4096, MADV_WILLNEED) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 734386542}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 734495485}) = 0
    mprotect(0xaa595000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa595000, 4096, MADV_WILLNEED) = 0
    mprotect(0xaa596000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa596000, 4096, MADV_WILLNEED) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 735806601}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 735917784}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 736503535}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 736612559}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 737424365}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 737551471}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 737977604}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 738075187}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 738428211}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 738529328}) = 0
    mmap2(NULL, 16384, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xaa58f000
    madvise(0xaa58f000, 16384, MADV_DONTNEED) = 0
    mprotect(0xaa58f000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa58f000, 4096, MADV_WILLNEED) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 739779629}) = 0
    clock_gettime(CLOCK_MONOTONIC, {5275, 739891292}) = 0
    mprotect(0xaa590000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    madvise(0xaa590000, 4096, MADV_WILLNEED) = 0
    --- SIGILL {si_signo=SIGILL, si_code=ILL_ILLOPN, si_addr=0xaa596e55} ---
    futex(0xb17b9bf8, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xb17b9bf4, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
    futex(0xb17b9bdc, FUTEX_WAKE_PRIVATE, 1) = 1
    munmap(0xab20c000, 8392704) = 0
    exit_group(0) = ?
    +++ exited with 0 +++
    in epiphany strace log can't find any suspicious. I usually use linux-pf but tested also on stock arch linux and crashes are the same. I use only "stable" builds (not testing) so it happens on:
    epiphany 3.8.2-1
    dwb-gtk3-git 2013.08.04.g76a6780-1
    webkitgtk 2.0.4-1
    Any idea what can be the reason and how to solve it?

    sekret wrote:I've been running dwb from the repos for quite some time now and it never crashed on me. Is it because by default I disallow everything (javascript, plugins, third party content with requestpolicy)?
    This is the same in my case - seems that webkitgtk (gtk3) engine crashes with some javascripts. But still can't find any more precise.
    sekret wrote:I've been on wikipedia a lot recently and it works just fine.
    And same here - wikipedia: no problems.
    @skottish - thank you for great work. Tried to compile latest stable and unstable webkitgtk but they always fails. Hope it is possible to improve webkitgtk soon as it seems to be really nice alternative to still getting heavier chromium, firefox and unknown future of opera.

  • Unable to start EBS DB after the Server Crash. Error in installing the Required RPM.

    Hi , Hussein ( As most of the Time It is Only you here who comes to the rescue or give Usefull inputs. I am sorry if i mistaken, no Pan intended for Other Experts)
    I 've also posted this issue here but got no response. https://forums.oracle.com/thread/2590497 
    Badly require your inputs and suggestions on the Following Issue. , Really Appreciate the suggestions.
    I need to Install the sabayon-apply rpm which could fix the issue after the Server Crash but unable to install it.
       Please see the Brief of the Issue.
    I got stuck up in installing the rpm after the server(Red Hat Enterprise Linux Server release 6.0 (Santiago) x86_64 GNU/Linux) got
    crashed Eventhough I am able to start it in Xwindows but not able to run or start EBS database along with many other programmes. Also The
    VirtualBox machine installed on it 've No issue, they work fine  But the host OS is not fine. as there are lots of
    errors in .xsession-errors. which i 've pasted below.  And Unable to Install the sabayon-apply rpm that could have fix the Issue.
    I would highly Appreciate if anyone could drop few hints and suggestions on this Issue as this is really Urgently Important for me.
    Please see the following Brief of the Issue.
      after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      While installing the rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  as it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
        After That I could Not Install any rpm with yum or rpm command as getting the Same Errors. 
    while trying to install individual rpm am getting the followig Errors
    [root@ebs Packages]# rpm -ivh libX11*
    error: libX11-1.3-2.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
    error: libX11-1.3-2.el6.i686.rpm cannot be installed
    [root@ebs Packages]# rpm --checksig gtk2*
    gtk2-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-docs-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-immodule-xim-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    For that I tried to import the RPM GPG Key But still faced the same errors
    [root@ebs yum.repos.d]# wget http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6 -O /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Key fingerprint = 4214 4123 FECF
    C55B 9086  313D 72F9 7B74 EC55 1F03
    --2013-10-08 00:04:56--  http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    Resolving public-yum.oracle.com... 202.159.216.177, 202.159.216.171
    Connecting to public-yum.oracle.com|202.159.216.177|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 1011 [text/plain]
    Saving to: “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    FINISHED --2013-10-08 00:05:06--
    Downloaded: 6 files, 55K in 2.0s (27.7 KB/s)
    100%[===========================================================================================================================================================>]
    1,011 --.-K/s   in 0s
    2013-10-08 00:04:56 (155 MB/s) - “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    saved [1011/1011]
       Than i run this command
    [root@ebs yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle  ----it Returns with no output
    [root@ebs yum.repos.d]#
    [root@ebs log]# rpm -q gpg-pubkey-ec551f03-4c2d256a
    gpg-pubkey-ec551f03-4c2d256a
    But still I can't install the rpms, got the same Errors. please see the following
    [root@ebs yum.repos.d]# yum install firefox*
    Loaded plugins: refresh-packagekit, rhnplugin
    This system is not registered with RHN.
    RHN support will be disabled.
    Setting up Install Process
    Downloading Packages:
    (1/2): firefox-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  25 MB     03:42
    (2/2): xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  14 MB     02:03
    Total
    117 kB/s |  39 MB     05:46
    error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD
    Problem opening package xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
    [root@ebs log]# rpm -qf `which gpg`
    error: rpmdbNextIterator: skipping h#     455 Header V3 RSA/SHA256
    Signature, key ID fd431d51: BAD
    [root@ebs log]# gpg --list-keys
    /root/.gnupg/pubring.gpg
    pub 1024D/11F63C51 2002-02-28
    uid Jamie Cameron <[email protected]>
    sub 1024g/1B24BE83 2002-02-28
    pub 2048D/671DF296 2013-10-08
    uid oracle
    sub 2048g/9FE459CE 2013-10-08
    pub 1024R/F3A5AC78 2013-10-08
    uid oracle (no comment) <[email protected]>
    sub 1024R/6DC65985 2013-10-08
    pub 1024R/78F6C944 2013-10-08
    uid root user (Example GPG Key Signature For RPM
    Packages) <[email protected]>
    sub 1024R/77C97AFF 2013-10-08
    [root@ebs log]# rpm -qi 'gpg-pubkey-*'
    Name : gpg-pubkey Relocations: (not relocatable)
    Version : ec551f03 Vendor: (none)
    Release : 4c2d256a Build Date: Wed 09 Oct
    2013 01:09:10 AM IST
    Install Date: Wed 09 Oct 2013 01:09:10 AM IST      Build Host: localhost
    Group : Public Keys Source RPM: (none)
    Size : 0 License: pubkey
    Signature : (none)
    Summary : gpg(Oracle OSS group (Open Source Software group)
    <[email protected]>)
    Description :
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: rpm-4.8.0 (NSS-3)
    mQENBEwtJWoBCACpiY2rGA6T0ceBi92X88/QclytVBjtDRohOVzs3pmIPh3ULqsW
    G323nmyKbKQBBSjh9OnuO9Y09VG8mzr/w9YV0Ix4cI9/HDTERZ2+TR5u+VNn5J5h
    yvwQSN/FEK6oH2+mz7O0yUNleN7UltR4MOEkHIoAhIvv+1AQQKN3OM8oalz+3gv/
    zz9rAoQczQzT7QWOtBrsRMZgBrKXY/TpJrpVSO3Hx8CnbhKGtLxCCrxZ5v7hh1ht
    3CRAr2+h5bDA9KP6vBZWKEs7NgcvtZFDY6EJc7AoApr3phX9hHE2+snTxe82DkFT
    uA69C8wLyjPCoSy+tcaCqJKOZelNy9RN/WKRABEBAAG0RE9yYWNsZSBPU1MgZ3Jv
    dXAgKE9wZW4gU291cmNlIFNvZnR3YXJlIGdyb3VwKSA8YnVpbGRAb3NzLm9yYWNs
    ZS5jb20+iQE8BBMBAgAmBQJMLSVqAhsDBQkWjmoABgsJCAcDAgQVAggDBBYCAwEC
    HgECF4AACgkQcvl7dOxVHwMiNAf/cD8R74fCBeQsAYid5slIz7CG8xEOBUTDNEJT
    p/owtzr7m7Ydp1txNBOkVeVkUP8czX5EldcmoxA4kCCyHhnxmpJnOt52Fy5ZRnYh
    Ll5gYdpJpXGVScB7fnlh3rJAaesSTacVFC5MKIYPZBiTo9soSXMLNcG8WqHPasdd
    AblC4t5BTDNYlX1RiPeP6m5egHnnxyAXsis8fqIZY0RC9hERxWQ6hdDAX0tJXY8F
    88HDUozvo8jqTlg/5GZcfqcbUjjMUJQ5cBtH3adCthMycdPpPXWJQBuzMIdFJ03u
    YuQ3XrKxBkOLips+OZuWNVZzrPOHsenb49aX4yQsLVc2E2fhKQ==
    =M8XY
    -----END PGP PUBLIC KEY BLOCK-----
    I 've tried to remove the existing keys But Not able to remove them as well.
    Is this the right way of removing the keys ?
    rpm -e --allmatches 'gpg-pubkey-ec551f03-*'  the ec551f03 is the
    version of rpm -qi 'gpg-pubkey-*' query...  Please correct
    Could you tell what I am missing here that's causing the Issue.
    Following are the Errors that is observed in .xsession-errors log file
    ===== BEGIN RING BUFFER (/usr/sbin/sabayon-apply) =====
    MainThread 2013/10/08 18:34:23.3001 (sabayon-apply): No profile for
    user 'root' found
    MainThread 2013/10/08 18:34:23.3005 (sabayon-apply): Fatal exception!
    Exiting abnormally.
    MainThread 2013/10/08 18:34:23.3009 (sabayon-apply): Traceback (most
    recent call last):
    File "/usr/sbin/sabayon-apply", line 149, in <module>
    sys.exit (util.EXIT_CODE_NO_USER_PROFILE)
    SystemExit: 3
    ===== END RING BUFFER (/usr/sbin/sabayon-apply) =====
    This configuration for the debug log can be re-created
    by putting the following in ~//etc/sabayon/sabayon-debug-log.conf
    (use ';' to separate domain names):
    [debug log]
    max lines = 1000
    gnome-session[3707]: EggSMClient-WARNING: Desktop file
    '/etc/xdg/autostart/esc.desktop' has malformed Icon key
    'esc.png'(should not include extension)
    GNOME_KEYRING_SOCKET=/tmp/keyring-x5SKbN/socket
    SSH_AUTH_SOCK=/tmp/keyring-x5SKbN/socket.ssh
    Failed to play sound: Not available
    (polkit-gnome-authentication-agent-1:3917): GLib-GObject-WARNING **:
    cannot register existing type `_PolkitError'
    (polkit-gnome-authentication-agent-1:3917): GLib-CRITICAL **:
    g_once_init_leave: assertion `initialization_value != 0' failed
    W: main.c: This program is not intended to be run as root (unless
    --system is specified).
    ** Message: applet now removed from the notification area
    ** (gnome-user-share:3948): WARNING **: gnome-user-share cannot be
    started as root for security reasons.
    08/10/2013 06:34:26 PM Autoprobing TCP port in (all) network interface
    08/10/2013 06:34:26 PM Listening IPv{4,6}://*:5900
    08/10/2013 06:34:26 PM Autoprobing selected port 5900
    08/10/2013 06:34:26 PM Advertising authentication type: 'No Authentication' (1)
    08/10/2013 06:34:26 PM Advertising security type: 'No Authentication' (1)
    Initializing nautilus-gdu extension
    Initializing nautilus-open-terminal extension
    ** Message: applet now embedded in the notification area
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kbuildsycoca4 running...
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e00019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    kio_http_cache_cleaner: Already running!
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x5200004
    specified for 0x5200019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e08cb7 (timesofind).
    libpng warning: Extra compressed data in IDAT
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e0a6e3 (Server Aut).
    Highly appreciate the response.
    Thanks And Regards
    MZ

    The Packaged are already there on the server as the RHEL software DVD is copied on the server.
    Yes it was working before the crash, And Even after the Crash i.e
    after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      and was in the process of installing the sabayon rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  from RHEL software Packages directory.   
    and it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
       After that I could Not install any rpm from rpm or yum command.
       I 've  Downloaded the new sabyon*  and Other rpms from the net and tried to install them with rpm or yum command but
        got the same Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD 
       with yum am getting this error
       error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD.
      I 've Tried searching on google as well for at least 10 hours but did not get any help from it so far.
      The Reinstallation of OS is not AN Option for me rightnow.
       Could you tell something which i could try & may be that works.
    Thanks
    MZ

  • Firefox does not start in Linux unless some extension was changed (i.e. activated/deactivated)

    == Issue
    ==
    Firefox is crashing or closing unexpectedly
    == Description
    ==
    Problem: When I start FF in Linux, it crashes after the cursor is jumping for half a minute. Nothing is displayed. When I start FF from the command line, I get the prompt back after one second without any message. In safe-mode and with all extensions off it always starts.
    However, when I change something in the extensions' settings, it may start: If I start in safemode, deactivate all extensions, and restart - here it goes, with all extensions off. If I activate all the extensions again and restart - here it goes again, with all extensions on. If I delete one or more of the extensions' folders in the extensions-directory of the profile (i.e. sth changes about the extensions!), it may start again, too, but not in every case.
    What could be the cause of this issue and how can I resolve it?
    I use FF 3.6.8 in openSUSE 11.3. The profile-directory I use with FF in Linux is also used by my Windows-FF. As for extensions, I use Greasemonkey, Firebug and Web Developers Toolbar
    == Troubleshooting information
    ==
    Allgemeine Informationen
    Name
    Firefox
    Version
    3.6.8
    Profil-Verzeichnis
    Beinhaltenden Ordner anzeigen
    Installierte Plugins
    about:plugins
    Build-Konfiguration
    about:buildconfig
    Erweiterungen
    Name
    Version
    Aktiviert
    ID
    Web Developer
    1.1.8
    true
    Greasemonkey
    0.8.20100408.6
    true
    Firebug
    1.5.4
    true
    [email protected]
    openSUSE Firefox Erweiterungen
    1.0.1
    false
    [email protected]
    Modifizierte Einstellungen
    Name
    Wert
    accessibility.typeaheadfind.flashBar
    0
    browser.history_expire_days.mirror
    180
    browser.places.importBookmarksHTML
    false
    browser.places.importDefaults
    false
    browser.places.leftPaneFolderId
    -1
    browser.places.migratePostDataAnnotations
    false
    browser.places.smartBookmarksVersion
    2
    browser.places.updateRecentTagsUri
    false
    browser.startup.homepage
    about:blank
    browser.startup.homepage_override.mstone
    rv:1.9.2.8
    browser.tabs.warnOnClose
    false
    dom.max_script_run_time
    1800
    extensions.lastAppVersion
    3.6.8
    general.useragent.extra.microsoftdotnet
    (.NET CLR 3.5.30729)
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1277711431
    print.print_bgcolor
    false
    print.print_bgimages
    false
    print.print_colorspace
    default
    print.print_downloadfonts
    false
    print.print_evenpages
    true
    print.print_in_color
    true
    print.print_margin_bottom
    0.500000012107193
    print.print_margin_left
    0.500000012107193
    print.print_margin_right
    0.500000012107193
    print.print_margin_top
    0.500000012107193
    print.print_oddpages
    true
    print.print_orientation
    0
    print.print_pagedelay
    500
    print.print_paper_data
    0
    print.print_paper_height
    279,40
    print.print_paper_name
    na_letter
    print.print_paper_size_type
    1
    print.print_paper_size_unit
    1
    print.print_paper_width
    215,90
    print.print_plex_name
    default
    print.print_printer
    In Datei drucken
    print.print_resolution_name
    default
    print.print_scaling
    1,00
    print.print_shrink_to_fit
    true
    print.print_to_file
    false
    print.print_unwriteable_margin_bottom
    56
    print.print_unwriteable_margin_left
    25
    print.print_unwriteable_margin_right
    25
    print.print_unwriteable_margin_top
    25
    print.printer_Brother_HL-730+.print_bgcolor
    false
    print.printer_Brother_HL-730+.print_bgimages
    false
    print.printer_Brother_HL-730+.print_command
    print.printer_Brother_HL-730+.print_downloadfonts
    false
    print.printer_Brother_HL-730+.print_edge_bottom
    0
    print.printer_Brother_HL-730+.print_edge_left
    0
    print.printer_Brother_HL-730+.print_edge_right
    0
    print.printer_Brother_HL-730+.print_edge_top
    0
    print.printer_Brother_HL-730+.print_evenpages
    true
    print.printer_Brother_HL-730+.print_footercenter
    print.printer_Brother_HL-730+.print_footerleft
    &PT
    print.printer_Brother_HL-730+.print_footerright
    &D
    print.printer_Brother_HL-730+.print_headercenter
    print.printer_Brother_HL-730+.print_headerleft
    &T
    print.printer_Brother_HL-730+.print_headerright
    &U
    print.printer_Brother_HL-730+.print_in_color
    true
    print.printer_Brother_HL-730+.print_margin_bottom
    0.5
    print.printer_Brother_HL-730+.print_margin_left
    0.5
    print.printer_Brother_HL-730+.print_margin_right
    0.5
    print.printer_Brother_HL-730+.print_margin_top
    0.5
    print.printer_Brother_HL-730+.print_oddpages
    true
    print.printer_Brother_HL-730+.print_orientation
    0
    print.printer_Brother_HL-730+.print_pagedelay
    500
    print.printer_Brother_HL-730+.print_paper_data
    9
    print.printer_Brother_HL-730+.print_paper_height
    11,00
    print.printer_Brother_HL-730+.print_paper_size
    6357106
    print.printer_Brother_HL-730+.print_paper_size_type
    0
    print.printer_Brother_HL-730+.print_paper_size_unit
    1
    print.printer_Brother_HL-730+.print_paper_width
    8,50
    print.printer_Brother_HL-730+.print_reversed
    false
    print.printer_Brother_HL-730+.print_scaling
    1,00
    print.printer_Brother_HL-730+.print_shrink_to_fit
    true
    print.printer_Brother_HL-730+.print_to_file
    false
    print.printer_Brother_HL-730+.print_unwriteable_margin_bottom
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_left
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_right
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_top
    0
    print.printer_FreePDF.print_bgcolor
    false
    print.printer_FreePDF.print_bgimages
    false
    print.printer_FreePDF.print_colorspace
    default
    print.printer_FreePDF.print_command
    print.printer_FreePDF.print_downloadfonts
    false
    print.printer_FreePDF.print_edge_bottom
    0
    print.printer_FreePDF.print_edge_left
    0
    print.printer_FreePDF.print_edge_right
    0
    print.printer_FreePDF.print_edge_top
    0
    print.printer_FreePDF.print_evenpages
    true
    print.printer_FreePDF.print_footercenter
    print.printer_FreePDF.print_footerleft
    &PT
    print.printer_FreePDF.print_footerright
    &D
    print.printer_FreePDF.print_headercenter
    print.printer_FreePDF.print_headerleft
    &T
    print.printer_FreePDF.print_headerright
    &U
    print.printer_FreePDF.print_in_color
    true
    print.printer_FreePDF.print_margin_bottom
    0.5
    print.printer_FreePDF.print_margin_left
    0.5
    print.printer_FreePDF.print_margin_right
    0.5
    print.printer_FreePDF.print_margin_top
    0.5
    print.printer_FreePDF.print_oddpages
    true
    print.printer_FreePDF.print_orientation
    0
    print.printer_FreePDF.print_pagedelay
    500
    print.printer_FreePDF.print_paper_data
    9
    print.printer_FreePDF.print_paper_height
    297,00
    print.printer_FreePDF.print_paper_name
    na_letter
    print.printer_FreePDF.print_paper_size_type
    0
    print.printer_FreePDF.print_paper_size_unit
    1
    print.printer_FreePDF.print_paper_width
    210,00
    print.printer_FreePDF.print_plex_name
    default
    print.printer_FreePDF.print_resolution_name
    default
    print.printer_FreePDF.print_reversed
    false
    print.printer_FreePDF.print_scaling
    1,00
    print.printer_FreePDF.print_shrink_to_fit
    true
    print.printer_FreePDF.print_to_file
    false
    print.printer_FreePDF.print_unwriteable_margin_bottom
    56
    print.printer_FreePDF.print_unwriteable_margin_left
    25
    print.printer_FreePDF.print_unwriteable_margin_right
    25
    print.printer_FreePDF.print_unwriteable_margin_top
    25
    print.printer_FreePDF_XP.print_bgcolor
    false
    print.printer_FreePDF_XP.print_bgimages
    false
    print.printer_FreePDF_XP.print_command
    print.printer_FreePDF_XP.print_downloadfonts
    false
    print.printer_FreePDF_XP.print_edge_bottom
    0
    print.printer_FreePDF_XP.print_edge_left
    0
    print.printer_FreePDF_XP.print_edge_right
    0
    print.printer_FreePDF_XP.print_edge_top
    0
    print.printer_FreePDF_XP.print_evenpages
    true
    print.printer_FreePDF_XP.print_footercenter
    print.printer_FreePDF_XP.print_footerleft
    &PT
    print.printer_FreePDF_XP.print_footerright
    &D
    print.printer_FreePDF_XP.print_headercenter
    print.printer_FreePDF_XP.print_headerleft
    &T
    print.printer_FreePDF_XP.print_headerright
    &U
    print.printer_FreePDF_XP.print_in_color
    true
    print.printer_FreePDF_XP.print_margin_bottom
    0.5
    print.printer_FreePDF_XP.print_margin_left
    0.5
    print.printer_FreePDF_XP.print_margin_right
    0.5
    print.printer_FreePDF_XP.print_margin_top
    0.5
    print.printer_FreePDF_XP.print_oddpages
    true
    print.printer_FreePDF_XP.print_orientation
    0
    print.printer_FreePDF_XP.print_pagedelay
    500
    print.printer_FreePDF_XP.print_paper_data
    9
    print.printer_FreePDF_XP.print_paper_height
    11,00
    print.printer_FreePDF_XP.print_paper_size_type
    0
    print.printer_FreePDF_XP.print_paper_size_unit
    1
    print.printer_FreePDF_XP.print_paper_width
    8,50
    print.printer_FreePDF_XP.print_reversed
    false
    print.printer_FreePDF_XP.print_scaling
    1,00
    print.printer_FreePDF_XP.print_shrink_to_fit
    true
    print.printer_FreePDF_XP.print_to_file
    true
    print.printer_FreePDF_XP.print_unwriteable_margin_bottom
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_left
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_right
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_top
    0
    print.printer_In_Datei_drucken.print_bgcolor
    false
    print.printer_In_Datei_drucken.print_bgimages
    false
    print.printer_In_Datei_drucken.print_colorspace
    default
    print.printer_In_Datei_drucken.print_command
    lpr $
    print.printer_In_Datei_drucken.print_downloadfonts
    false
    print.printer_In_Datei_drucken.print_edge_bottom
    14
    print.printer_In_Datei_drucken.print_edge_left
    16
    print.printer_In_Datei_drucken.print_edge_right
    16
    print.printer_In_Datei_drucken.print_edge_top
    14
    print.printer_In_Datei_drucken.print_evenpages
    true
    print.printer_In_Datei_drucken.print_footercenter
    print.printer_In_Datei_drucken.print_footerleft
    &PT
    print.printer_In_Datei_drucken.print_footerright
    &D
    print.printer_In_Datei_drucken.print_headercenter
    print.printer_In_Datei_drucken.print_headerleft
    &T
    print.printer_In_Datei_drucken.print_headerright
    &U
    print.printer_In_Datei_drucken.print_in_color
    true
    print.printer_In_Datei_drucken.print_margin_bottom
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_left
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_right
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_top
    0.500000012107193
    print.printer_In_Datei_drucken.print_oddpages
    true
    print.printer_In_Datei_drucken.print_orientation
    0
    print.printer_In_Datei_drucken.print_pagedelay
    500
    print.printer_In_Datei_drucken.print_paper_data
    0
    print.printer_In_Datei_drucken.print_paper_height
    279,40
    print.printer_In_Datei_drucken.print_paper_name
    na_letter
    print.printer_In_Datei_drucken.print_paper_size_type
    1
    print.printer_In_Datei_drucken.print_paper_size_unit
    1
    print.printer_In_Datei_drucken.print_paper_width
    215,90
    print.printer_In_Datei_drucken.print_plex_name
    default
    print.printer_In_Datei_drucken.print_resolution_name
    default
    print.printer_In_Datei_drucken.print_reversed
    false
    print.printer_In_Datei_drucken.print_scaling
    1,00
    print.printer_In_Datei_drucken.print_shrink_to_fit
    true
    print.printer_In_Datei_drucken.print_to_file
    false
    print.printer_In_Datei_drucken.print_unwriteable_margin_bottom
    56
    print.printer_In_Datei_drucken.print_unwriteable_margin_left
    25
    print.printer_In_Datei_drucken.print_unwriteable_margin_right
    25
    print.printer_In_Datei_drucken.print_unwriteable_margin_top
    25
    print.printer_Microsoft_XPS_Document_Writer.print_bgcolor
    false
    print.printer_Microsoft_XPS_Document_Writer.print_bgimages
    false
    print.printer_Microsoft_XPS_Document_Writer.print_colorspace
    default
    print.printer_Microsoft_XPS_Document_Writer.print_command
    print.printer_Microsoft_XPS_Document_Writer.print_downloadfonts
    false
    print.printer_Microsoft_XPS_Document_Writer.print_edge_bottom
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_left
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_right
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_top
    0
    print.printer_Microsoft_XPS_Document_Writer.print_evenpages
    true
    print.printer_Microsoft_XPS_Document_Writer.print_footercenter
    print.printer_Microsoft_XPS_Document_Writer.print_footerleft
    &PT
    print.printer_Microsoft_XPS_Document_Writer.print_footerright
    &D
    print.printer_Microsoft_XPS_Document_Writer.print_headercenter
    print.printer_Microsoft_XPS_Document_Writer.print_headerleft
    &T
    print.printer_Microsoft_XPS_Document_Writer.print_headerright
    &U
    print.printer_Microsoft_XPS_Document_Writer.print_in_color
    true
    print.printer_Microsoft_XPS_Document_Writer.print_margin_bottom
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_left
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_right
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_top
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_oddpages
    true
    print.printer_Microsoft_XPS_Document_Writer.print_orientation
    0
    print.printer_Microsoft_XPS_Document_Writer.print_pagedelay
    500
    print.printer_Microsoft_XPS_Document_Writer.print_paper_data
    0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_height
    297,00
    print.printer_Microsoft_XPS_Document_Writer.print_paper_name
    na_letter
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_type
    1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_unit
    1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_width
    210,00
    print.printer_Microsoft_XPS_Document_Writer.print_plex_name
    default
    print.printer_Microsoft_XPS_Document_Writer.print_resolution_name
    default
    print.printer_Microsoft_XPS_Document_Writer.print_reversed
    false
    print.printer_Microsoft_XPS_Document_Writer.print_scaling
    1,00
    print.printer_Microsoft_XPS_Document_Writer.print_shrink_to_fit
    true
    print.printer_Microsoft_XPS_Document_Writer.print_to_file
    false
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_bottom
    56
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_left
    25
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_right
    25
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_top
    25
    print.printer_OKI_B4300_PS_(MS).print_bgcolor
    false
    print.printer_OKI_B4300_PS_(MS).print_bgimages
    false
    print.printer_OKI_B4300_PS_(MS).print_colorspace
    default
    print.printer_OKI_B4300_PS_(MS).print_command
    print.printer_OKI_B4300_PS_(MS).print_downloadfonts
    false
    print.printer_OKI_B4300_PS_(MS).print_edge_bottom
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_left
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_right
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_top
    0
    print.printer_OKI_B4300_PS_(MS).print_evenpages
    true
    print.printer_OKI_B4300_PS_(MS).print_footercenter
    print.printer_OKI_B4300_PS_(MS).print_footerleft
    &PT
    print.printer_OKI_B4300_PS_(MS).print_footerright
    &D
    print.printer_OKI_B4300_PS_(MS).print_headercenter
    print.printer_OKI_B4300_PS_(MS).print_headerleft
    &T
    print.printer_OKI_B4300_PS_(MS).print_headerright
    &U
    print.printer_OKI_B4300_PS_(MS).print_in_color
    true
    print.printer_OKI_B4300_PS_(MS).print_margin_bottom
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_left
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_right
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_top
    0.5
    print.printer_OKI_B4300_PS_(MS).print_oddpages
    true
    print.printer_OKI_B4300_PS_(MS).print_orientation
    0
    print.printer_OKI_B4300_PS_(MS).print_pagedelay
    500
    print.printer_OKI_B4300_PS_(MS).print_paper_data
    9
    print.printer_OKI_B4300_PS_(MS).print_paper_height
    297,00
    print.printer_OKI_B4300_PS_(MS).print_paper_name
    na_letter
    print.printer_OKI_B4300_PS_(MS).print_paper_size_type
    0
    print.printer_OKI_B4300_PS_(MS).print_paper_size_unit
    1
    print.printer_OKI_B4300_PS_(MS).print_paper_width
    210,00
    print.printer_OKI_B4300_PS_(MS).print_plex_name
    default
    print.printer_OKI_B4300_PS_(MS).print_resolution_name
    default
    print.printer_OKI_B4300_PS_(MS).print_reversed
    false
    print.printer_OKI_B4300_PS_(MS).print_scaling
    1,00
    print.printer_OKI_B4300_PS_(MS).print_shrink_to_fit
    true
    print.printer_OKI_B4300_PS_(MS).print_to_file
    true
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_bottom
    56
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_left
    25
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_right
    25
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_top
    25
    print.printer_hl730series.print_bgcolor
    false
    print.printer_hl730series.print_bgimages
    false
    print.printer_hl730series.print_colorspace
    default
    print.printer_hl730series.print_command
    lpr $
    print.printer_hl730series.print_downloadfonts
    false
    print.printer_hl730series.print_edge_bottom
    14
    print.printer_hl730series.print_edge_left
    16
    print.printer_hl730series.print_edge_right
    16
    print.printer_hl730series.print_edge_top
    14
    print.printer_hl730series.print_evenpages
    true
    print.printer_hl730series.print_footercenter
    print.printer_hl730series.print_footerleft
    &PT
    print.printer_hl730series.print_footerright
    &D
    print.printer_hl730series.print_headercenter
    print.printer_hl730series.print_headerleft
    &T
    print.printer_hl730series.print_headerright
    &U
    print.printer_hl730series.print_in_color
    true
    print.printer_hl730series.print_margin_bottom
    0.500000012107193
    print.printer_hl730series.print_margin_left
    0.500000012107193
    print.printer_hl730series.print_margin_right
    0.500000012107193
    print.printer_hl730series.print_margin_top
    0.500000012107193
    print.printer_hl730series.print_oddpages
    true
    print.printer_hl730series.print_orientation
    0
    print.printer_hl730series.print_pagedelay
    500
    print.printer_hl730series.print_paper_data
    0
    print.printer_hl730series.print_paper_height
    279,40
    print.printer_hl730series.print_paper_name
    na_letter
    print.printer_hl730series.print_paper_size_type
    1
    print.printer_hl730series.print_paper_size_unit
    1
    print.printer_hl730series.print_paper_width
    215,90
    print.printer_hl730series.print_plex_name
    default
    print.printer_hl730series.print_resolution_name
    default
    print.printer_hl730series.print_reversed
    false
    print.printer_hl730series.print_scaling
    1,00
    print.printer_hl730series.print_shrink_to_fit
    true
    print.printer_hl730series.print_to_file
    false
    print.printer_hl730series.print_unwriteable_margin_bottom
    56
    print.printer_hl730series.print_unwriteable_margin_left
    25
    print.printer_hl730series.print_unwriteable_margin_right
    25
    print.printer_hl730series.print_unwriteable_margin_top
    25
    print.tmp.printerfeatures.CUPS/hl730series.can_change_colorspace
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_downloadfonts
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_jobtitle
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_num_copies
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_orientation
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_paper_size
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_plex
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_printincolor
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_resolution
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_spoolercommand
    false
    print.tmp.printerfeatures.CUPS/hl730series.colorspace.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.colorspace.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.has_special_printerfeatures
    true
    print.tmp.printerfeatures.CUPS/hl730series.orientation.0.name
    portrait
    print.tmp.printerfeatures.CUPS/hl730series.orientation.1.name
    landscape
    print.tmp.printerfeatures.CUPS/hl730series.orientation.count
    2
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.height_mm
    210
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.name
    A5
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.width_mm
    148
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.height_mm
    297
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.name
    A4
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.width_mm
    210
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.height_mm
    420
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.name
    A3
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.width_mm
    297
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.height_mm
    279
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.name
    Letter
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.width_mm
    215
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.height_mm
    355
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.name
    Legal
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.width_mm
    215
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.height_mm
    431
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.name
    Tabloid
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.width_mm
    279
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.height_mm
    254
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.name
    Executive
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.width_mm
    190
    print.tmp.printerfeatures.CUPS/hl730series.paper.count
    7
    print.tmp.printerfeatures.CUPS/hl730series.plex.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.plex.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.resolution.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.resolution.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.supports_colorspace_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_jobtitle_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_orientation_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_paper_size_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_plex_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_printincolor_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_resolution_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_spoolercommand_change
    false
    print.tmp.printerfeatures.PostScript/default.can_change_colorspace
    false
    print.tmp.printerfeatures.PostScript/default.can_change_downloadfonts
    false
    print.tmp.printerfeatures.PostScript/default.can_change_jobtitle
    false
    print.tmp.printerfeatures.PostScript/default.can_change_num_copies
    true
    print.tmp.printerfeatures.PostScript/default.can_change_orientation
    true
    print.tmp.printerfeatures.PostScript/default.can_change_paper_size
    true
    print.tmp.printerfeatures.PostScript/default.can_change_plex
    false
    print.tmp.printerfeatures.PostScript/default.can_change_printincolor
    true
    print.tmp.printerfeatures.PostScript/default.can_change_resolution
    false
    print.tmp.printerfeatures.PostScript/default.can_change_spoolercommand
    true
    print.tmp.printerfeatures.PostScript/default.colorspace.0.name
    default
    print.tmp.printerfeatures.PostScript/default.colorspace.count
    1
    print.tmp.printerfeatures.PostScript/default.has_special_printerfeatures
    true
    print.tmp.printerfeatures.PostScript/default.orientation.0.name
    portrait
    print.tmp.printerfeatures.PostScript/default.orientation.1.name
    landscape
    print.tmp.printerfeatures.PostScript/default.orientation.count
    2
    print.tmp.printerfeatures.PostScript/default.paper.0.height_mm
    210
    print.tmp.printerfeatures.PostScript/default.paper.0.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.0.name
    A5
    print.tmp.printerfeatures.PostScript/default.paper.0.width_mm
    148
    print.tmp.printerfeatures.PostScript/default.paper.1.height_mm
    297
    print.tmp.printerfeatures.PostScript/default.paper.1.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.1.name
    A4
    print.tmp.printerfeatures.PostScript/default.paper.1.width_mm
    210
    print.tmp.printerfeatures.PostScript/default.paper.2.height_mm
    420
    print.tmp.printerfeatures.PostScript/default.paper.2.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.2.name
    A3
    print.tmp.printerfeatures.PostScript/default.paper.2.width_mm
    297
    print.tmp.printerfeatures.PostScript/default.paper.3.height_mm
    279
    print.tmp.printerfeatures.PostScript/default.paper.3.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.3.name
    Letter
    print.tmp.printerfeatures.PostScript/default.paper.3.width_mm
    215
    print.tmp.printerfeatures.PostScript/default.paper.4.height_mm
    355
    print.tmp.printerfeatures.PostScript/default.paper.4.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.4.name
    Legal
    print.tmp.printerfeatures.PostScript/default.paper.4.width_mm
    215
    print.tmp.printerfeatures.PostScript/default.paper.5.height_mm
    431
    print.tmp.printerfeatures.PostScript/default.paper.5.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.5.name
    Tabloid
    print.tmp.printerfeatures.PostScript/default.paper.5.width_mm
    279
    print.tmp.printerfeatures.PostScript/default.paper.6.height_mm
    254
    print.tmp.printerfeatures.PostScript/default.paper.6.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.6.name
    Executive
    print.tmp.printerfeatures.PostScript/default.paper.6.width_mm
    190
    print.tmp.printerfeatures.PostScript/default.paper.count
    7
    print.tmp.printerfeatures.PostScript/default.plex.0.name
    default
    print.tmp.printerfeatures.PostScript/default.plex.count
    1
    print.tmp.printerfeatures.PostScript/default.resolution.0.name
    default
    print.tmp.printerfeatures.PostScript/default.resolution.count
    1
    print.tmp.printerfeatures.PostScript/default.supports_colorspace_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_jobtitle_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_orientation_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_paper_size_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_plex_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_printincolor_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_resolution_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_spoolercommand_change
    true
    print.tmp.printerfeatures.hl730series.can_change_colorspace
    false
    print.tmp.printerfeatures.hl730series.can_change_downloadfonts
    false
    print.tmp.printerfeatures.hl730series.can_change_jobtitle
    false
    print.tmp.printerfeatures.hl730series.can_change_num_copies
    true
    print.tmp.printerfeatures.hl730series.can_change_orientation
    true
    print.tmp.printerfeatures.hl730series.can_change_paper_size
    true
    print.tmp.printerfeatures.hl730series.can_change_plex
    false
    print.tmp.printerfeatures.hl730series.can_change_printincolor
    true
    print.tmp.printerfeatures.hl730series.can_change_resolution
    false
    print.tmp.printerfeatures.hl730series.can_change_spoolercommand
    false
    print.tmp.printerfeatures.hl730series.colorspace.0.name
    default
    print.tmp.printerfeatures.hl730series.colorspace.count
    1
    print.tmp.printerfeatures.hl730series.has_special_printerfeatures
    true
    print.tmp.printerfeatures.hl730series.orientation.0.name
    portrait
    print.tmp.printerfeatures.hl730series.orientation.1.name
    landscape
    print.tmp.printerfeatures.hl730series.orientation.count
    2
    print.tmp.printerfeatures.hl730series.paper.0.height_mm
    210
    print.tmp.printerfeatures.hl730series.paper.0.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.0.name
    A5
    print.tmp.printerfeatures.hl730series.paper.0.width_mm
    148
    print.tmp.printerfeatures.hl730series.paper.1.height_mm
    297
    print.tmp.printerfeatures.hl730series.paper.1.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.1.name
    A4
    print.tmp.printerfeatures.hl730series.paper.1.width_mm
    210
    print.tmp.printerfeatures.hl730series.paper.2.height_mm
    420
    print.tmp.printerfeatures.hl730series.paper.2.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.2.name
    A3
    print.tmp.printerfeatures.hl730series.paper.2.width_mm
    297
    print.tmp.printerfeatures.hl730series.paper.3.height_mm
    279
    print.tmp.printerfeatures.hl730series.paper.3.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.3.name
    Letter
    print.tmp.printerfeatures.hl730series.paper.3.width_mm
    215
    print.tmp.printerfeatures.hl730series.paper.4.height_mm
    355
    print.tmp.printerfeatures.hl730series.paper.4.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.4.name
    Legal
    print.tmp.printerfeatures.hl730series.paper.4.width_mm
    215
    print.tmp.printerfeatures.hl730series.paper.5.height_mm
    431
    print.tmp.printerfeatures.hl730series.paper.5.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.5.name
    Tabloid
    print.tmp.printerfeatures.hl730series.paper.5.width_mm
    279
    print.tmp.printerfeatures.hl730series.paper.6.height_mm
    254
    print.tmp.printerfeatures.hl730series.paper.6.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.6.name
    Executive
    print.tmp.printerfeatures.hl730series.paper.6.width_mm
    190
    print.tmp.printerfeatures.hl730series.paper.count
    7
    print.tmp.printerfeatures.hl730series.plex.0.name
    default
    print.tmp.printerfeatures.hl730series.plex.count
    1
    print.tmp.printerfeatures.hl730series.resolution.0.name
    default
    print.tmp.printerfeatures.hl730series.resolution.count
    1
    print.tmp.printerfeatures.hl730series.supports_colorspace_change
    false
    print.tmp.printerfeatures.hl730series.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.hl730series.supports_jobtitle_change
    false
    print.tmp.printerfeatures.hl730series.supports_orientation_change
    true
    print.tmp.printerfeatures.hl730series.supports_paper_size_change
    true
    print.tmp.printerfeatures.hl730series.supports_plex_change
    false
    print.tmp.printerfeatures.hl730series.supports_printincolor_change
    true
    print.tmp.printerfeatures.hl730series.supports_resolution_change
    false
    print.tmp.printerfeatures.hl730series.supports_spoolercommand_change
    false
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == User Agent
    ==
    Opera/9.80 (X11; Linux i686; U; de) Presto/2.6.30 Version/10.60

    Extensions can sometimes be the cause of problems. If the problem does not occur in Safe Mode, then you can disable your extensions one-by-one until you find out which one is causing the problem. See [[Troubleshooting extensions and themes]]

  • Safari 7.0.5 constantly crashing

    Hi, any help appreciated.  I have a MacBook Pro 13-inch mid-2012 model, with 2.9 GHz Intel Core i7, and 8 GB 1600 MHz DDR 3 memory.  Memory storage capacity is 749.3 GB, of which 558.56 GB is available.  I have OS X 10.9.4 and Safari 7.0.5, and all of my software is updated.  Not sure if it's relevant but also have iPhone 5S with iOS 7.1.  (Every time I tried installing 7.1.1, and every time I now try installing 7.1.2, it has failed to do so, telling me --incorrectly -- that I am "no longer connected to the Internet.")
    For about the last three weeks, every time I have been on Safari, most of the time virtually every page I visit crashes or disconnects, prompting me to send a report to Apple.  I must have now sent more than 50 such reports.  I installed Google Chrome and used that, but it soon started doing the same thing.  I have repaired my disk permissions but with no effect.  Any ideas?  Any other information I can provide, such as the content of the reports to Apple, that would help figure out what is wrong?  Thanks!

    For what it may be worth, when the last Safari page "quit unexpectedly," here is the content of what was sent to Apple:
    Process:         com.apple.WebKit.WebContent [3001]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.77.4)
    Build Info:      WebKit2-7537077004000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [2740]
    User ID:         501
    Date/Time:       2014-07-12 12:04:03.536 -0500
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  A7FE858B-B145-8EDD-2227-9868266AAB91
    Sleep/Wake UUID: 7910EEA2-850E-4D8E-ADA0-9AB92B39BECB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebKit2             0x000000010b688caf WKRetain + 4
    1   com.apple.Safari.framework     0x0000000113cb17eb Safari::WK::Array::itemAtIndex(unsigned long) const + 41
    2   com.apple.Safari.framework     0x0000000113cb186b Safari::WK::Array::nsArray() const + 87
    3   com.apple.Safari.framework     0x0000000113f94e7a Safari::nsTypeFromWKType(Safari::WK::Type const&) + 346
    4   com.apple.Safari.framework     0x0000000113dc6aab Safari::WK::Dictionary::nsDictionary() const + 191
    5   com.apple.Safari.framework     0x0000000113ef2c05 Safari::SearchProvider::createWithDictionaryRepresentation(Safari::WK::Dictiona ry const&) + 17
    6   com.apple.Safari.framework     0x0000000113cf7038 Safari::BrowserBundleController::updateSearchProviderList(Safari::WK::Array const&) + 114
    7   com.apple.Safari.framework     0x0000000113cf6a19 Safari::BrowserBundleController::initialize(Safari::WK::Bundle const&, Safari::WK::Type const&) + 747
    8   com.apple.Safari.framework     0x0000000113e5fef8 WKBundleInitialize + 209
    9   com.apple.WebKit2             0x000000010b6b4aa0 WebKit::InjectedBundle::load(WebKit::APIObject*) + 286
    10  com.apple.WebKit2             0x000000010b6b0c27 WebKit::WebProcess::initializeWebProcess(WebKit::WebProcessCreationParameters const&, CoreIPC::MessageDecoder&) + 257
    11  com.apple.WebKit2             0x000000010b6affc3 void CoreIPC::handleMessageVariadic<Messages::WebProcess::InitializeWebProcess, WebKit::WebProcess, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, CoreIPC::MessageDecoder&)>(CoreIPC::MessageDecoder&, WebKit::WebProcess*, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, CoreIPC::MessageDecoder&)) + 95
    12  com.apple.WebKit2             0x000000010b6af60c WebKit::WebProcess::didReceiveWebProcessMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 84
    13  com.apple.WebKit2             0x000000010b6af523 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 175
    14  com.apple.WebKit2             0x000000010b6af3f9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    15  com.apple.WebKit2             0x000000010b6af322 CoreIPC::Connection::dispatchOneMessage() + 106
    16  com.apple.WebCore             0x000000010cadfc9e WebCore::RunLoop::performWork() + 270
    17  com.apple.WebCore             0x000000010cadfb72 WebCore::RunLoop::performWork(void*) + 34
    18  com.apple.CoreFoundation       0x000000010bad95b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    19  com.apple.CoreFoundation       0x000000010bacac62 __CFRunLoopDoSources0 + 242
    20  com.apple.CoreFoundation       0x000000010baca3ef __CFRunLoopRun + 831
    21  com.apple.CoreFoundation       0x000000010bac9e75 CFRunLoopRunSpecific + 309
    22  com.apple.HIToolbox           0x00007fff972d4a0d RunCurrentEventLoopInMode + 226
    23  com.apple.HIToolbox           0x00007fff972d47b7 ReceiveNextEventCommon + 479
    24  com.apple.HIToolbox           0x00007fff972d45bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    25  com.apple.AppKit               0x000000010ed6924e _DPSNextEvent + 1434
    26  com.apple.AppKit               0x000000010ed6889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    27  com.apple.AppKit               0x000000010ed5c99c -[NSApplication run] + 553
    28  com.apple.AppKit               0x000000010ed47783 NSApplicationMain + 940
    29  com.apple.XPCService           0x00007fff90f72c0f _xpc_main + 385
    30  libxpc.dylib                   0x00007fff8e1dcbde xpc_main + 399
    31  com.apple.WebKit.WebContent   0x000000010b672ba0 0x10b672000 + 2976
    32  libdyld.dylib                 0x00007fff9a3935fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib         0x000000010c40ee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9581bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9581efb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x000000010c40f662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff94c7b421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff94c7b136 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib         0x000000010c40ee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9581bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9581efb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x000000010c40ee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9581bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff9581efb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x000000010c40aa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010c409d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x000000010bacaf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x000000010baca539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x000000010bac9e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x000000010ef0905e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff9581a899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff9581a72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff9581efc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0054000113b985b8  rbx: 0x00007fff5458bc40  rcx: 0x000000000000078c  rdx: 0x0000000000000006
      rdi: 0x0054000113b985b8  rsi: 0x0000000000000006  rbp: 0x00007fff5458bc10  rsp: 0x00007fff5458bc10
       r8: 0x000000000000000a   r9: 0x0000000000000005  r10: 0x00007fe1838013d0  r11: 0x000000010bc57778
      r12: 0x00007fe182c3b530  r13: 0x00007fff5458bc40  r14: 0x00007fff5458bc88  r15: 0x0000000000000093
      rip: 0x000000010b688caf  rfl: 0x0000000000010206  cr2: 0x00007fe182c48028
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     13
    Binary Images:
           0x10b672000 -        0x10b672ff4  com.apple.WebKit.WebContent (9537 - 9537.77.4) <B93A6BB6-F13F-3DF9-A728-6384CEC6B516> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x10b677000 -        0x10b677fff  WebProcessShim.dylib (7537.77.4) <5033C8DE-6FDC-3885-A4B6-357095992A43> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x10b683000 -        0x10b874ff3  com.apple.WebKit2 (9537 - 9537.77.4) <5090816E-BD02-350C-B4CE-613A246532F5> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10ba5a000 -        0x10bc3ffff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10bdb5000 -        0x10bf6dffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
           0x10c017000 -        0x10c271ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10c3c1000 -        0x10c3c8ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
           0x10c3d0000 -        0x10c3d7ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
           0x10c3e3000 -        0x10c3ebfff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
           0x10c3f9000 -        0x10c415ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
           0x10c43c000 -        0x10c43dfff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
           0x10c446000 -        0x10c510fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10c586000 -        0x10c591fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
           0x10c59a000 -        0x10c5fefff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10c644000 -        0x10c9bbff6  com.apple.JavaScriptCore (9537 - 9537.77.1) <F588191A-25E6-31AC-A325-B7779DC6D1EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10cab5000 -        0x10d908ffb  com.apple.WebCore (9537 - 9537.77.4) <9C4E816A-0DAC-31B2-85C3-910164F3E741> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x10e276000 -        0x10e2c7ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10e2f2000 -        0x10ec1232b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10ed45000 -        0x10f8bbff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110049000 -        0x1100bcfff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x110102000 -        0x1103d3ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x1104c8000 -        0x1104d4ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x1104dc000 -        0x1105a0ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x110684000 -        0x1106aeff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
           0x113c99000 -        0x11419fffb  com.apple.Safari.framework (9537 - 9537.77.4) <4DA7F240-5451-3C23-9ADA-CFE34FB51FDB> /System/Library/PrivateFrameworks/Safari.framework/Safari
           0x114589000 -        0x1145a6ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x1145b2000 -        0x1146e8ffd  com.apple.WebKit (9537 - 9537.77.4) <A0291E16-4ED9-30E8-B9A2-DB836778EE9E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x1147dd000 -        0x11483cfff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff61cc9000 -     0x7fff61cfc817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8cfb4000 -     0x7fff8d035fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d036000 -     0x7fff8d038ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8d039000 -     0x7fff8d0a8ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8d0a9000 -     0x7fff8d0e2ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8d0f4000 -     0x7fff8d0f6fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8d399000 -     0x7fff8d3a8ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d4d1000 -     0x7fff8d4eaff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8d61b000 -     0x7fff8d61bfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8d7be000 -     0x7fff8d82bfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d85b000 -     0x7fff8d868ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8d86c000 -     0x7fff8d894ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8db29000 -     0x7fff8db2afff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
        0x7fff8dbfd000 -     0x7fff8dd03ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8dd8c000 -     0x7fff8dd8cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8de2d000 -     0x7fff8de48ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8e0e2000 -     0x7fff8e0fdff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8e1c2000 -     0x7fff8e1c8ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8e1c9000 -     0x7fff8e1edfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8e31d000 -     0x7fff8e358fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e359000 -     0x7fff8e38aff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8e38b000 -     0x7fff8e38bfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8e45e000 -     0x7fff8e4a5ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff8e4a6000 -     0x7fff8e52fff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff8ebab000 -     0x7fff8ebbeff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8ebbf000 -     0x7fff8ebc0fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8eeed000 -     0x7fff8eeeeff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8ef1d000 -     0x7fff8ef35ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8ef77000 -     0x7fff8efa6fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8f21a000 -     0x7fff8f309fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8f30a000 -     0x7fff8f336fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f36d000 -     0x7fff8f37fff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f380000 -     0x7fff8f389ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8f394000 -     0x7fff8f39efff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8f39f000 -     0x7fff8f3e1ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8f640000 -     0x7fff8f6ccff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f961000 -     0x7fff8f96ffff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8fcf1000 -     0x7fff8fd16ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8fdc4000 -     0x7fff8fde8ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8fdec000 -     0x7fff8fdedff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
        0x7fff8fdee000 -     0x7fff8ff42ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff90090000 -     0x7fff900bfff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff9021a000 -     0x7fff903c7f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff903c8000 -     0x7fff903f1fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff9040f000 -     0x7fff9044dff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff90936000 -     0x7fff90939fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff90d74000 -     0x7fff90d79fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90d7a000 -     0x7fff90d7bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff90ef9000 -     0x7fff90f70fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff90f71000 -     0x7fff90f77ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90f78000 -     0x7fff90f94fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff90f95000 -     0x7fff90fa2ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff90fa4000 -     0x7fff913d7ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff91405000 -     0x7fff91409ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff91458000 -     0x7fff91461fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff914d6000 -     0x7fff914d8ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff914d9000 -     0x7fff91589ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff915a3000 -     0x7fff915abfff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff91b1a000 -     0x7fff91cd8fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91d37000 -     0x7fff92021fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9202f000 -     0x7fff92031ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff921a7000 -     0x7fff9220dfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff9220e000 -     0x7fff92212ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff92265000 -     0x7fff92276ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff92277000 -     0x7fff922dcffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff925fa000 -     0x7fff92604ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff92606000 -     0x7fff927a2ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff927a3000 -     0x7fff927ccff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff92965000 -     0x7fff92972fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff929f1000 -     0x7fff92a4cffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff92a4d000 -     0x7fff92aa0fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff92afe000 -     0x7fff92afefff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff92aff000 -     0x7fff92be6ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff92bf2000 -     0x7fff92bf2ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff92c00000 -     0x7fff92ed4fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff92f4a000 -     0x7fff92f4dffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff92f4e000 -     0x7fff92f4ffff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff92f57000 -     0x7fff92f58fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff92f98000 -     0x7fff93379ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff93938000 -     0x7fff93aa8ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff93aa9000 -     0x7fff93ad9fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff93ada000 -     0x7fff93adefff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff93b2f000 -     0x7fff93b46ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff93b47000 -     0x7fff93baaffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff93bab000 -     0x7fff93bf9ff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff93bfa000 -     0x7fff93cc5fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff93cc6000 -     0x7fff93cc6ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff93cc7000 -     0x7fff93cc7fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93cc8000 -     0x7fff93cefff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff9452b000 -     0x7fff94537ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff94592000 -     0x7fff94596ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff94597000 -     0x7fff945c5ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff945c6000 -     0x7fff945e1ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff945e2000 -     0x7fff945e5fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff949ce000 -     0x7fff949e0fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff949e1000 -     0x7fff949e6ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff94a0d000 -     0x7fff94a5bfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff94a9d000 -     0x7fff94afbff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff94c78000 -     0x7fff94c92fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff94e79000 -     0x7fff94e84fff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff94ef0000 -     0x7fff94f09ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff94f0a000 -     0x7fff9503aff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff955b8000 -     0x7fff955c3ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff955c4000 -     0x7fff95630fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff95704000 -     0x7fff9570cffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff957c1000 -     0x7fff9580eff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff95819000 -     0x7fff95820ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff95821000 -     0x7fff9582bff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff95ca3000 -     0x7fff95ca4ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff95ca5000 -     0x7fff95ca5fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff95ca9000 -     0x7fff95cb2ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff95f0e000 -     0x7fff95ff2fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff95ff3000 -     0x7fff960b5ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff960b6000 -     0x7fff960c0ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff96246000 -     0x7fff9624bfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff96b7d000 -     0x7fff96b7ffff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff96c1c000 -     0x7fff96c5dfff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96c74000 -     0x7fff96d5efff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff96d93000 -     0x7fff96e84ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff96f37000 -     0x7fff96f66fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff96f9c000 -     0x7fff971e4ff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff971e5000 -     0x7fff971f6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff971f7000 -     0x7fff97201ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff972a6000 -     0x7fff97550ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff97551000 -     0x7fff97552ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff9758d000 -     0x7fff97591ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff981b4000 -     0x7fff981ccff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff981cd000 -     0x7fff981d5ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff981d6000 -     0x7fff98228fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff98273000 -     0x7fff982bafff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff982bb000 -     0x7fff98314fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff98315000 -     0x7fff9833fff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff985d3000 -     0x7fff985d5fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff985d6000 -     0x7fff985f4ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff9860f000 -     0x7fff98647ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff98684000 -     0x7fff98691ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff986d6000 -     0x7fff9875ffff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff9895a000 -     0x7fff98a48fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff998a1000 -     0x7fff998e0fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9a37b000 -     0x7fff9a382fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9a383000 -     0x7fff9a383fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9a384000 -     0x7fff9a387fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9a388000 -     0x7fff9a38ffff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff9a390000 -     0x7fff9a393ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff9a394000 -     0x7fff9a3bbffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff9a44e000 -     0x7fff9a450fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff9a451000 -     0x7fff9a461fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff9a462000 -     0x7fff9a4a7ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff9a50a000 -     0x7fff9a808fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9a9aa000 -     0x7fff9ab18ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff9ab1b000 -     0x7fff9ab73ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff9ab74000 -     0x7fff9ab78fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff9ab83000 -     0x7fff9aba8ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff9ac06000 -     0x7fff9ac96ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 10320
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=207.8M resident=148.0M(71%) swapped_out_or_unallocated=59.8M(29%)
    Writable regions: Total=1.1G written=2804K(0%) resident=4048K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                      140K
    Dispatch continuations               8192K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    Kernel Alloc Once                       4K
    MALLOC                               36.3M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    Memory Tag 251                         28K
    SQLite page cache                     256K
    STACK GUARD                          56.0M
    Stack                                10.1M
    VM_ALLOCATE                          16.3M
    WebKit Malloc                        1232K
    __DATA                               23.3M
    __IMAGE                               528K
    __LINKEDIT                           90.3M
    __TEXT                              117.5M
    __UNICODE                             544K
    mapped file                          25.9M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      386.6M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    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, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

Maybe you are looking for