Data look like coupled

Hi,
I'm trying to collect data from 4 different channels by using USB-6259 BNC and LabView 2009. When I try to collect them through a DAQ assistant, if there is an input from one channel (say channel 0), the data from different channels are also changing. I think that somehow they are coupled each other. I connected my load cell to channel 0, and tri-ax aceelerometer was connected to channel 1-3.
Any ideas or suggestions?
Thanks,
Jeong 
Solved!
Go to Solution.

Jeong,
the issue you describe can have two possible reasons i can think of:
a) Too high sampling frequency. The multiplexer and ADC does not settle within the sample time so you get some kind of crosstalk. This is rather unlikely since the DAQmx driver would create an error if you set the sampling frequency too high.
b) The signal sources have a high impedance. This will create crosstalk because the voltage on one channel cannot be removed by the second channel and therefore influencing the measurement. If this is the reason (i ponder it is), you will have to decouple the signal source and the measurement device by using something like optocoupler....
hope this helps,
Norbert
CEO: What exactly is stopping us from doing this?
Expert: Geometry
Marketing Manager: Just ignore it.

Similar Messages

  • Output data to look like form input data

    Hey guys I'm looking for a specific feature and I'm wondering if a subscription to Forms central would allow me to do this.
    I want to design an online form (that looks nice) for my wedding Cinematography & Photography company. This for would be sent to clients about two weeks before thier wedding reminding them of some things like getting in their balance, (no need for dynamic data merge) this would just be a static"Don't forget" note. but then the form would have things they will fill out like:
    Bride and Grooms name as they want it spelled on thier wedding film....I am thinking of something that almost looks like an i9 for from the IRS. You know it would have the little spots for each letter of the name _ _ _ _ _ etc...
    Permanent mailing adress  etc...
    other various quiestions....
    Then I want a section where they can upload some documents or a couple of still images to us.
    Then the form would have some parts that maybe they don't see (You know sort of like, for staff use only notes).
    The real trick in this is rather than looking at the data in an excel style database what I need to do is recieve an email notification of the form or even a PDF of the form and maybe the picture files attached in email. I don't mind going to the database to download the file attachements if need be but the excel style view is not what I need in the end. The reason I need it to print out like an actual form is I plan that this form will get put on a clip board and will follow thier project around the studio as it gets worked on by a producer, then an editor, then a color specialist, and then a sound engineer etc... All these people might be putting notes on that form as it comes around to them. If it can happen electronicly then cool but I don't mind simply printing the form out once the client fills it out as long as I can create sections for my different staff to write (old school pen and paper) on it.
    If this isn't the right product does anybody have a suggestion?
    Thank you,
    Jason

    Hi,
    FormsCentral can meet most of your requirements:
    FormsCentral uses text fields for users to fill out information, so you won't be able to use the underline to mark input areas.
    Also FormsCentral supports file attachments that you can have in your form for your guest to upload pictures. Here is a tutorial on collect attachments: http://forums.adobe.com/docs/DOC-2656.
    You may use show/hide region feature in your form to hide staff-only areas, please check out help on show/hide regions at http://help.adobe.com/en_US/formscentral/using/WSd789abd336388b1642c7fce012da94afe4f-8000. html#WS0faeceb8c23f5d60-774f03e3131ddc76d7d-8000
    Once guests have filled out the form, you can log into FormsCentrl and download their responses in PDF format. Then you can view their responses in form format and print the form out and have have your staff fill out rest of the form. Please see http://forums.adobe.com/docs/DOC-1383 for how to download responses as PDF file.
    Please try FormsCentral and let us know if you have futher questions.
    Thanks,
    Wenlan

  • How do I sync my old iPhone 5 to a new laptop PC without losing any iPhone data? The "remove and sync?" option looks like it will leave me with zero data on the iPhone!

    how do I sync my iPhone 5 to a new Toshiba laptop PC without losing any iPhone data? The "remove and sync?" option looks like it will leave me with zero data on the iPhone!

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • TS3988 I am not able to open the settings icon from my old iPAD. When I try to select the settings icon it looks like it's about to launch and open however; it will not stay open. I am trying to transfer all my data from my old iPAD to my new 4th gen iPAD

    I am not able to open the settings icon from my old iPAD. When I try to select the settings icon it looks like it's about to launch and open however; it will not stay open. I am trying to transfer all my data from my old iPAD to my new 4th gen iPAD.

    Try a soft reset - press the home and power bottons and keep them pressed until the Apple logo comes on.  Then see if you can access Settings.

  • After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

    After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

    After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

  • Looks like a bug in Date class

    Hi guys,
    I just logged in to highlight what I encountered when I was
    trying to convert milliseconds of a time stamp to a date/time
    string.
    Just see the following codes.
    public function
    convertTimeStampToDateAndTime(timeStampInMilliseconds:Number):String
    var stampReadableFormate:String = null;
    if(!isNaN(timeStampInMilliseconds))
    var stampDate:Date = new Date(timeStampInMilliseconds);
    var stampHour:Number = stampDate.getHours();
    var stampMin:Number = stampDate.getMinutes();
    var stampSec:Number = stampDate.getSeconds();
    var stampYear:Number = stampDate.getFullYear();
    var stampMonth:Number = stampDate.getMonth() + 1;
    var stampDate:Number = stampDate.getDate();
    stampReadableFormate = "" + stampDate + "/" + stampMonth +
    "/" + stampYear + " " + stampHour + ":" + stampMin + ":" +
    stampSec;
    trace("Date/Time=" + stampReadableFormate);
    return stampReadableFormate;
    Then I call this method from somewhere by using,
    var reportTime:String =
    this.convertTimeStampToDateAndTime(new Date().getTime());
    You can see trace method in convertTimeStampToDateAndTime()
    is giving you a correct output.
    But just change the convertTimeStampToDateAndTime() method in
    a way that you get time information after you got date, month and
    Year. To explain what I am taking about I have pasted changed code
    as following.
    public function
    convertTimeStampToDateAndTime(timeStampInMilliseconds:Number):String
    var stampReadableFormate:String = null;
    if(!isNaN(timeStampInMilliseconds))
    var stampDate:Date = new Date(timeStampInMilliseconds);
    var stampYear:Number = stampDate.getFullYear();
    var stampMonth:Number = stampDate.getMonth() + 1;
    var stampDate:Number = stampDate.getDate();
    var stampHour:Number = stampDate.getHours();
    var stampMin:Number = stampDate.getMinutes();
    var stampSec:Number = stampDate.getSeconds();
    stampReadableFormate = "" + stampDate + "/" + stampMonth +
    "/" + stampYear + " " + stampHour + ":" + stampMin + ":" +
    stampSec;
    trace("Date/Time=" + stampReadableFormate);
    return stampReadableFormate;
    now call
    var reportTime:String =
    this.convertTimeStampToDateAndTime(new Date().getTime());
    Now see the trace out put, what has happened, your timing
    informations are undefined.
    Looks like it is a bug to me.
    If this issue has already been discussed before I am very
    sorry by duplicating it.
    Chears
    Naleen

    Thanks for all the responses.
    I am not redefining stampDate inside your function/method.
    Please look at it again.
    I call convertTimeStampToDateAndTime() from out side and in
    my original post I have written it as following....
    var reportTime:String =
    this.convertTimeStampToDateAndTime(new Date().getTime());
    That is just an example for you to udnerstand it,
    But what we are doing in our actual application is we read an
    XML file which has time stamps on each elements as attributes. For
    an example, if following is the XML line....
    <element timeStamp='1195770453174'
    >blaaa</element>
    In Actionscript we call this method,
    var reportTime:String =
    this.convertTimeStampToDateAndTime(1195770453174);
    So I am not redefining at all.
    Just do a simple test by user self.
    My second point is.... If I am redefining a date again with
    same number of Milliseconds Date class constructor shouldn't care
    it.
    For an instance
    Var myMilliSEC1:Number = new Date().getTime(); // this is
    constructing today's date and converts to milliseconds
    var myDate1:Date = new Date(myMilliSEC1); //so this should
    give me the todays date again...
    Var myMilliSEC2:Number = myDate1.getTime();
    Now myMilliSEC1 should equal to myMilliSEC2
    But that is a different issue.... I am just answering for
    your comment on "REDEFINING DATE":
    Anyway thanks for your time and concern.

  • I've imported PowerBI designer file. so why do I keep getting 'It looks like you haven't added any data to this dashboard'

    This might be related to my post about not being able to enter a column name in the where clause, and Q&A always using COUNTRY_OF_ORIGIN.
    Anyway, I took my original designer file, removed the first page of the report I dd, then added a new page, but this time with a visualisation of sales amount by product name.  Saved the whole lot to a new pbix file, and uploaded it into the PowerBI
    cloud.  Pinned the visualsation to a dashboard, and started to enter a query.
    Up pops the message 'It looks like you haven't added any data to this dashboard' etc, etc.
    But, but, but I have uploaded the data. It's all in my pbix file. It seems that PowerBI usese the first column of my first dataset as the master for column names in the where clause. And if you do not have a visualisation that uses that column (i.e. COUNTRY_OF_ORIGIN
    in my case) then Q&A doesn't think it has a dataset.
    I am going to try some other tests to see if I can persuade PowerBI and Q&A to do its business properly.
    Angus

    The reset will not erase the virus but the reset can be done up to you.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • What data sources use for report which looks like tr. FS10N

    Hello,
    I would like to create report in BW which will looks like transaction FS10N (G/L account balance display). Can anybody give some tips which data sources I should use and how initialize these data sources?
    There is old genereal ledger in our system, so I suppose that I need data sources 0FI_GL_20 and 0FI_GL_21 but I don´t know how initialize it.
    Thanks for help.
    Regards,
    Karel

    Hi Suman,
    I asked because f.e. retail data sources 2LIS_03_BF or 2LIS_03_UM had to be initialize via tr. OLI1BW and OLIZBW. After that data sources were filled and then data could be loaded to BW by infopackages. But thanks for info that some data sources needn't initialization. By the way, is somewhere info about this (if data source need initialization and how find out transaction for initialization)? Thanks for advices.
    About data sources 0FI_GL_20 and 0FI_GL_21: We delayed this because there is needed to switch on function Reporting financials (tr. SFW5) and other things -> I didn't recieve confirming (from higher position) that I can switch it on
    Regards,
    Karel

  • Hello i have the ipad one and im up dating it with the software up date and it  comes up with IOS 5.1.1 and it dose not look like the ipad 2 yet help  me find away to make it look like the ipad 2

    I HAVE THE IPAD 1 AND I NEED HELP UP DATING IT TO LOOK LIKE THE IPAD 2 OR 3 SO .... I WENT INTO THE SETTINGS AND I CLICKED ON SOFTWARE UP DATE AND IT SAYS IOS 5.1.1 YOUR SOFTWARE IS UP TO DATE SO I GO ON TO MY HOME SCREAN AND IT STILL LOOKS THE SAME SO COULD YOU TELL ME HOW I CAN MAKE IT LOOK LIKE THE IPAD 2 OR 3  ???? THANK YOU

    The ipad 1 is not supported by apples latest software updates. The processor just cannot handle the newest ios. Im sure there are various third party apps in the app store to give you more of a look alike ios7 but the first generation ipad cannot be updated due to performance issues.

  • Icloud keeps inserting fake calendar events and fake contacts - looks like test data

    In the last few days, meetings for someone in  Palo Alto and contacts with fake data [ (555) 555-xxxx ] have been showing up on my wife's iPhone.  It looks like Apple test data.
    Any ideas??

    Are you sure no one else is using the same iCloud account?  That would account for it (no pun intended).

  • It looks like the way forward is to delete any apps you are having problems with and reinstall hopefully you have your data on iCloud this seems to work

    Looks like deleting and reinstalling the apps your having the problems with works in some cases

    Hi Flash, Just some info to correct yours. First, not everyone is having a problem with FP 10.1 and there are solutions and reverting to FP 10.0 would not be the first choice. If that was for you, that's fine. If you would read the many many threads here, you would find correct information for users that want to revert back to FP10.
    Also may I suggest you read up on Firefox version 3.6.6 as this is involved sometimes with FP 10.1.
    Lastly, I think it is always better to find out what a user's issues are before offering a solution. Reverting back to FP 10.0 is not for everyone that is having a problem nor should it be.
    If your instructions solved whatever problem you were having, that's great. However, to recommend this to other users that come here for help without knowing what their problems are may not be the best advice, in my opinion.
    There are many other details in the Uninstall Instructions and also the Install Instructions that need to be followed.
    That is why it is better for each user to have their own thread and receive help for their individual issues. This is also based on their computer system configuration.
    Believe me, if there was one fix for all FP 10.1 or any other version issues, it would be posted
    Thanks,
    eidnolb

  • After the last Yosemite update on my MacBook pro I turned the FileVault on, now my Mac is freezing all the time and encrypting the drive looks like going to last forever and I am unable to use my MacBook pro what must I do???!!!

    after the last Yosemite update on my MacBook pro I turned the FileVault on, now my Mac is freezing all the time and encrypting the drive looks like going to last forever and I am unable to use my MacBook pro what must I do???!!!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB ' com.adobe.AAM.Updater-1.0 com.adobe.AAM.Updater-1.0 com.adobe.AdobeCreativeCloud com.adobe.CS4ServiceManager com.adobe.CS5ServiceManager com.adobe.fpsaud com.adobe.SwitchBoard com.adobe.SwitchBoard com.apple.aelwriter com.apple.AirPortBaseStationAgent com.apple.FolderActions.enabled com.apple.installer.osmessagetracing com.apple.mrt.uiagent com.apple.ReportCrash.Self com.apple.rpmuxd com.apple.SafariNotificationAgent com.apple.usbmuxd com.citrixonline.GoToMeeting.G2MUpdate com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.JavaUpdateHelper com.oracle.java.JavaUpdateHelper org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.startx ' ' 879294308 4071182229 461455494 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 3694147963 1233118628 2456546649 2806998573 2778718105 2636415542 842973933 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 523110921 3873345487 ' 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<10) print "com.apple.";} ' ' { sub(/ :/,"");print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"cksum "F|getline C;split(C, A);C="checksum "A[1];"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F" ("T", "C")";else F=F" ("C")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' ' s/^.+ |\(.+\)$//g;p ' '/\.(appex|pluginkit)\/Contents\/Info\.plist$/p' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR/d;s/^.+: //p;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' pluginkit scutil dtrace profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$(RefProc): \$Message' -k Sender Req 'fsev|kern|launchd' -k RefProc Rne 'Aq|WebK' -k Message Rne 'Goog|ksadm|probe|Roame|SMC:|smcD|sserti|suhel| VALI|ver-r|xpma' -k Message Req 'abn|bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|NVDA\(|pagin|proc: t|Roamed|rror|SL|TCON|Throttli|tim(ed? ?|ing )o|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????|wc -l' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' " -F '\$Time \$Message' -k Sender kernel -k Message CSeq 'n Cause: -' " );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors App\ extensions Lockfiles Memory\ pressure SMC Shutdowns );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};A'$((7+i))'() { v=` eval sudo "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};';done;A9(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2 7 8;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;B1&&D73 19 53 67 55;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 54 12 56;D23 5 14 12 14;D22 6 36 13 15;D22 20 52 66 54;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D82 35 49 61 51;D82 11 17 17 20;for i in 0 1;do D82 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A8 18 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 26 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D73 21 0 32 19;D73 10 42 32 40;D82 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 21 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D83 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 10 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 21 48 49 49;B3 4 22 57;A1 21 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D12 4 51 32 53;D23 22 9 37 7;A9;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • PLEASE HELP-looks like bluetooth set up to monitor me in home and w/ iphone

    I am hoping I am wrong... first time to post and in need of feedback on what this is.  Hoping it just sounds bad but has innocent explanation (here are a couple of the files I have weeded out as looking like most imp):
    com.apple.ImageCaptureNotifications.DiscoveryDatabase
    SQLite format 3   @         ˚  ˚   ^ ï Á   7™¶ Å
      99 Å/tableSourceFile_IOUSBDeviceSourceFile_IOUSBDevice CREATE TABLE SourceFile_IOUSBDevice (sourceFileID integer, ioUSBDeviceID integer)ÅL            // ÇGtableIOBluetoothDeviceIOBluetoothDevice
    CREATE TABLE IOBluetoothDevice (ID integer primary key not null, typeID integer, DeviceClassMajor integer, DeviceClassMinor integer, SDPServiceClass integer)Å^   ?? ÇKtableIOSCSIPeripheralDeviceNubIOSCSIPeripheralDeviceNub          CREATE TABLE IOSCSIPeripheralDeviceNub (ID integer primary key not null, typeID integer, ProductIdentification varchar(256), VendorIdentification varchar(256))Å+   // Ç tableIOFireWireAVCUnitIOFireWireAVCUnit CREATE TABLE IOFireWireAVCUnit (ID integer primary key not null, typeID integer, Unit_Spec_ID integer, AVCSubUnit_b integer)ÅF   // Ç;tableIOFireWireSBP2LUNIOFireWireSBP2LUN CREATE TABLE IOFireWireSBP2LUN (ID integer primary key not null, typeID integer, Command_Set integer, Command_Set_Spec_ID integer, Device_Type integer)Å%   )) Ç tableIOFireWireUnitIOFireWireUnit CREATE TABLE IOFireWireUnit (ID integer primary key not null, typeID integer, Unit_Spec_ID integer, Unit_SW_Version integer)ÅG   )) ÇItableIOUSBInterfaceIOUSBInterface CREATE TABLE IOUSBInterface (ID integer primary key not null, typeID integer, bInterfaceClass integer, bInterfaceSubClass integer, bInterfaceProtocol integer)Å    ## ÅktableIOUSBDeviceIOUSBDevice CREATE TABLE IOUSBDevice (ID integer primary key not null, typeID integer, idVendor integer, idProduct integer)Ç    !! Ñ tableSourceFileSourceFile CREATE TABLE SourceFile (ID integer primary key not null, typeID integer, bundleID varchar(256), bundleVersion integer, bundlePath varchar(256), deviceDiscoveryPath varchar(256), deviceDiscoveryModDate varchar(20), readDate varchar(20), isTWAINDS integer)v      Å;tableDBVersionDBVersion CREATE TABLE DBVersion (ID integer primary key not null, typeID integer, value int
      ı ı              dbvr    ˆ  ˚ ˆ ; H UbÅp   7 wÅO?? srcfcom.apple.Type6CameraÍ`/System/Library/Image Capture/Devices/Type6Camera.app/System/Library/Image Capture/Devices/Type6Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:40:05 -05002011-06-26 14:24:27 -0500Åp   7 wÅO?? srcfcom.apple.Type5CameraÍ`/System/Library/Image Capture/Devices/Type5Camera.app/System/Library/Image Capture/Devices/Type5Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:39:58 -05002011-06-26 14:24:27 -0500Åp   7 wÅO?? srcfcom.apple.Type4CameraÍa/System/Library/Image Capture/Devices/Type4Camera.app/System/Library/Image Capture/Devices/Type4Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:39:51 -05002011-06-26 14:24:27 -0500Åp   7 wÅO?? srcfcom.apple.Type3CameraÍ`/System/Library/Image Capture/Devices/Type3Camera.app/System/Library/Image Capture/Devices/Type3Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:39:44 -05002011-06-26 14:24:27 -0500Åp   7 wÅO?? srcfcom.apple.Type2CameraÍ`/System/Library/Image Capture/Devices/Type2Camera.app/System/Library/Image Capture/Devices/Type2Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:39:38 -05002011-06-26 14:24:27 -0500Åp   7 wÅO?? srcfcom.apple.Type1CameraÍ`/System/Library/Image Capture/Devices/Type1Camera.app/System/Library/Image Capture/Devices/Type1Camera.app/Contents/Resources/DeviceMatchingInfo.plist2009 -07-16 02:39:32 -05002011-06-26 14:24:27 -0500Åj   3 sÅK?? srcfcom.apple.PTPCameraÍe/System/Library/Image Capture/Devices/PTPCamera.app/System/Library/Image Capture/Devices/PTPCamera.app/Contents/Resources/DeviceMatchingInfo.plist2009-0 7-16 02:39:20 -05002011-06-26 14:24:27 -0500Å|   ? &#127;ÅW?? srcfcom.apple.BluetoothCameraÍa/System/Library/Image Capture/Devices/BluetoothCamera.app/System/Library/Image Capture/Devices/BluetoothCamera.app/Contents/Resources/DeviceMatchingInfo.plist 2009-07-16 02:39:06 -05002011-06-26 14:24       È  ˚ ı Ô È ñ á x i Z K < -      Ò ‚ ” ƒ µ ¶ ó à y j [ L = .       Ú „ ‘ ≈ ∂ ß ò â z k \ M > /       Û ‰ ’ ∆ ∑ ® ô ä { l ] N ? 0 !     Ù Â ÷ « ∏ © ö ã | m ^ O @ 1 "     ı Ê ◊ » π ™ õ å } n _ P A 2 #     ˆ Á ÿ … ∫ ´ ú ç ~ o ` Q B 3 $   
    w    usbd ˘ ø
    N    usbd ˘ Å
        usbd ∞ 
    (DELETED A BUNCH... it goes on forever)
         usbd
    com.apple.ipod.txt (08012011): the numbers at bottom are my iPhone  serial and MEID #s
    bplist00“    WDevices_  conn:128:Last Connect—  _  CE30CBDA7E8714DB⁄   
                ]Serial NumberYConnected_  Firmware Version StringTMEIDYUse CountYFamily ID\Device Class_  Firmware Version_  Updater Family IDRID\C37F744JDDP73A≥Ë– ¨ HU4.2.8^A100001AD6186D W ' ViPhone   ' D ^ Ã
    -0CXfpäèô£∞√◊⁄Áˆ    
    com.apple.bluetooth.txt
    -A:eZPANDevices_  BluetoothAutoSeekHIDDevices_  ControllerPowerState[DeviceCache_  PersistentPorts_  PersistentPortsServices_  BluetoothVersionNumber]PairedDevices°
    _  00-23-12-4a-ad-1c  —  _  00-23-12-4a-ad-1cfl                   !"#$%&'()$*+,_  LastServicesUpdate]ClassOfDeviceTName_  ModelIdentifier]LMPSubversion^PageScanPeriod^LastNameUpdateXServices_  PageScanRepetitionMode_  LastInquiryUpdateZLMPVersion\PageScanMode[ClockOffsetWEIRData\Manufacturer3A≥∫` Ëëµ˙ :  o  Igor Evan Matwijiw  s MacBook [MacBook5,2 !¥ 3A≥∫`› ABO  √  streamtypedÅË Ñ @ÑÑÑ NSArrayÑÑ NSObjectÖÑ i          íÑÑÑ IOBluetoothSDPServiceRecordîíÑÑÑ IOBluetoothDeviceÑÑ IOBluetoothObjectîíÑÑÑ NSDataîï Ñ [6c]# J≠ ÜÜíÑÑÑ NSDictionaryîï          íÑÑÑ NSNumberÑÑ NSValueîÑ *ÑïïÜíÑÑÑ IOBluetoothSDPDataElementîÑ C † Ñ L íÑüûÑÑ q¢Ç  ÜÜíÑüû°ï          ÜíÑ£† † ° íÑÑÑ NSMutableArrayìï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÑÑ IOBluetoothSDPUUIDõíÑõï Ñ [2c]  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜíÑüû°ï ÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ï ÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [18c]OBEX File TransferÜÜíÑüû°ï ÜíÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † ° íÑ©ï íÑ£† †° íÑüûÑÑ sßÅˇÜÜÜÜíÑüû°ïÅw ÜíÑ£† † ° íÑÆíÑõï Ñ [16c]omòÚ<: ÷ïj ìSËXÜÜÜíÑüû°ï ÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† †° íÑüûœß ÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜÜÜÜÜíÑñíóíÑùï íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [21c]Headset Audio GatewayÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† †° í∏ÜÜÜÜÜÜÜíÑñíóíÑùï íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [28c]Group Ad-hoc Network ServiceÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † °%íÑõï%Ñ [37c]Personal Group Ad-hoc Network ServiceÜÜíÑüû°ïÅ
    ÜíÑ£† † ° í∏ÜíÑüû°ïÅ  ÜíÑ£† † ° í≤ÜíÑüû°ï ÜíÑ£† †° íÑüûœßÅˇÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ï ÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑüû°ïÅ ÜÜíÑ£† † ° íÑüû°ïÅ  ÜÜíÑ£† † ° íÑüû°ïÇ›ÜÜÜíÑ£† † ° íÑüû°ïÇ àÜÜÜÜÜÜÜÜÜÜíÑñíóíÑùï          íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑüû°ïÅ  ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [24c]Hands-Free Audio GatewayÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † ° íÑ©ï íÑ£† †° íûÜÜÜíÑüû°ïÅ  ÜíÑ£† † ° íûÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† †° íÑüû°ï ÜÜÜÜÜÜÜÜíÑñíóíÑùï          íûíÑ£† † ° íÑüû•¢Ç ÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [26c]Apple Macintosh AttributesÜÜíÑüû°ïÅÄ ÜíÑ£† † ° íÑÆíÑõï ®r.  ãNêå¬ FıÚÔ‚ÜÜÜíÑüû°ïÅÑ ÜíÑ£† † ° íÑõï Ñ [7c]2.4.0f1ÜÜíÑüû°ïÅÅ ÜíÑ£† † ° íÑõï ÆMacBookÜÜíÑüû°ïÅÖ ÜíÑ£† † ° íÑüû°ï ÜÜíÑüû°ïÅÜ ÜíÑ£† † ° íÑÆíÑõï • 4ÜÜÜíÑüû°ïÅÇ ÜíÑ£† † °
    íÑõï
    Ñ [10c]MacBook5,2ÜÜíÑüû°ïÅÉ ÜíÑ£† † ° í∏ÜÜÜíÑñíóíÑùï íûíÑ£† † ° íÑüû•¢Ç  ÜÜíÑüû°ïÅ  ÜíÑ£† † ° íÑüû•¢Ç¿Œ ÜÜíÑüû°ïÅ
    ÜíÑ£† † ° í∏Üí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï ™Network Access Point ServiceÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † ° í≤Üí@íÑ£† †° íÑüûœßÅˇÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ï ÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑüû°ïÅ ÜÜíÑ£† † ° íÑüû°ïÅ  ÜÜíÑ£† † ° íÑüû°ïÇ›ÜÜÜíÑ£† † ° íÑüû°ïÇ àÜÜÜÜÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † °,íÑõï,Ñ [44c]Personal Ad-hoc Network Service Access PointÜÜÜÜíÑñíóíÑùï íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï ¶Bluetooth-PDA-SyncÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† †° íÅ©ÜÜÜÜÜÜÜíÑñíóíÑùï          íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï ®OBEX Object PushÜÜí¡íÑ£† † °          íÑ©ï íÑ£† † ° íÑüû°ïÅneÜÜíÑ£† † ° íÑüû°ïjÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜíÑüû°ïÅ  ÜíÑ£† † ° íÑ©ï íÑ£† †° íÑüûœßÅˇÜÜÜÜíÑüû°ïÅw ÜíÑ£† † ° íÑÆíÑõï ®omòÚ<: ÷ïj ìSËXÜÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† †° íÑüû°ï
    ÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜÜÜÜÜÜÜíÑñíóíÑùï íûíÑ£† † ° íÑüû•¢Ç  ÜÜí¶íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜíÑ£† † ° íÑüû°ïÅ  ÜÜÜÜÜÜí≤íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜí∏íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï •  ÜÜÜÜÜíÑüû°ïÅ ÜíÑ£† † ° íÑõï Ñ [12c]AVRCP TargetÜÜíÑüû°ïÅ  ÜíÑ£† † ° í∏ÜíÑüû°ïÅw ÜíÑ£† † ° íÑÆíÑõï ®omòÚ<: ÷ïj ìSËXÜÜÜí‘íÑ£† † ° íÑ©ï íÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ï ÜÜÜÜíÑ£† † ° íÑ©ï íÑ£† † ° íÑÆíÑõï • ÜÜÜíÑ£† † ° íÑüû°ïÅ ÜÜÜÜÜÜÜÜÜ  3A≥∫`a&#127;Hë    óO            Igor Evan Matwijiw‚Äôs MacBook                       ˇL MacBook5,2î4          Dl  “./0>_ "incoming port - Bluetooth-PDA-Sync_  Bluetooth-ModemŸ123456789.'': $: =VBTName]P49SerialPortZHiddenPort_  BTRFCOMMChannel_  BTAuthenticationRequired_  BTSerialConnectionTypeUBTPSM_  BTEncryptionTypeYBTTTYName    _  Bluetooth-PDA-Sync◊12745?9/'$$$@/YBTAddress@—.B◊CDEFGHIJL=U]^`_  0005 - BrowseGroupList*_  0004 - ProtocolDescriptorList_  0100 - ServiceName*_ #0006 - LanguageBaseAttributeIDList*_  0000 - ServiceRecordHandle*_  0001 - ServiceClassIDList_ %0009 - BluetoothProfileDescriptorList°KB  ¢MO°NB ¢PQB ”RST':'_  DataElementType_  DataElementValue_  DataElementSize£VY[”RST'WX en  ”RST'ZX j”RST'\X     °_B  °a¢bcB  ”RST'dX  °f_  00-23-12-4a-ad-1c  $BYewë™∏∫Œœ–”Á     + 0 B P _ n w ê § Ø º » – › Ê Î ( 4 7 9 B                          8 J ] d r } è ™ √ … ‹ Ê Ë È Í ˇ         + E e { ° ø €        
             / B T X _ b d k m t w | ~ Å É Ü â ê ì ï  g ©

    Welcome to the discussions.
    So what make you think, to quote you "bluetooth set up to monitor me in home and w/ iphone" ? That stuff looks like a bunch of data files, some sqllite, some plist, and some possibly binary.  There's lots of this kind of stuff floating around your system.
    You are not being monitored.  And if you were bluetooth is about the last mode to even try to use due to its limited range.  In addition your post says you are using a mac pro and the bluetooth on mac pros leaves a lot to be desired to say the least (I'm being kind using those words).  The built-in BT on mac pros is lucky to reach the mouse on your desk!

  • Zut! Now it looks like the latch!

    Thanks to all the advice and encouragement on this forum, I've managed to keep my TiBook alive: new HD, added RAM, tight hinges relieved… For the last couple of months, for no apparent reason, the display no longer clicks softly shut. The machine goes into sleep mode as soon as the display is lowered, which is good, but do I ever risk it waking up because the lid pops open? And considering that this machine spends most of its time sitting on a desk, should I consider trying to replace the latch, if indeed this is a repair that I can take on myself? Or is there a way that I can "tickle" the latch back into working order?

    My dear, I don't think we're about to say "au revoir"!
    But I don't get a prompt; this is what I get when I launch Terminal :
    +Last login: Wed Aug 5 00:32:47 on ttyp0+
    +Welcome to Darwin!+
    +rke75-4-82-234-109-103:~ carolemoy$+
    I then paste in the command you gave me, and the window looks like this:
    +Last login: Wed Aug 5 00:34:33 on ttyp0+
    +Welcome to Darwin!+
    +rke75-4-82-234-109-103:~ carolemoy$ sudo pmset lidwake 0+
    and when I hit Return, this is what I get:
    +Last login: Wed Aug 5 00:34:33 on ttyp0+
    +Welcome to Darwin!+
    +rke75-4-82-234-109-103:~ carolemoy$ sudo pmset lidwake 0+
    +WARNING: Improper use of the sudo command could lead to data loss+
    +or the deletion of important system files. Please double-check your+
    +typing when using sudo. Type "man sudo" for more information.+
    +To proceed, enter your password, or type Ctrl-C to abort.+
    Password:
    But then it won't let me type in my password, and yes, I am the admin user of the machine. (Sigh) So close, and yet so far!
    BTW, what's the trick for pasting screen dumps into these posts?
    I also find it funny that my system is in French, but the warning is in English (it's actually kind of a relief, since computer-speak in French is enough to make anyone crosseyed).
    Help (whimper)! Sorry to be such a pain.

  • Time machine stopped backing up, looks like backupd crashes

    I have a mini that's a few years old and can't go past 10.6.8.  I have been using TM for backups for years, and recently it stopped backing up.  No errors, just always "waiting for backup".  At first I thought it was a problem with the destination disk but I've tried a couple including a newly reformatted one.  Always the same problems so it looks like a problem with the boot drive or computer.  Found this in the error logs, backupd is crashing every time it tries to back up.  I have run disk utility, the repair disk doesn't show any errors but repair permissions lists a bunch and says it fixes them but then lists them all again if I run it again.  I have done a bunch of searching for these particular errors and checked the pondini website but haven't found anything that helps this issue.
    Starting standard backup
    Backing up to: /Volumes/WD1G_Backup/Backups.backupdb
    2013-10-16 08:05:46.363 FindSystemFiles[4444:907] Looking for system packages
    2013-10-16 08:05:47.524 FindSystemFiles[4444:907] Using system path cache.
    Detected system migration from: /Volumes/boot 60
    Backup content size: 30.7 GB excluded items size: 12.4 GB for volume MBoot
    No pre-backup thinning needed: 21.96 GB requested (including padding), 930.57 GB available
    Waiting for index to be ready (101)
    2013-10-16 08:13:53.618 ReportCrash[4510:2803] Saved crash report for backupd[4443] version ??? (???) to /Library/Logs/DiagnosticReports/backupd_2013-10-16-081353_localhost.crash
    And here's the first part of the crash log, I can post the rest if it would be helpful.
    Process:    
    backupd [4443]
    Path:       
    /System/Library/CoreServices/backupd
    Identifier: 
    backupd
    Version:    
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [1]
    Date/Time:  
    2013-10-16 08:13:37.174 -0500
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    Crashed Thread:  3
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x996d7afa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x996d8267 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x984992df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation 
    0x984983c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation 
    0x9849e304 CFRunLoopRun + 84
    5   backupd                  
    0x00010f06 0x1000 + 65286
    6   backupd                  
    0x000058a1 0x1000 + 18593
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x996fe382 kevent + 10
    1   libSystem.B.dylib        
    0x996fea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x996fdf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x996fdcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x996fd781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x996fd5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x996d7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x997056e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib        
    0x997345a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore
    0x98f58b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore
    0x98f54533 MPWaitOnQueue + 250
    5   com.apple.DesktopServices
    0x92aa68d0 TCopyQueue::GetBuffer() + 70
    6   com.apple.DesktopServices
    0x92aa65ba TCopyReader::ReadDataFork() + 104
    7   com.apple.DesktopServices
    0x92aa0e1f TCopyReader::Read(unsigned long long, TCountedPtr<TCFURLInfo> const&, TCountedPtr<TCFURLInfo> const&) + 205
    8   com.apple.DesktopServices
    0x92ad74e3 TFSCopyOperation::CopyToTarget() + 613
    9   com.apple.DesktopServices
    0x92ada228 TFSCopyOperation::DoCopy(TCountedPtr<TCFURLInfo> const&) + 780
    10  com.apple.DesktopServices
    0x92ada898 TFSCopyOperation::Run() + 174
    11  com.apple.DesktopServices
    0x92acf5e9 _NodeOperation + 438
    12  backupd                  
    0x0001a015 0x1000 + 102421
    13  backupd                  
    0x00019519 0x1000 + 99609
    14  backupd                  
    0x00013ae4 0x1000 + 76516
    15  backupd                  
    0x0000e218 0x1000 + 53784
    16  backupd                  
    0x000081da 0x1000 + 29146
    17  com.apple.Foundation     
    0x971744c4 -[NSThread main] + 45
    18  com.apple.Foundation     
    0x97174474 __NSThread__main__ + 1499
    19  libSystem.B.dylib        
    0x99705259 _pthread_start + 345
    20  libSystem.B.dylib        
    0x997050de thread_start + 34
    Thread 3 Crashed:
    0   com.apple.LaunchServices 
    0x92d440cf _LSIsKnownExtensionUnicode + 160
    1   com.apple.LaunchServices 
    0x92d43f9b _LSCanHideExtension(LSContext*, FSNode*, LSUniChars const*, LSUniChars const*) + 68
    2   com.apple.LaunchServices 
    0x92d44213 _LSCopyNodeAttribute_NonLocalizedDisplayNameIfDifferentFromFSName(LSNodeAttribu teStateCache*) + 257
    3   com.apple.LaunchServices 
    0x92d39ae5 _LSCopyNodeAttribute_DisplayNameIfDifferentFromFSName(LSNodeAttributeStateCache *) + 795
    4   com.apple.LaunchServices 
    0x92d392ca _LSCopyNodeAttribute + 174
    5   com.apple.LaunchServices 
    0x92d389e2 _LSCopyItemAttributeForRefInfoWithOptions + 281
    6   com.apple.LaunchServices 
    0x92d3a9cd _LSCopyItemAttributeForRefInfo + 46
    7   com.apple.LaunchServices 
    0x92d3a933 prepareAttributeValueForKey(__CFURL const*, __FileCache*, __CFString const*, void const**, __CFError**) + 85
    8   com.apple.LaunchServices 
    0x92d3a884 prepareDistinctLocalizedNameValue(__CFURL const*, __FileCache*, __CFError**) + 55
    9   com.apple.LaunchServices 
    0x92d3a848 prepareLocalizedNameValue(__CFURL const*, __FileCache*, __CFError**) + 31
    10  com.apple.LaunchServices 
    0x92d3a622 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 45
    11  ...ple.CoreServices.CarbonCore
    0x98f3014d prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 347
    12  ...ple.CoreServices.CarbonCore
    0x98f41dd7 _FSURLCopyResourcePropertiesForKeys + 1048
    13  com.apple.CoreFoundation 
    0x984c0763 CFURLCopyResourcePropertiesForKeys + 99
    14  com.apple.DesktopServices
    0x92a76491 TCFURLInfo::FetchProperties(bool) + 89
    15  com.apple.DesktopServices
    0x92a763ef TCFURLInfo::Initialize(__CFURL const*, bool, bool) + 163
    16  com.apple.DesktopServices
    0x92a9d427 TCFURLInfo::Initialize(char const*, unsigned long) + 97
    17  com.apple.DesktopServices
    0x92a9dcba TCFURLInfo::CreateDirectory(TUString const&, TUniqueNamer*, __FSFileSecurity*, bool, TCountedPtr<TCFURLInfo>&) const + 598
    18  com.apple.DesktopServices
    0x92aa54a1 TCopyWriter::CreateNewDestinationItem() + 207
    19  com.apple.DesktopServices
    0x92aa516c TCopyWriter::CreateItem() + 1110
    20  com.apple.DesktopServices
    0x92aa10cc TCopyWriter::Write() + 146
    21  com.apple.DesktopServices
    0x92aa09d5 TCopyWriter::WriteTaskProc(void*) + 75
    22  ...ple.CoreServices.CarbonCore
    0x98f3854a PrivateMPEntryPoint + 68
    23  libSystem.B.dylib        
    0x99705259 _pthread_start + 345
    24  libSystem.B.dylib        
    0x997050de thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
      eax: 0x000000a8  ebx: 0x92d44046  ecx: 0xb0100a9c  edx: 0x00000000
      edi: 0xa0b8a4c0  esi: 0xb0101114  ebp: 0xb0100b38  esp: 0xb0100a50
       ss: 0x0000001f  efl: 0x00010202  eip: 0x92d440cf   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000014
    Binary Images:
        0x1000 -    0x57ff7  backupd ??? (???) <B9C993AB-BFD9-B304-4EF6-23CDAB34C772> /System/Library/CoreServices/backupd
      0x722000 -   0x730fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1825F5DF-491F-FDD5-3ABB-3FAC1EDC4357> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90139000 - 0x9013cfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib

    No ideas?

Maybe you are looking for

  • Com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFC_Fault_Exception

    hi I am getting the following error.... when i am executing muy BAPI.... com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFC_Fault_Exception Thanks & Regards Ravi Shankar B..

  • IOS 8 is slow on my iPad 3

    Just loaded iOS 8 on my iPad 3. I like the new features. But it's really slowing down my iPad. I really notice it on webpages. But applications are slow to load as well.anyone have any ideas on how to improve this other than buying the most recent iP

  • %AUTHMGR-4-UNAUTH_MOVE messages in WLC 5760

    Hi, We're getting this messages on a WLC 5760: Mar  7 14:24:32.136: %AUTHMGR-4-UNAUTH_MOVE: (fast) MAC address (0011.21c2.1f2f) from Ca7 to Ca44 Mar  7 14:24:53.148: %AUTHMGR-4-UNAUTH_MOVE: (slow) MAC address (0011.21c2.115f) from Ca15 to Ca22 Mar  7

  • Speed of weblogic serving static pages

    Has anyone seen fairly slow page serving (measured from the end-user's point of view) for weblogic 4.5? Even when the system isn't hardly loaded at all, we have users complain about slow response times. The consensus is the stuff running on WebLogic

  • The old Ipod 80Gb will only sync 2Gb issue!!!!!!!

    Hi all I seem to be suffering the common (and ignored by Apple) Classic 80Gb only syncing 2Gb issue. Has anyone actually come up with a fix yet - other than replacing the hard drive? I've done everything I can find on forums anywhere without success