More Sophos Cleanup issues

Hi,  I'm running Sophos under Yosemite 10.10.3 on an IMac. It keeps popping up with threat Troj/DocDI-QI. Cleanup is running forever and doing nothing. I restarted my computer, same problem. Ran Malware Bytes and it did not find a problem.  Advice? Thanks!JS

Hi Js,
Sorry about the slow reply here. I would take a look at the scan log to see what it says about the clean up that seems to fail.
You can access the Scan log by clicking the Sophos menu bar icon and selecting Open Scans...
From there you can alt-click the white space by "scan this mac" and select View Scan Log.
I'm guessing what's happening is the file is located in a location that Sophos can't access. You can post the results here, and I'll take a look. 
 

Similar Messages

  • Re: [iPlanet-JATO] More on ComputedColumn issue

    Vladimir--
    I'm going to answer this question without doing my full homework on it;
    please let me know if I hit the mark or not. If I understand correctly, you
    have a problem using a model for both UPDATE and SELECT queries because of a
    computed column...correct?
    If so, this issue is solved in JATO 1.2. 1.2 has an attribute in the field
    descriptor to indicate in which type of queries a field should be used. You
    can use this attribute to indicate that a field should only be used for
    UPDATE queries, SELECT queries, or whatever combination of query types you
    require. You can then define synthetic fields for use only during one of
    the query types.
    Does this sound useful in fixing your issue? A way around this in JATO 1.1
    would be to create separate models for SELECT and UPDATE queries. The
    SELECT model could contain all the fields for the joined query, but the
    UPDATE model would contain info for only one table. The 1.2 feature simple
    allows you to do the same using one model.
    Todd
    ----- Original Message -----
    From: "vivanov4114" <vivanov@b...>
    Sent: Friday, January 11, 2002 8:12 AM
    Subject: [iPlanet-JATO] More on ComputedColumn issue
    We have a similar problem with do's ComputedColumn after the
    translation as Kostas described in his detailed message #439.
    We have JATO/iMT version 1.1. Is the resolution of this problem added
    to the version 1.2 (or 1.2.1)?
    I've tried to adjust the ModelImpl class based on the .sdo file
    (using ComputedColumn attributes) for these fields and failed.
    Whether I missed something else, or our situation is a little bit
    different.
    In our case the dataObject has one Computed Field from one table and
    another Computed Field from another table along with joint between
    these two tables and third one, and, finally, the whole stuff is
    under the repeatable (with static fields bindings to these two
    computed fields).
    The modelImpl class after the translation (as in the #439) has the
    same values "" and "." for ..._NAME and QUALIFIED_..._NAME strings
    respectively (for each computed do's field).
    I guess that we could meet extra problem with this (for manual
    adjustment) because of there is no TableName attribute in .sdo file
    for computed field (as well as there is no ColumnName attribute for
    computed field). If ComputedColumn attribute (computed field) could
    play a role of ColumnName attribute (regular case), what would be an
    analog of TableName attribute for computed field?
    The bottom line of this is as follows: we have a same
    SQLException "Invalid Column Name"
    from ResultSetModelBase.updateModel() as Kostas described. It causes
    the problem for
    RequestHandlingTiledViewBase.executeAutoRetrieving() method that
    can't bind the proper Model.
    Finally, beginDisplay() method from
    pgXXXXPriorityCountTiledView.class throws exception and
    jasper compiler brings run-time error (Tomcat 3.2).
    Kostas, if this problem still exists for translation of such cases,
    could you please post a fragment that fixed you original problem in
    addition to the message #439 (just to be sure, that I haven't missed
    something important).
    Thank you very much in advance.
    Vladimir Ivanov,
    P. S. I've enclosed the excerption from the .sdo file for this
    dataObject below.
    Class "SQLObject" ;
    Name "doPriorityCount" ;
    DataFields {
    0 { // first df is a computed column from the first
    //table
    Class "DataField" ;
    Name "dfPriorityDesc" ;
    ComputedColumn "MIN
    (MOS.PRIORITY.PDESCRIPTION)" ;
    1 { // second df is a computed column from the second
    // table
    Class "DataField" ;
    Name "dfPriorityCount" ;
    ComputedColumn "COUNT
    (ASSIGNEDTASKSWORKQUEUE.PRIORITYID)" ;
    2 { // third df is a regular df
    Class "DataField" ;
    Name "MOS_PRIORITY_PRIORITYID" ;
    TableName "MOS.PRIORITY" ; // this attribute
    // doesn't exist for ComputedColumn
    ColumnName "PRIORITYID" ; // this attribute
    // doesn't exist for ComputedColumn
    DataCachingEnabled "False" ;
    DataCachingDuration "0" ;
    DataCachingMaxRows "200" ;
    DataObjectType "Select" ;
    Tables "MOS.ASSIGNEDTASKSWORKQUEUE,MOS.PRIORITY,MOS.DEAL" ;
    SQLDistinct "False" ;
    SelectFilter {
    "MOS.DEAL.SCENARIORECOMMENDED" ;
    "=" ;
    "'Y'" ;
    "AND" ;
    "MOS.DEAL.COPYTYPE" ;
    "<>" ;
    "'T'" ;
    SelectOrder {
    "MOS.PRIORITY.PRIORITYID ASC" ;
    SelectGroup {
    "MOS.PRIORITY.PRIORITYID" ;
    EnableEntireTableDelete "False" ;
    EnableEntireTableUpdate "False" ;
    SQLTextOverrideSelect "Partial" ;
    SQLTextOverrideDelete "None" ;
    SQLTextSelectJoin "MOS.ASSIGNEDTASKSWORKQUEUE.DEALID =
    MOS.DEAL.DEALID
    AND MOS.PRIORITY.PRIORITYID <> 0
    AND MOS.PRIORITY.PRIORITYID =
    MOS.ASSIGNEDTASKSWORKQUEUE.PRIORITYID(+)
    AND MOS.ASSIGNEDTASKSWORKQUEUE.TASKSTATUSID
    (+) = 1 " ;
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    Todd,
    Sorry for the delay with the answer, I've tried to obtain JATO 1.2
    and repeat the project migration to verify whether version 1.2 solves
    my problem or not (actually, it is a pilot sub-project).
    Unfortunately, I still have no 1.2 version.
    Let me try to answer on your question without getting the results
    with JATO 1.2. Your explanation sounds like version 1.2 is very close
    to solve the problem. Actually, our situation is easier because we
    have SELECT object only, not SELECT and UPDATE. For data integrity
    the only 'Select' ND's do(s) have been used through the whole
    project. The backend communication (update, delete) is provided via
    EJB like (entity) Java classes.
    My question is: could I define synthetic field with 1.1.1 version. By
    the way, word synthetic reflects the possibility to construct the
    field under certain SQL circumstances (SELECT, UPDATE, e.g.) or the
    possibility to construct a `fake' field (for example,
    CountColumn of a do) as well. If the later is true, could you please
    give a brief idea how to create this synthetic field.
    After the translation in the doPriorityCountModelImpl class we've
    got:
    public static final String COLUMN_DFPRIORITYDESC="";
    public static final String QUALIFIED_COLUMN_DFPRIO
    RITYDESC=".";
    public static final String COLUMN_DFPRIORITYCOUNT="";
    public static final String QUALIFIED_COLUMN_DFPRIO
    RITYCOUNT=".";
    (see my original post please with details, as well).
    If this is not a problem for 1.2 please do not waste your time to fix
    it for 1.1.1. I need to repeat my results with the version 1.2 anyway.
    We have a number of similar idioms through the project. In this
    particular case, the CountColumn that counts the field from another
    table may bring problem for manual adjustment (see my original
    notes). The whole SQL query is as follows (for this case):
    SELECT MIN(MOS.PRIORITY.PDESCRIPTION),
    COUNT(ASSIGNEDTASKSWORKQUEUE.PRIORITYID),
    MOS.PRIORITY.PRIORITYID
    FROM MOS.ASSIGNEDTASKSWORKQUEUE, MOS.PRIORITY, MOS.DEAL
    WHERE MOS.DEAL.SCENARIORECOMMENDED = 'Y'
    AND MOS.DEAL.COPYTYPE <> 'T'
    GROUP BY MOS.PRIORITY.PRIORITYID
    ORDER BY MOS.PRIORITY.PRIORITYID ASC
    During the pre-handler activity (it is the part of our Object
    Framework on the top of Netdynamics Object Framework) system passes
    id (and mos.deal.dealid = XXX) to the do (select query). After the
    run-time execution of this do the results are displayed on the screen
    bind to the repeatable statics.
    Thank you very much,
    Vladimir
    --- In iPlanet-JATO@y..., "Todd Fast" <Todd.Fast@S...> wrote:
    Vladimir--
    I'm going to answer this question without doing my full homework on it;
    please let me know if I hit the mark or not. If I understand correctly, you
    have a problem using a model for both UPDATE and SELECT queries because of a
    computed column...correct?
    If so, this issue is solved in JATO 1.2. 1.2 has an attribute in the field
    descriptor to indicate in which type of queries a field should be used. You
    can use this attribute to indicate that a field should only be used for
    UPDATE queries, SELECT queries, or whatever combination of query types you
    require. You can then define synthetic fields for use only during one of
    the query types.
    Does this sound useful in fixing your issue? A way around this in JATO 1.1
    would be to create separate models for SELECT and UPDATE queries. The
    SELECT model could contain all the fields for the joined query, but the
    UPDATE model would contain info for only one table. The 1.2 feature simple
    allows you to do the same using one model.
    Todd
    ----- Original Message -----
    From: "vivanov4114" <vivanov@b...>
    Sent: Friday, January 11, 2002 8:12 AM
    Subject: [iPlanet-JATO] More on ComputedColumn issue
    We have a similar problem with do's ComputedColumn after the
    translation as Kostas described in his detailed message #439.
    We have JATO/iMT version 1.1. Is the resolution of this problem
    added
    to the version 1.2 (or 1.2.1)?
    I've tried to adjust the ModelImpl class based on the .sdo file
    (using ComputedColumn attributes) for these fields and failed.
    Whether I missed something else, or our situation is a little bit
    different.
    In our case the dataObject has one Computed Field from one table and
    another Computed Field from another table along with joint between
    these two tables and third one, and, finally, the whole stuff is
    under the repeatable (with static fields bindings to these two
    computed fields).
    The modelImpl class after the translation (as in the #439) has the
    same values "" and "." for ..._NAME and QUALIFIED_..._NAME strings
    respectively (for each computed do's field).
    I guess that we could meet extra problem with this (for manual
    adjustment) because of there is no TableName attribute in .sdo file
    for computed field (as well as there is no ColumnName attribute for
    computed field). If ComputedColumn attribute (computed field) could
    play a role of ColumnName attribute (regular case), what would be an
    analog of TableName attribute for computed field?
    The bottom line of this is as follows: we have a same
    SQLException "Invalid Column Name"
    from ResultSetModelBase.updateModel() as Kostas described. It causes
    the problem for
    RequestHandlingTiledViewBase.executeAutoRetrieving() method that
    can't bind the proper Model.
    Finally, beginDisplay() method from
    pgXXXXPriorityCountTiledView.class throws exception and
    jasper compiler brings run-time error (Tomcat 3.2).
    Kostas, if this problem still exists for translation of such cases,
    could you please post a fragment that fixed you original problem in
    addition to the message #439 (just to be sure, that I haven't missed
    something important).
    Thank you very much in advance.
    Vladimir Ivanov,
    P. S. I've enclosed the excerption from the .sdo file for this
    dataObject below.
    Class "SQLObject" ;
    Name "doPriorityCount" ;
    DataFields {
    0 { // first df is a computed column from the first
    //table
    Class "DataField" ;
    Name "dfPriorityDesc" ;...........................................
    ComputedColumn "MIN
    (MOS.PRIORITY.PDESCRIPTION)" ;............................................
    1 { // second df is a computed column from the second
    // table
    Class "DataField" ;
    Name "dfPriorityCount" ;
    ComputedColumn "COUNT
    (ASSIGNEDTASKSWORKQUEUE.PRIORITYID)" ;
    2 { // third df is a regular df
    Class "DataField" ;
    Name "MOS_PRIORITY_PRIORITYID" ;
    TableName "MOS.PRIORITY" ; // this attribute
    // doesn't exist for ComputedColumn
    ColumnName "PRIORITYID" ; // this attribute
    // doesn't exist for ComputedColumn
    DataCachingEnabled "False" ;
    DataCachingDuration "0" ;
    DataCachingMaxRows "200" ;
    DataObjectType "Select" ;
    Tables "MOS.ASSIGNEDTASKSWORKQUEUE,MOS.PRIORITY,MOS.DEAL" ;
    SQLDistinct "False" ;
    SelectFilter {
    "MOS.DEAL.SCENARIORECOMMENDED" ;
    "=" ;
    "'Y'" ;
    "AND" ;
    "MOS.DEAL.COPYTYPE" ;
    "<>" ;
    "'T'" ;
    SelectOrder {
    "MOS.PRIORITY.PRIORITYID ASC" ;
    SelectGroup {
    "MOS.PRIORITY.PRIORITYID" ;
    EnableEntireTableDelete "False" ;
    EnableEntireTableUpdate "False" ;
    SQLTextOverrideSelect "Partial" ;
    SQLTextOverrideDelete "None" ;
    SQLTextSelectJoin "MOS.ASSIGNEDTASKSWORKQUEUE.DEALID =
    MOS.DEAL.DEALID
    AND MOS.PRIORITY.PRIORITYID <> 0
    AND MOS.PRIORITY.PRIORITYID =
    MOS.ASSIGNEDTASKSWORKQUEUE.PRIORITYID(+)
    AND
    MOS.ASSIGNEDTASKSWORKQUEUE.TASKSTATUSID
    (+) = 1 " ;
    For more information about JATO, including download information, please
    visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • WHY IS IT THAT THE OS UPDATE SCREWS UP THE Z10 MORE THAN RESOLVE ISSUES???????????

    WHY IS IT THAT THE OS UPDATE SCREWS UP THE Z10 MORE THAN RESOLVE ISSUES???????????

    Is there a question in there somewhere? reply with caps lock off please. :-)
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Showing more than 10 Issues in Test Manager tree view

    I know the table shows them all, but is there a way to show more than 10 Issues in OTM Tree View? Seems cumbersome to keep having to click >>Next and <<Previous for each set of 10.

    Hi
    In OTM you can go to tools -> Options ->select Tree Preferences and edit Maximum Number of Displayed Nodes:
    Hope this helps.
    Alex

  • HT204266 How do I see more than one issue of a magazine at a time in Newsstand on the iPad?

    I can only see the most recent issue but I haven't read the last one (or the one before that, etc.). I want to see them for as long as it takes to read them.

    Mortal Portal wrote:
    Please, someone tell me that there is a way to see each instrument laid out at once for arrangement in the score view somehow (I still can't seem to get more than one to come up at a time).
    i'm not exactly sure if this is what you mean, but if you want to see multiple instruments in the score view, just clicking anywhere on the "paper" brings up all the instruments used. if you want to see each single instrument come up in the score view, i think, like the previous person said is a matter of arranging the windows in the specific screenset, and having an Arrange and Score or Arrange and Matrix so that you can click on the regions and they'll come up on the other screen.
    Make sure you save and/or lock your screensets.

  • More iTunes Store Issues

    Last night I tried to download a free TV show from ABC's Million Hit Lowdown (Desperate Housewives / Remember) - it downloaded 1.9 MB within the first few seconds and then stopped. I tried pausing the download and restarting a few times, restarted iTunes several times, then gave up last night and tried this morning and it is still stuck in the same place. Last night I was curious as to if I could download anything else with any problems, so I purchased a song and it downloaded fine (yet at the same time, the TV show download was still stuck). I have a cable modem and generally TV shows download fairly quickly. Last night was the first time I used the iTunes store with iTunes 7.

    I noticed tons more memory getting chomped by itunes 7 than ever before, esp. during downloads. Could that have been the issue here? (though I notice you're running G5 dual, so probably not)
    12"powerbookG41.5ghz   Mac OS X (10.4.7)   768 MB RAM
    Message was edited by: aphasiasticus

  • More iPod/iTunes Issues...

    I've read posts from a few other people who have had problems with their iPod declaring itself full eventhough it isn't and I've seen the 'restore your iPod' tip in each thread. I gave this a try (seeing as I'm having the same issue) to no avail. My iPod currently has 687 items on it (this is after A LOT of deleting to get the iTunes library to fit) and is at 3.66 GB.
    Given that minis are supposed to hold 1,000 songs how can I be full and so far from that number? Anyone have any ideas why? Or ways to help me tweak my iPod or iTunes so I can get everything loaded?
    Any help is appreciated!

    "So what's the best option?"
    There is no "best" option, it's what suits you best. Apple would recommend you use the AAC format, and I would choose 160kbps as the bitrate. But that's just me. A bitrate less than that compromises sound quality to my ears, but you may not notice any difference between that and a bitrate of 128kbps. If you don't, then use the lower bitrate, and you'll get more songs on your iPod.
    From my own point of view, I don't buy into this "AAC sounds better than mp3" mantra that many people preach here on the forums.
    Don't let anyone tell you what to use. Use your own ears to decide what's best for you.

  • More XControl questions / issues

    XControl 1, X1, has two other XControls, X2 and X3, on its
    block diagram
    When I open a VI with X1 on it, the Init ability is called
    for X2 and X3 three times each.  X1’s
    Init ability is called one time.  (The
    other VIs you see pop up are called from X2 and X3 as a result of Init
    executing, so they illustrate the Init calls. 
    They close when Uninit is called, and you can see as much when you close
    the VI and project)
    When I close said VI, the Uninit ability is called for X1
    and called twice for X2 and X3.  This, of
    course, leaves one instance of X2 and X3 left open.  Consequently, references and VI’s I opened as
    a result of the Init call are left open (you notice the two subvi's still open). 
    Once I close the project, the Uninit abilities are called
    for X2 and X3, closing the remaining resources.
    There is a file in the folder called log.txt I write to in
    the init and Uninit abilities for each XControl.  If you open it after each step you can see
    what I’m talking about.
    Additional things: 
    After I close the VI, but not the project, X2 and X3 are of course
    locked.  When I right click “Unlock this
    library for Editing”, LabVIEW crashes with a .cpp error.  http://forums.ni.com/t5/LabVIEW/Error-when-I-Unlock-Library-for-Editing-with-XControl/m-p/1009044#M4...
    My real project loads the XControls (and executes the Init ability) as soon as it opens for
    some reason, and makes it nearly impossible to edit them unless I close and open the
    XControls individually, due to the .cpp error above.
    Questions
    Is it expected that an XControl an another XControl should be called more than once?
    Why don't they get unloaded when the main XControl is closed and unloaded?
    Why the .cpp error?
    Tim Elsey
    LabVIEW 2010, 2012
    Certified LabVIEW Architect
    Attachments:
    XControl Forum Test source.zip ‏165 KB
    XControl demo video.zip ‏3598 KB

    Hello elset191
    Here is the Corrective Action Request that references your issue.  I have included you as a customer whom this problem is affecting.
    Request #: 302463
    Description: XControls remain open after corresponding VI is closed and crash occurs, XControl cpp error in LabVIEW 8.6.1f1 (Fatal Internal Error: "ThEvent.cpp", line 184) 
    I'm sorry that this has been a frustration to you.  The fastest way to resolve this issue appears to upgrade.  Have you attempted to reproduce this error in LabVIEW 2010 SP1?  I was unable to reproduce this situation in LabVIEW 2010 SP1.
    The CPP error is due to some issue with how this has been internally developed.  It appears to have been resolved in LabVIEW 2010 SP1 as do the other issues you have been dealing with.  Can you please confirm this for me?  I am happy to further address this issue to ensure your success.  All the best!
    P.S.  I have provided a link to the LabVIEW 8.6 Help simply for competeness.
    Editing XControls that are in Use
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvhowto/editing_xcontrols_in_use/
    Sincerely,
    Greg S.

  • More PDF Generation Issues

    This is going to be a long complicated description, so please bare with me...
    I'm using Tech Comm Suite2 on a new Win 7 system. I'm using documents that worked fine with FM 7.2 and Win XP with some minor edits. Like others, on here I've had problems generating a PDF from FM 9. The error occurred when I used "Save as PDF" or "Save as PDF (Send For Review)." It didn't matter whether I was generating it from the book or an individual file (I also tried new documents). I was getting a long, obscure message that I finally figured out but had nothing to do with the problem  (if you're interested, I've attached a screen capture of it). Printing to the Adobe PDF printer worked. It turns out that contrary to advice that I noticed elsewhere on this forum, I needed to unselect the "Convert CMYK to RGB" check box. (I just noticed one more thing while verifying my memory to write this up. The error shown in the attached JPG doesn't occur when the default printer is set to Adobe PDF. It only occurs when I have the printer set to my HP LaserJet 4100 PS).
    OK, so that problem seems fixed. So here's my new stumper...
    When I took a closer look at the generated PDF, I noticed that some of the headers were changed to gibberish, and both those that were and weren't gibberish were changed to italic from regular. For example, "Overview" became "OveriwMaeniv" and "Manual Purpose and Contents" became " AvMAto Mr isloAvwo ivelves" (note: there were some graphic squares that didn't copy and paste into here). Not only that, the FrameMaker file itself had the fonts changed to italic. However, once the fonts were italic, converting the document another time solved the gibberish problem.

    In general, if you're doing PDFs, your system should be set up to use the PDF printer as the default. Period. You can do it at the system level or with a SetPrint script from http://www.sundorne.com/FrameMaker/Freeware/setPrint.htm
    I suspect that when you use the HP, you're either in HP mode (not PostScript) or you use some fonts that are resident only on the printer itself, and aren't installed on your system. Which means that you may be using two different versions of the same font -- one from your /Fonts folder and one on the printer.
    May not make a difference, but I've gotten into the habit of saving files that I've rolled forward from 7.2 to 9 as MIF to clean things up, then saving the MIFs as FM. Also, there seem to have been some problems that resulted from 7.2 books being converte to 9. I don't think your font issue is related, but if a book starts acting wonky, you may want to recreate the book file in 9...
    Art

  • More battery charging issues.

    Like some other people around here I've been having problems with my battery on my Macbook too. Even though my power adapter shows an orange light I still get an X over the battery icon. I've tried taking out my baterry and unpluging the adapter and holding down the power button and I've tried commandoption+pr at startup and neither have worked. So my battery refuses to charge and is so low I can't have my macbook unplugged for more than 5 minutes without it shutting down. I didn't start experiencing this problem until after I'd had my Macbook for a month or so, so I can't figure out what could be wrong. I took the computer to an Apple Store about two months ago for another problem (I went to restart my computer and it wouldn't fully restart) they rebooted and archived my system (I think that's how you'd say it) and the battery problem seemed to be fixed after that but then it started doing it again after like a week.
    Help, what should I do?

    I have been having the same issue, and tried the same things you did. Ultimately, I found out quite by accident that if I unplug the adapter, shut off and then turn on MacBook, the adapter works properly & the battery icon shows correct info.
    My question: Since this happens regularly enough to be very inconvenient, is there a fix to remedy the problem??
    MacBook   Mac OS X (10.4.8)   veteran Mac devotee

  • More overstuffed mailbox issues.

    My co-workers and I have recently experienced overstuffed mailbox issues and I have been using this forum to figure out what to do. We had been getting "Not downloaded from server" info, and sure enough the mailboxed in question are as large as 1.7 Gb.
    Now the only problem is, I don't know how, if at all, the messages from this folder can be retrieved so that some of them can be saved. Ideally, we would like to delete most of the messages but keep the most recent in an active mailbox for searching purposes. Then we would be dilligent in the future about deleting old work to avoid this in the future.
    But what can I do right now? I read something about a "Breaker Script" but I don't know how to get it, or what the exact procedure for using it would be.
    Please help- thank you, thank you, thank you!

    Allan,
    Thanks, this worked perfectly! Is it possible, though, that using this script might make the split mailboxes, or maybe the Mail program in general, run more slowly? This seems to be happening to me today, but it may be unrelated.
    Thank you again,
    Maren

  • More Yosemite memory issues

    Whoa. What is happening here? I've been monitoring the Activity Monitor this
    last week, and this evening the memory values seem to be going crazy (see screenshot).
    What is backupd and why is it using 51 GB of memory? And why is kernel_task suddenly over 9 GB?
    I can feel my MacBook Pro retina late 2013 13" with 16 GB of RAM slowing down, and the "memory pressure" is way up.
    I hate having to restart because I have so much work open, but I guess I have no choice.
    Any idea what might be happening?
    doug

    Yes, it must have been a memory issue with Time Machine. I see the last backup was some 9 hours ago, so I guess it has been sitting there twiddling its thumbs since then, eating away at memory.
    I restarted. Fortunately it only takes a minute with the SSD drives. All the same apps and windows are open as before, but as you can see in the screenshot, memory is back to normal.
    Plus there is no more input lag. Everything is fast again.
    It must be a memory leak or something in Time Machine I imagine.
    After restarting and forcing Time Machine to "backup now" it finished the backup successfully very quickly. And while backing up it was way down in the list, using only 25 MB of memory.
    I think in this case there is no doubt it's another Yosemite memory bug of some kind.
    doug

  • How can i know more trouble shooting issues/Real time problems and thier solutions?

    Hi to every one.
    i am Technician in a reputed mnc company. I am new to Microsoft servers. I learned MCSE 2008 and have basic trouble shooting knowledge.To improve my knowledge on these servers and how can i know real issues in a company occurs , solution to them. Please
    help me to get more knowledge on these servers.
    I am waiting for your reply.
    Thanks  & Regards,
    Praveen

    If you want to know more about issues related to your own internal servers, I'd simply start by reviewing the event logs and running perfmon in the short term to look for issues.  For more long term management and monitoring I'd look to a tool
    like System Center Operations Manager:
    http://technet.microsoft.com/en-us/library/hh205987.aspx
    For general troubleshooting skills growth, I'd stick around these forums and just read issues as they occur and try to assist with resolving some that you feel you can.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Sorry More Cover Flow Issues

    In iTunes all my artwork displays properly but when I sync with my iPod not all the artwork transfers. Does anyone know the reason for this. Is it proper resolution or something being I got some from amazon and google.
    The wierd thing is some of the covers are of the same resolution but some work
    (all of them in iTunes) but not all on the iPod. Anyhelp would be greatly appreciated.....Eric

    Ok, I think I'm dealing with the same issue.
    Got my 160GB ipod classic and have the most current version of itunes and implemented the firmware update. Loaded up some music at home with no issues. Brought the ipod into work and loaded up more music (work itunes was previously updated).
    Here is where the problem begins. I ejected the ipod to go home and before I leave I take a look using the cover flow view and see that ALL of the album artwork has been wiped out.
    So now tonight I've spent the last few hours going through and trying to get things back in order. When I first connected it today to itunes some of the album artwork magically shows up again. Anything else that was missing I replaced. I double check albums to see that the cover art is there while it's still connected to itunes.
    I ejected the ipod and take a look using cover flow view only to find that now some album artwork has been duplicated and some is still missing completely. Again, I re-connect the ipod to itunes and check out some particular albums which were wrong, only to find they look correct while connected.
    Sound familair to anyone else?

  • More error -8 issues - Linksys BEFSR41 to Airport Express

    Hey there, I hope you guys can help b/c I am having a heck of a time with this. I'm having Error-8 issues with my ichat AV 3.1 despite numerous changes. Here's the setup.
    Motorola cable modem-->Linksys BEFSR41 wired router-->Airport Express and Vonage VOIP conected to router.
    Imac Intel 2 GHZ 20" and MBP CD 2.16GHZ both running Tiger 10.4.10
    Router setup: DHCP enabled (Obtain IP automatically, all port forwarding ports opened as per Ralph's numerous posts. Disabled DMZ, Disabled UPnP b/c Airport Express does not support (Even though the router CAN use UPnP). MTU enabled 1492
    Comcast Cable: I called them and they do not give out DNS's for setting up static IP addresses.
    Router IP: 192.168.1.1
    DHCP starting IP: 192.168.1.100
    Range: 192.168.1.100 - .149
    Subnet 255.255.255.0
    Airport Express setup:
    Internet tab: Using DHCP
    IP address: 192.168.1.102
    DNS Server: 68.87.85.98, and (in grey next to it) 68.87.69.146
    WPA2 Personal Security
    Network tab: "Distribute IP addresses" DISABLED
    Port mapping, Access control, and WDS tabs all left blank.
    Imac Network Prefs:
    Airport connected to internet
    IP Adddress: 168.192.1.101 Using DHCP
    Mac Firewall OFF
    Quicktime Prefs: Set to 1.5 MBPS T1/ Internet LAN
    iChat Prefs: AIM port set to 443 b/c of Vonage. Bandwidth set to NONE.
    MBP Network prefs:
    Airport connected to internet
    IP Adddress: 168.192.1.100 Using DHCP
    Mac Firewall OFF
    Quicktime Prefs: Set to 1.5 MBPS T1/ Internet LAN
    iChat Prefs: AIM port set to 443 b/c of Vonage. Bandwidth set to NONE.
    Main issues.... error -8 when trying to video or audio chat. Tested with appleu3test03= NO GO with Intel iMac but MBP works! Tried vid chat with brother and NEITHER WORK.
    I cannot figure out what is going on but I think it is the router. Problems started when I switched to Linksys from netgear. Could it be that I need to just pony up and get an Airport Extreme so that I can utilize UPnP? Or am I missing something.
    Thanks in advance for the help.
    Pete
    iMac Intel and MBP   Mac OS X (10.4.10)  

    Hi,
    I would renumber the devices radiating out from the router (192.168.1.1)
    Airport 192.168.1.100
    Computer one 192.168.1.101
    Computer two 192.168.1.102
    It's not a big thing but I prefer it in case the power goes off or things needs rebooting. And it points to the order of things
    The Airport doing NO Distributing Addresses should allow UPnP to work. It's just a dumb Wireless Access Point now.
    Otherwise if you are doing Port Forwarding it will be to only one Computer and only Text chatting will work on both due to the 443 port being below 1024(NAT)
    If the Airport is not allowing UPnP then I would go for Port Triggering if your Linksys does it.
    Some BEFS41 versions do. I have linked yo to the lowest version listed on the Port Forward site's Triggering pages.
    Don't worry too much about the PC app they say you need.
    Fill in the Trigger port at the top and without hitting enter scroll down to see how that effects the table.
    Then set it up like this
    This pic shows Port 5190 and the AV ports
    You will need to add the Bonjour Ports (5297, 5298 and 5353) and Jabber ones (5220, 5222, 5223) as single lines like the port 5190
    On My Linksys you did not have to specify Protocols. Nor do you on the link above.
    As you have gone Static (router to Airport) you could try allowing the Airport to do Distributing Addresses as the Subnet problem will have been dealt with and the NAT issue will be more linear.
    The Vonage device will have conflict on port 5060 (In fact 5060-5063) with iChat if In-Line between the computers and the Modem. Your set up suggests that this is not the case and it should not be an issue.
    If by Brother you mean the other computer this will need the Bonjour Ports in both directions (5297, 5298 and 5353) to be able to work.
    Strangely this still needs the port 5060 and does contact the SNATMAP server according to my Little Snitch hence the reason for UPnP or Port Triggering for your LAN.
    2:09 PM Wednesday; July 11, 2007

Maybe you are looking for

  • Not getting the Exception_.toString in Forms

    Hi, I hope someone can help me. I have a java jar file. The jar file executes properly from the command prompt. The functionality in this java method is to call a HELLO WORLD service of a hosted webservice. So on its own the jar works fine, I know th

  • Transparent JSplitPane repaint issue

    Hi, I have a split pane added to the content pane of a JFrame and an image loaded in a layer below that of the content pane. All components including the content pane are set to transparent. This frame loads up fine, but as soon as the splitter bar i

  • How to read an inputStream in UTF-8 into a byte array.

    Hi, Java version is 1.4.2. If inputStream.read() is used to read the bytes into a byte array, is it guarenteed that UTF-8 chars are correctly transferred into byte array? Or should we use InputStreamReader? An example would be a great help. Thanks in

  • MRP Study material

    Hi All, Can somebody send the links where I can study the complete MRP process and its customization with complete details and all. Regards Arun

  • N780 Lightning GOP UEFI vBIOS Request

    GOP - UEFI Request for fastboot feautures S/N 602-V296-05SB1309071961 Bios NVIDIA Firmware Update Utility (Version 5.142) Adapter: GeForce GTX 780      (10DE,1004,1462,2960) H:--:NRM B:01,PCI,D:00,F:00 The display may go *BLANK* on and off for up to