What kind of trojans would cause large uploads causing me to use all my bandwidth?

If there isn't a virus that infects IMacs what would cause the above???

Are you running any backup software other than Time Machine? There was another post this week about Western Digital's backup software for their external drives running all the time and hogging processor cycles. The same thing could happen if you are using an online file backup service. Don't know if iCloud is acting that way but you may want to ask in the iCloud forum if you have it on your computer.
Make sure you have Activity Monitor set so that you are not missing some notoriously greedy background processes. There is a "Show" option in the AM toolbar that, by default, is set to "My Processes." Change it to "All Processes to get the big picture:

Similar Messages

  • What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    Just an FYI.  The Macs named PowerMac date from early 2006 and before.  Use this tip to discover where to post once you get your Mac:
    Site map of Communities and Categories
    The cheapest Mac available new is a Mac Mini.   It is no bigger than many an external hard drive.  But the screen and keyboard and mouse must be purchased separately.  They support USB and Bluetooth keyboards and mice, and pretty much any DVI, HDMI, or displayport display.   Although the iMac is certainly an attractive option if all you want to deal with is deciding on a printer.   I still recommend getting an Apple USB keyboard for the occasional times you may need to troubleshoot startup issues.  Normally not a problem, but as it gets older some issues can be fixed at startup or diagnosed at startup.

  • If my iphone 4s doesn't support 4G LTE, then what kind of data would I get from the plan with 4G LTE Data?

    I am currently have iphone 4s. I am planing to use the plan which have 4G LTE for data; however, my phone doesn't support 4G LTE. So, i want to know what kind of data would i get from this plan. Is it gonna be 4g or 3g or no data at all? I am very confused right now.
    The plan is UNLIMITED WEB & TEXT WITH 100 MINUTES TALK.  Up to 5Gb of nationwide 4g lte data.
    If you look at the plan it has 4g lte data, but my phone doesn't support it. Please answer my question.

    Ask the wireless provider you have the plan with - they should be able to tell what speed
    you will get if you cannot connect at 4G/LTE.
    Your iPhone will connect at the highest speed it can by default. But not all wireless providers
    offer 3G as the fallback connection on their 4G network - some fall back to 2G.

  • What kind of printer would you use to print on a lorry?

    Hi,
    One of my client sells items from the lorry, so he wants his drivers to print invoices on the way. My question is what kind of printer would you use to print on a lorry? Any idea, experience?
    Thx in advance,
    Laci

    Hi Laci,
    There are quite a few mobile printers, for example HP does a range of battery powered Officejet printers which you could use on the go. For instance, check this out:
    http://www.shopping.hp.com/product/CB026A%2523B1H
    I hope this helps!
    xx Nat

  • Is it bad if i have only 0.05GB of free space on my 8G ipod? What kind of consequence would I have?

    What kind of consequence would I have?

    You may be unable to to do things since some action require using storage as temporary memory.  SOme web pages may not load, unable to download mail etc.

  • I would like to upload a excel file using jsp

    Hi,
    I would like to upload the excel file using jsp in my netbeans ide. Please help.
    I don Know what is the error in this jsp file. It is not showing any thing and the file is also not getting uploaded.
    Please gothru the code below.
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ page import="java.io.*" errorPage="err.jsp"%>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link href="<html:rewrite page="/design.css" />" rel="stylesheet" type="text/css">
    <title>Upload Page</title>
    </head>
    <body onKeyDown="DisablingBackFunctionality()" onLoad="DisablingBackFunctionality()">
    <html:form action="download" >
    <div style="position:absolute; left:100;top:200;">Select an excel File :<input type="file" name="uploadfile"></div>
    <div style="position:absolute; left:190;top:250;"><input type="submit" name="Submit" value="Read"></div>
    <div style="position:absolute; left:336;top:250;"><input type="reset" name="Reset" value="Clear"></div>
    mainmenu
    </html:form>
    </body>
    </html>
    <%
    String contentType = request.getContentType();
    if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
    DataInputStream in = new DataInputStream(request.getInputStream());
    int formDataLength = request.getContentLength();
    byte dataBytes[] = new byte[formDataLength];
    int byteRead = 0;
    int totalBytesRead = 0;
    while (totalBytesRead < formDataLength) {
    byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
    totalBytesRead += byteRead;
    String file = new String(dataBytes);
    //out.println("<br> file :"+file);
    String saveFile = file.substring(file.indexOf("filename=\"") + 10);
    //out.println("<br> savefile :"+saveFile);
    saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
    //out.println("<br> now file1 :"+saveFile);
    saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1, saveFile.indexOf("\""));
    //out.println("<br> now file2 :"+saveFile);
    //out.print(dataBytes);
    String ext = "";
    if (saveFile.indexOf(".") != -1) {
    ext = saveFile.substring(saveFile.lastIndexOf("."));
    int lastIndex = contentType.lastIndexOf("=");
    //out.println("<br>lst index of"+lastIndex);
    String boundary = contentType.substring(lastIndex + 1, contentType.length());
    //out.println("<br> boundary"+boundary);
    //out.println("<br> file :"+file);
    int pos;
    pos = file.indexOf("filename=\"");
    //out.println("<br> now 0 :"+pos);
    pos = file.indexOf("\n", pos) + 1;
    //out.println("<br>now 1 :"+pos);
    pos = file.indexOf("\n", pos) + 1;
    //out.println("<br>now 2 :"+pos);
    pos = file.indexOf("\n", pos) + 1;
    //out.println("<br>now 3"+pos);
    int boundaryLocation = file.indexOf(boundary, pos) - 4;
    int startPos = ((file.substring(0, pos)).getBytes()).length;
    int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
    FileOutputStream fileOut = new FileOutputStream("D:\\" + saveFile);
    //FileOutputStream fileOut = new FileOutputStream(saveFile);
    //fileOut.write(dataBytes);
    fileOut.write(dataBytes, startPos, (endPos - startPos));
    fileOut.flush();
    fileOut.close();
    session.setAttribute("fil", saveFile);
    //out.println("File saved as " +saveFile);
    %>
    <script type="text/javascript" >
    function DisablingBackFunctionality()
    var URL;
    var i ;
    var QryStrValue;
    URL=window.location.href ;
    i=URL.indexOf("?");
    QryStrValue=URL.substring(i+1);
    if (QryStrValue!='X')
    window.location=URL + "?X";
    </script>
    Please let me know the result as soon as possible. Its my very urgent.
    Thanking Yu,
    Muthu Kumar.R

    No.
    Mylenium

  • What kind of fragmentation would you park this under ?

    hi guys
    i am reading about
    alter table xxxx shrink command;
    on http://www.oracle.com/technology/pub/articles/10gdba/week15_10gdba.html
    q1) do you consider this as a fragmentation ?
    q2) if so, what kind of fragmentation does this falls under ?
    q3) o`reilly oracle essential park this under segment fragmentation
    but to me. it seems to be some kind "blocks fragmentation" which i believe, those empty spaces will be reuse again due to further insert or updates and those empty spaces will be coaleces during the reuse of the freespace as state in the oracle concept
    <i>Released space may or may not be contiguous with the main area of free space in a
    data block. Oracle coalesces the free space of a data block only when (1) an INSERT or
    UPDATE statement attempts to use a block that contains enough free space to contain a
    new row piece, and (2) the free space is fragmented so the row piece cannot be
    inserted in a contiguous section of the block. </i>
    hope to hear advices from you guys soon.
    Regards,
    Noob

    q1 no
    q3 if it would qualify as fragmentation it is segment fragmentation.
    But it's not fragmentation.
    The article is poor and shouldn't have been posted on Oracle's website.
    The author fails to differentiate between freelist managed tablespaces and ASSM tablespaces. In the latter case fragmentation is no longer an issue.
    Also the author states alter table move should move to a new tablespace and can't be executed online.
    Both are incorrect.
    Finally the article omits one fundamental question: does suffering from Compulsive Reorganization Disorder solve fragmentation? Or is it just a waste of resources?
    Sybrand Bakker
    Senior Oracle DBA

  • What kind of content would you want to see on a vendor blog?

    Doughnut Destroyer wrote:
    For blog posts I prefer general IT information. I don't usually categorize How-To's and Videos as a blog post. Do you think it's acceptable for a blog to link to a Video or to have a few links of text and a video?
    Personally, on a blog I like a few how to's, information on the company and most importantly? Exposure of bugs and issues. If something in the product is broken then TELL US. If a patch comes out, TELL US.
    So many places don't inform people when a patch or update is out.

    So we're planning out our blog posts and social media for Q3 and I just wanted to ask what kind of stuff from a backup company like Carbonite would you like to see?
    How-tos?
    Videos? 
    General IT information
    Tutorials?
    Lemme know
    Also I apologize if this isn't supposed to be in the backup forum...I didn't know where else to put it
    This topic first appeared in the Spiceworks Community

  • What kind of camcorder would you recommend for FCE HD 3.5?

    Hello everyone,
    I'm very new here and have been trying to search for the answer to my question without having to bug anyone, but now I am under the gun, as it were.
    I need to purchase something within a week and a half and would truly appreciate suggestions from anyone here. Here are a list of my questions and I hope you all will be kind of enough to help me. Thank you in advance.
    1- I would prefer a camcorder that records to a DVD, but if tape is way better, please let me know.
    2- I see that FCE does not support AVCHD. What other pitfalls are there to avoid in purchasing a camcorder that is compatible with FCE HD?
    3- My dream is to have a camcorder that can record in 24p, but can't seem to determine whether FCE HD can support it. Please help!
    4- Am willing to pay more for CCD sensor range - is this helping?
    5-Would like to shoot in 16:9 ratio and with lines of resolution of 720 and higher, this possible with FCE?
    5- With the questions above...what camcorder would you recommend?
    I know some of the camcorders that have these features are ranging from $900 to over $1,000 but would consider it a good investment for things I would like to do in the future.
    I hope the information I've given is enough for you all to give your suggestions. Thank you again.

    They are not bad - just unsuitable for FCE and all good editing programs.
    There are several totally different kinds of Digital Video - many people mistakenly think all "digital" is the same.
    DVD, Flash Memory or Hard Disk camcorders produce video in a version of the MPEG format.
    FCE etc. only handles video in the DV or QT format which is totally different from MPEG.
    One analogy would be to buy a diesel powered car and then find that all the filling stations in your area only had petrol (gasolene) pumps. Your car would be pretty useless !
    The only way MPEG can be used in FCE is by converting it to DV or QT which wastes time or money and results in slightly reduced quality.
    All these cameras are produced for the mass market (where the money is), to be used by people with no knowledge or interest in film-making or editing.
    Ian.

  • I will be going to the Dominican Republic to a resort and would like to know if I need an adapter for my mac and if so what kind and where would I get it.

    I will be going to a resort in the Dominican Republic and would like to know if I need an adapter or some kind of special plug for my mac.

    You won't need a power adaptor since the AC adaptor auto-switches, but you may need a wall socket adaptor such as in the World Travel Kit on the Apple Store or from AAA or some department stores' luggage and travel section.

  • HT201363 my husband received an email from Apple stating we needed new credit card information.  We had just gotten a new credit card and couldn't remember if we updated it or not.  What kind of questions would you ask for that? It may have been fraud?

    My husband received an email from Apple stating our account was frozen and we needed to update our credit information.  We recently got a new credit card and so went ahead and updated information.  They asked about mothers maiden name and social security information.  Now we are feeling skeptical.  Are these the kinds of questions Apple would ask?  Now all my information is out there and I can't even get a hold of a human being at support to answer any questions for me as to whether they sent this or not????? Help!!!!!!!!!!!!!!!!

    That email was a phishing attempt to get your iTunes account and payment details - iTunes accounts aren't 'frozen', and iTunes don't need your social security info.
    If your husband entered his card details then he should contact the card issuer immediately and get it cancelled and replaced.
    He should also change the password on his iTunes account e.g. via the Store > View Account menu option on his computer's iTunes or via http://appleid.apple.com
    If you still have the email then you could forward it to Apple : [email protected]

  • What kind of cord would I use to plug my new stereo into my iPad 4?

    My iPad is a 4 and my stereo is a new Sony MHCEC619iP 120 Watts Music System, and I can't find a cord to fit it anywhere.

    From everything I've read, this works with iPhone an iPad. The dock on top does not fit an iPad. theoretically, it would work  if you could get it to fit.
    You could try a Lightning extension cable like this: http://www.amazon.com/Lightning-Extension-Through-dockXtender-CableJive/dp/B00GP 08858
    Plug it in where you would dock the iPhone/iPod, then connect your regular Lightning cable between it and the iPad.

  • What kind of problem would lead to the error?

    the error is Internal Servlet Error, the description is " Cannot create bean of class". Please tell me the possible cause, thanks a lot!

    Ok, this maybe useful for the people who have the same problem: http://forum.java.sun.com/thread.jsp?forum=45&thread=162685

  • What kind of laptop would recomend for InDesign CS5?

    I am trying to buy a Toshiba Laptop Satellilte P750-BT4G22
    Intel Core i7, 1G NVIDIA, 6GB memory, 640 GB HD
    Would this work for InDesign CS5?

    Any laptop really would work. Your laptop seems more than capable. It helps if it has a nice processor and a good amount of ram, which you do, but I have found InDesign is rather friendly
    and most people can run the software easily. Also, screen size may matter to you for ease of use.
    Here are receomended specs for InDesign from Adobe:
    Windows
    Intel® Pentium® 4 or AMD Athlon® 64 processor
    Microsoft® Windows® XP with Service Pack 3 or Windows 7
    1GB of RAM (2GB recommended)
    1.6GB (1.3GB for InCopy) of available hard-disk space for installation; additional free space required during installation (cannot install on removable flash-based storage devices)
    1024×768 display (1280×800 recommended) with 16-bit video card
    DVD-ROM drive
    Adobe® Flash® Player 10 software required to export SWF files
    Some features in Adobe Bridge rely on a Direct X 9-capable graphics card with at least 64MB of VRAM

  • What would cause a subvi to show its FP even when it is set not to show (default setting)?

    I have a subvi that suddenly decided to show itself even when instructed not to.  What kinds of things would cause this?
    Thanks!
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
    Solved!
    Go to Solution.

    altenbach wrote:
    Does it still do it if you place the subVI into a new, blank VI? If so, can you attach the subVI?
    Hi, Alt:
    It seems to work fine when placed into a new VI.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
    Attachments:
    badly behaving VI + subvis.zip ‏171 KB

Maybe you are looking for

  • IMovie Preview Not Working since latest Firmware Update (11/14/2006)

    I was working on an iMovie project without incident until an automatic Firmware update was completed. Since the update, the editing preview function of iMovie is a black screen. The movie plays, but when you attempt to edit the Ken Burns effects, etc

  • DMS server installation

    Hello All, I understand that DMS is part of ECC 6.0. However I have noticed in some threads a seperate content server is also installed. Could you please clear me the following doubts? 1.Do we need to install any other component like SAP content serv

  • Is this true?? NTSC dvd projects will play in PAL players

    From The "Unofficial" imovie FAQ http://www.danslagle.com/mac/iMovie/tips_tricks/6017.shtml States: The good news is: You can just send an NTSC disc. Any PAL set top DVD player capable of playing DVD-R discs can also play NTSC discs. All that is need

  • Adapting 2100m Laserjet to wireless

    Is there any way to adapt an old, but still perfectly functioning 2100m Laserjet to connect to a router via ethernet so it may be used, wirelessly? Long ago, I successfully did the conversion so that it can connect to laptop via USB and that works pe

  • How long is the wait for uptodate program?

    I bought a macbook pro on 23rd July which is after Lion release, and it still shipped with Snow Leopard. Applied to the "uptodate" program on 24th, and it is now 1st of august! Nine days and waiting, and no response at all. What am I suppose to do?