Memory Drain in 10.6.5

Hi all. I have a 2006 macbookpro running 10.6.5. I only have 2gb ram (maxed :() and am dealing with an issue with memory going missing as I work. When i first boot, I have 1.5gb available. If i open a program, it drains ram depending on the program's needs, but when i close it, it does not give all the ram back. For instance: i open firefox, it takes 100mb of ram, but on close only 50mb goes back to "Free" ram in Activity Monitor. It does this with all programs. After about 3 hours of use, I will have about 50mb of ram left (after having used cs5, firefox, coda, ect)
It seems to maybe be a buildup of many small processes taking about 30-50mb each. Also, I don't ever seem to see any Page Outs or Swap Used - they are always at 0. What are these for and why aren't they used?
Has anyone encountered this or know of a solution? Any help or tips at this point would be huge!!!
Message was edited by: maiku.emon

ahhh i see. thanks.
i found this link explaining it in detail:
http://support.apple.com/kb/HT1342?viewlocale=en_US

Similar Messages

  • Iphone memory drain due to exchange: help

    For a month a thought I solved this problem, but than it came back. Now I am without solutions and hope some genius here can help me.
    Three months ago my iphone started with serious problems:
    - battery life went down from 2 days to 6 hours
    - apps crashed (all kind of apps)
    - and email stopped working properly: e.g. I deleted emails, closed the mail app and after opening it the same emails where there, unread.
    I tried everything: soft reboot, hard reboot, reinstalling factory settings and putting back apps one by one, as a habit delete all open apps regularly, and I checked all possible settings which are known for battery drain. Apple support and the cell-phone store all said it was probably a hardware problem, and I had to send in my iphone/buy a new battery/...: costs: lots of euros.
    But I could'nt believe it was a hardware problem, so keeped on looking for the problem.
    Finally I found it. I deleted my exhange account and installed it again and : what a releive: all worked well again!!! Battery life back to 2 days, apps don't crass, email works properly.
    All keeped on going very well during 3 weeks.
    Than battery and email problems slowly started to appear again. Like last time, it gets slowly worse.
    When I open the mail app, the little turning wheel icon next to the battery percentage is turning continously. When I delete the Echange account and only use my Gmail and Hotmail account, that little wheel icon only turns up for a few seconds, but with the Exchange account installed it stays there continuously.
    I reinstalled Echange many times but it does not solve it. The strange thing is that when I go to Settings > Email > Accounts-Exchange > "delete this account" it starts but does not finish, the message saying that the account is being deleted stays on forever.
    On this forum pages I saw one comparable problem description (https://discussions.apple.com/message/11852079?searchText=iphone%20memory%20drai n%20exchange#11852079). In their case the problem was the Exchange server. But my collegues with iphones do not have the same problem and also: how could it be the cause if it worked well for 1 year, and lately for 3 weeks, and then suddenly start giving problems.
    Anybody have a idea what I could do?
    Many thanks in advance!

    I too seem to be having a similar issue with my wifi on my new 3GS. I would notice that my wave bars are full and then would drop to half. Performance seems to be about the same, but this never happened in my home with my original iphone.
    What works to fix the issue, is turn off the wifi in settings and then turn it right back on. Boom, back to full wave bars. However once I go out of range and then return, the problem seems to reappear.
    I'm a bit stumped and may do the same with seeing the friends at the apple store.

  • Address book applescripting - slows computer via memory drain

    Hi,
    i've just got my new gleaming macbook pro - a return to mac after ~16 years. whew.
    I was a heavy user of categories and contacts in outlook - had two contact folders, A and B, with categories in each. Additionally for some categories there is a third field - location. In total there are 2500 contacts I deal with.
    To import my contacts was not trivial - i used little creatures O2M to bring over my messages, which worked well, but didn't give as great a result on contacts (lost a lot of fields). Then I used Abee on a csv file and found it was great - well worth the $10.
    I mapped my custom fields to related names custom fields.
    After a lot of reading i think that the best location for user defined fields (in my case group, category, and location) is as a custom named URL. This allows me to make Smart groups in address book to sort through these categories.
    So I wrote some applescript to move info from related names to URL fields. It steps through everyone in my address book and if the label "Group" exists in related names and the value is "B" then add a new URL and delete the related name label.
    The script is:
    tell application "Address Book"
    try
    repeat with this_person in every person
    set namestoremove to {}
    repeat with this_label in (get related name of this_person)
    if the label of this_label = "Group" and the value of this_label = "B" then
    make new url at end of urls of this_person with properties {label:"Group", value:"GroupB"}
    --properties of this_label
    set namestoremove to namestoremove & (id of this_label)
    --delete (related names of this_person whose id is id of this_label)
    end if
    end repeat
    repeat with name_id in namestoremove
    delete (related names of this_person whose id is name_id)
    end repeat
    save
    end repeat
    save
    end try
    end tell
    I have to acknowledge Trevor Harmon scripts for giving guidelines.
    I had to add the get statements to resolve properly the related names of the person
    The script works well on a small address book, but on the full book it slows to a crawl and stops.
    Of course I could re-import using abee - but that wont help me learn about address book scripts.
    Anyone see any problems that would cause the script to slow to a crawl? I assume its somehow consuming memory....

    Hello
    Accessing item in large list can be very slow in AppleScript unless appropriate coding method is used. Also the 'whose' filter can be very slow in filtering large collection of objects (though I doubt it is the case here).
    Anyway, you may try something like the script below which avoids the 'whose' filter.
    (NOT tested, for my environment is too for this.)
    --SCRIPT 1
    tell application "Address Book"
    repeat with p in (get every person)
    set p to p's contents -- # dereference the list item reference [1]
    tell p
    repeat with r in (get its related names)
    set r to r's contents -- # derefenence the list item reference [1]
    if r's label = "Group" and r's value = "B" then
    make new url at end of urls with properties {label:"Group", value:"GroupB"}
    delete r
    --delete related name id (get r's id) -- # alternative to the above [2]
    end if
    end repeat
    end tell
    --save addressbook
    end repeat
    save addressbook
    end tell
    [1] Dereferening the list item reference is costly operation in AppleScript.
    So dereferece it once (especially if it is used more than once in the iteration).
    [2] Use 'by ID' reference form if the 'delete r' does not work properly.
    (E.g., if r is in 'by index' reference form and there're multiple related names,
    'delete r' won't work properly due to changing index.)
    --END OF SCRIPT 1
    Or the following one which, in addition, implements a fast method to process large list.
    --SCRIPT 1a
    main()
    on main()
    script o
    property pp : {} -- # define large list as script object's property
    property rr : {} -- # idem
    tell application "Address Book"
    set pp to get every person
    repeat with p in my pp -- # use refenence to script object's property (i.e. my pp)
    set p to p's contents -- # dereference the list item reference [1]
    tell p
    set rr to get its related names
    repeat with r in my rr -- # use refenence to script object's property (i.e. my rr)
    set r to r's contents -- # dereference the list item reference [1]
    if r's label = "Group" and r's value = "B" then
    make new url at end of urls with properties {label:"Group", value:"GroupB"}
    delete r
    --delete related name id (get r's id) -- # alternative to the above [2]
    end if
    end repeat
    end tell
    --save addressbook
    end repeat
    save addressbook
    end tell
    end script
    tell o to run
    end main
    [1] Dereferening the list item reference is costly operation in AppleScript.
    So dereferece it once (especially if it is used more than once in the iteration).
    [2] Use 'by ID' reference form if the 'delete r' does not work properly.
    (E.g., if r is in 'by index' reference form and there're multiple related names,
    'delete r' won't work properly due to changing index.)
    --END OF SCRIPT 1a
    Hope this may help,
    H

  • Out of memory error in Illustrator CS5

    Giving me 'insufficient memory was available to complete the operation' when trying to place and image (jpg ~23mb) inside a .ai file which is just a few KB large.
    Laptop has 6GB physical RAM and 1GB virtual RAM.
    Any ideas how to get around it?

    I'm coming late to this issue, but my impression is that this is only the tip of the iceberg.  I've been experiencing multiple errors with my three Adobe products since moving from Win 7 to Win 8 (I did this so I could report to my clients -- the report is "don't do it!").
    All three products (CS5 for 32 bits, CS4 for whatever CS5 won't handle in a 32 bit system, and Acrobat XI) have worked in perfect harmony for a number of weeks.  When I moved to Win 8, I encountered a number of situations.
    The first was the one in this thread.  I would work on an image in PS5 and run out of memory when I tried to save it as a JPEG.  My guess was that the problem was not really in the saving, but in Adobe's method of conversion at the time of saving.  If I saved with the standard baseline, there'd be no problem; but if I saved with an "optimized" baseline, the insufficient memory message would appear.  Apparently, Adobe was trying to do too many operations at one time for the computer to handle.
    This is the result of poor programming.  Resource management is a priority when working with images, even moreso when we have moving images.  But I've seen no problem in my Premier4 application, so whoever coded that program knew what they were doing.  The first thing that needs to be done when working with intense memory-draining situations is to parse the operations to fit the amount of available working memory (RAM + fileswap - other resources in use).  In other words, fit the work assignments to the available working space.
    Why did this become an issue after I migrated to Win 8?
    My guess is that it was because I installed Win 8 over Win 7 and that Adobe neither checked for changes in memory allotment, nor did it make any allowances.  So the kind of distribution of workloads that allowed Adobe to be successful in Win 7 did not work in Win 8.
    Another failure of the company!
    These issues raise their head on a regular basis -- I noticed the problem go all the way back to Win XP (and maybe even Win 98).  All Adobe products should be designed to confirm their working environment at each boot-up; and if there is a change, then there needs to be a reaching out to the company's servers and an update that tells the products how to accomodate to that change.
    I said there were multiple problems.  The rest of these are all in the same category:  permissions.
    When I try to use the print>Adobe PDF method of converting a page in IE10 to PDF, it stops with the message that it does not have permission to access the folder in which I am trying to place it (I use folders outside the Windows "Documents" structure).  These folders are sometimes in other partitions, sometimes in external drives.  It makes no difference:  I am not allowed to save there.
    This is a problem perculiar to the circumstances.  For example, if I use the Adobe add-on to make the conversion, there is no problem -- I can save it anywhere.  Only if I use the print-through-Adobe-PDF option in IE.  It does not cause problems in Firefox.  It does not cause problems in MS Office 2010.  It does not cause problems in almost any other situation.  But it does in the Internet Explorer container.
    I said "almost" anywhere else.  I do get the same issue when I try to save a modified JPEG in Photoshop5 to my other partitions:
    And, again, I've read about this issue with earlier versions of Windows, so it doesn't seem to be a Win 8 issue, but rather an Adobe issue that arises when the product is carried through a migration to Win 8 from Win 7 (and perhaps from XP to Win 7 or Vista), instead of being installed in a fresh OS.
    Hope the data is useful.
    Michael

  • Can't figure out why my memory is full

    I have a MacBook Air 120g size memory running OS X 10.8.2.  I constantly get a message saying that my startup disc is nearly full.  I don't know what to do about that.  Second, when I try to locate the memory drain, I can't.  I see that I have 56 gig of photos and 10 gig of music.  But there seems to be about 45 gigs I can't account for. When I drill into a folder that says 100gigs are in it, each of the folders inside however all combine for half that memory space.  Any suggestions?

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB free on the startup volume for normal operation. You also need enough space left over to allow for growth of your data.
    Use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Launch the 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.
    Triple-click the line of text below to select it, then drag or copy — do not type — into the Terminal window:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Press return. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • Slow mac mini

    Mac Mini G4, 1.33 GHz 512 MB OS 10.4.11
    Has suddenly begun slowing down when I have been loading web
    pages. This occurred a day or two after I installed Apple's Sept. 15
    Security Upgrade.
    Also, I found a drop-down message in my network
    preferences that said "Your network settings have
    been changed by another application." This drop-down would not go
    away, preventing me from accessing any of my system preferences, a
    problem noted by many others in the discussions here. Based on
    advice found in the discussions here, I managed to delete the drop-down message after much hair-pulling, but I am now left with a computer that has slowed
    by about 20 percent.
    I have had a tech do cleaning,repairing, and troubleshooting with no appreciable improvement inweb-loading speeds. Do you have an answer for me? Are there others experiencing this slowdown after the Sept. 15 Security Upgrade?
    Would uninstalling my Sept. 15 upgrade bring my system back to is
    earlier speeds? Help!

    Hi, Andy-
    I will do my best to answer your questions. Thanks for you help.
    Thanks for getting back to me.
    The primary web page loading issue is: when I attempt to launch a page, it consistently pauses from 10-20 seconds or longer before a 3/4 partial page snaps up on the screen, then takes more time (often 15 seconds or more) to fully load. This did not occur before the Sept. 15 security update; I could navigate smoothly from web page to web page.
    A tech cleaned my caches, reset Safari, ran MacHelp mate, checked preferences and permissions for corruption via Utility, ran auto-maintenance scripts and went to Activity Monitor to see if any
    applications were putting an unusual CPU or memory load on the system during startups (none appeared to be, Safari's maximum load around 40-60 CPUs as it initially struggled to load a page).
    The Mac Mini is less than three years old, and I don't run games or other memory-draining applications.
    I hope this helps you help me.

  • Mavericks MAJOR Issues - HELP URGENT

    Dear Sir,
    First of all below is my Macbook Pro specifications: 
    Processor 2.2GHz Intel Core i7
    Memory 16GB 1333 MHz DDR3
    Graphics Intel HD Graphics 3000 512MB
    Hard Disk 750 GB
    Software OS X 10.9
    Second below are my issues after Upgrading to Mavericks:
    1 - A REALLY noisy FAN while working on my macbook editing a single picture with PS CC or Lightroom.
    2- Inactive Memory drains my Memory Usage and I Slows down my laptop.
    3- I cannot Preview my Picture folder "All at .TIF format" Like before thus i have to Open them Via Preview which is taking ALOT Of time or via "Preview" - Yes all my TIF files are opened via Preview as a Default program but yet the Thumbnails not showing the preview pictures even though i have the tick on "Show Icon preview" .
    My Macbook pro is only 1 year old and i am really annoyed with all this as i have spent a huge MONEY on it! please i need help regarding the 3 issues above!

    Dear Sir,
    First of all below is my Macbook Pro specifications: 
    Processor 2.2GHz Intel Core i7
    Memory 16GB 1333 MHz DDR3
    Graphics Intel HD Graphics 3000 512MB
    Hard Disk 750 GB
    Software OS X 10.9
    Second below are my issues after Upgrading to Mavericks:
    1 - A REALLY noisy FAN while working on my macbook editing a single picture with PS CC or Lightroom.
    2- Inactive Memory drains my Memory Usage and I Slows down my laptop.
    3- I cannot Preview my Picture folder "All at .TIF format" Like before thus i have to Open them Via Preview which is taking ALOT Of time or via "Preview" - Yes all my TIF files are opened via Preview as a Default program but yet the Thumbnails not showing the preview pictures even though i have the tick on "Show Icon preview" .
    My Macbook pro is only 1 year old and i am really annoyed with all this as i have spent a huge MONEY on it! please i need help regarding the 3 issues above!

  • LR4.2 Can't do any edits in Develop?

    I'm selecting my photo (and it doesn't matter if I choose from Collections or Folders) and then go to Develop and none of the right hand panel will work. I can't select basic, tone curve, detail, -  nothing slides or moves not even the slider (that moves the panel up and down on the very right hand side). If I shut down LR and then come back in again it works. Has happened several times. I'm only using the trial version but wondered if that might be it.
    Could there be a lock button I'm pressing some how?
    Maybe this is a bug?

    @Ronald,
    I'm glad to know that you can get by on only 120 GB .  However, that's not my experience on Windows.  Admittedly, Mac and Mavericks in particular seem to manage memory a lot better than Win.  But I've been using PS since ver 4 and it's always been a huge memory drain. 
    In CS6, I'm finding my scratch disk often exceeds 100 GB.  I have dedicated almost 300 GB to mine and it's still not enough for everything I do. But I know how to manage my resources so I can get by on what I have until new computers arrive.
    Nancy O.

  • Will Apple do a Logic Board Replacement?

    I have a 2.16 C2D Merom Blackbook. Because of the way Leopard hogs ram, the original 2GB capacity (I currently have 1) may not be enough soon. I am going to switch to the Blackbook from a 4 year old PC as my main machine in 6 or 8 monts.
    My question is: does anyone know if Apple will replace the logic board in my Macbook with a new one with Santa Rosa and a 2.6 C2D for the regular fee as it just bit the dust (I am assuming the processor is permanently attached to the logic board, otherwise I would keep the current 2.16 C2D? I am guessing it would be >$300, but it would probably be worth it to get a Santa Rosa logic board, 4 gigs of corsair ram and a 250GB hard drive.
    Also, does anyone know if the pre Santa Rosa Macbook will support 3GB of ram, as the chipset supposedly supports it, even though it would break the dual-channelness?
    EDIT: Forgot to say its Parallels that is the real memory drain that could drive me to need 4 gigs of ram. MacOSX, Windows XP and Ubuntu at the same time would be sweeeeet!
    Message was edited by: BiggAW

    BiggAW wrote:
    My question is: does anyone know if Apple will replace the logic board in my Macbook with a new one with Santa Rosa and a 2.6 C2D for the regular fee as it just bit the dust (I am assuming the processor is permanently attached to the logic board, otherwise I would keep the current 2.16 C2D? I am guessing it would be >$300, but it would probably be worth it to get a Santa Rosa logic board, 4 gigs of corsair ram and a 250GB hard drive.
    Only Apple can tell you that.
    Also, does anyone know if the pre Santa Rosa Macbook will support 3GB of ram, as the chipset supposedly supports it, even though it would break the dual-channelness?
    They support 4 GB the regular c2d could use 3gb and the original cd 2 gb.

  • Introduction & seeking advice

    Hi all, I am new here and have been working with Logic now for about 1 month. I have experience with Digital Performer and sequencing using outside gear, but I admittedly I am pretty new to this whole running everything through the computer business.
    I am having issues with Logic in two ways:
    1) core audio overload
    2) running out of memory (only has happened loading 6 instruments through eastwest symphony gold pack, NI)
    3) Upgrading Logic & OS
    Here is how everything is set up. perhaps someone can guide me as to how to best place instrument libraries, configure core audio, propper ram, hard drives.. all that great stuff:
    G5 Dual 2GHz (about 2.5 years old)
    3.5 gigs of RAM
    OS 10.4.11 (Tiger)
    Logic 7.1.1
    Main hard drive is 200gigs: has logic, and other plug in apps on it (Ivory, eastwest Symphony Gold, Ministry of Rock, Stylus RMX)
    Auxilary hard drive is a 800 firewire raid drive (500 gigs): has all the sounds for the aforementioned programs plus real guitar 2
    1) Core Audio overload: On one song, I completely overloaded the system using all the plug ins. Bounced them to disk condensing 15 core audio instrument tracks to 5 audio tracks. System still gets overloaded. When I boot the program, I see Logic is loading all the audio units for the plugins I have, even though I have deleted those tracks and bounced them all to audio. So what am I doing wrong?
    2) Running low on memory - running 6 instruments (a couple of the multis) I ran into a message saying I am running low on memory. I understand I can bounce these tracks and relieve the computer from the memory drain of running all those instruments.. but is it normal for this to happen with 6 instruments loaded? Would more RAM help?
    My version of that software from NI is 1.0.3.0010. Maybe I should update it?
    3) I have the Logic 8 upgrade, but I fear installing it. I have a project that needs to be done this week, and am afraid of plug in incompatability, sequences not loading properly, OS incompatability, etc...
    Do I need to upgrade my OS? Should I be running panther?
    What's better about Logic 8 that I need to move up from 7.1.1 (salesperson told me better multiprocessor support)? Will Logic 8 work better with my plug ins?
    Thanks in advance for all your help. Also, if anyone here has some suggestions of sites to visit, or other threads to read where using Logic effeciently is discussed, that would also be helpful. Something like: 20 top time saving tricks for Logic. This is all new to me, I am used to outboard gear, everything working, and not sounding quite as nice as the software does. I am kinda hooked on these plug ins now, and want to make them work as good as possible.

    To try to offer an opinion on a few of your points:
    You should upgrade to at least 7.2+ (if you can find it) as there were a ton of bug fixes. I'd go for Logic 8+, as I've found it very stable running on my machine with 10.4.11.
    When I boot the program, I see Logic is loading all the audio units for the plugins I have, even though I have deleted those tracks and bounced them all to audio. So what am I doing wrong?
    If you're referring to the start up screen, it's the audio units manger checking your plugs and is quite normal. It doesn't mean that they are being loaded - that only happens when you select them in a channel strip.
    3.5 gigs of RAM
    That's OK - I had 4 and then went to 8 GB. It helped with the overall OS and running other apps. at the same time as Logic, such as Melodyne studio. So more RAM, although useful, isn't going to help Logic that much. But it's cheap these days…
    If you use EXS24 a lot, in Logic 8 more RAM definitely helps, as this release includes a workaround to allow more memory to be used. I believe for this to work you need at least 5GB.
    Main hard drive is 200gigs: has logic, and other plug in apps on it (Ivory, eastwest Symphony Gold, Ministry of Rock, Stylus RMX)
    Good
    Auxilary hard drive is a 800 firewire raid drive (500 gigs): has all the sounds for the aforementioned programs plus real guitar 2
    That's your samples drive and is a good thing.
    If you're using audio tracks, or are rendering instruments to audio, you should consider a separate audio drive (at least Firewire) for your projects, and only use it for your projects. That should help performance.
    but is it normal for this to happen with 6 instruments loaded? Would more RAM help?
    Depends how complex and resource hungry your instruments are. As I don't use those instruments, I can't tell you, other than anecdotally some are CPU and memory hogs.
    I have a project that needs to be done this week, and am afraid of plug in incompatability, sequences not loading properly, OS incompatability, etc...
    Never, ever perform any major upgrades in the middle of a project. Once you have some time, then I'd upgrade to Logic 8.
    Do I need to upgrade my OS? Should I be running panther?
    I guess you mean Leopard. In my opinion, no. I've held off upgrading to 10.5 on my production machine, although I do have Leopard installed on a new 8-Core and it's running (sort of), but I have to say that the level of reliability is not up to my PPC machine running 10.4 (which for me is rock solid) and the overall experience is rather disappointing so far.
    As far as tips go, read this forum (and others, like LogicProHelp) and search for keywords such as 'core audio' This will give you hours of reading.
    Here's a tip doc. that might help regarding your performance issues.
    http://docs.info.apple.com/article.html?artnum=304970

  • I can't do any edits to my photoshop project because it says scratch disk is full when I have 50gb free!

    My scratch disk is pointed to the C drive(the only drive I have at the moment). When I open photoshop it makes  a 64gb Temp file! that leaves me with 50gb free but whenever I go to make a change or add text it says scratch disk is full! Help please!!

    @Ronald,
    I'm glad to know that you can get by on only 120 GB .  However, that's not my experience on Windows.  Admittedly, Mac and Mavericks in particular seem to manage memory a lot better than Win.  But I've been using PS since ver 4 and it's always been a huge memory drain. 
    In CS6, I'm finding my scratch disk often exceeds 100 GB.  I have dedicated almost 300 GB to mine and it's still not enough for everything I do. But I know how to manage my resources so I can get by on what I have until new computers arrive.
    Nancy O.

  • How much ram can be downloaded from the ITunes store using 3G?

    I'm wanting to download some music apps/composing programs and wasn't able to download one because of 3G size/ram restrictions. I don't see any place on the app info site that tells me about the size, so I don't know until I'm actually downloading whether I can download or not. Is there a way to tell the size of the app if it's not posted on the ITune store? I'd rather not do partial downloads. ITunes was kind enough to get rid of Pages and I Am Symphony for me.
    Another related issue because it's about a music app: It gave me a prompt when I first tried to. use it that I didn't have enough memory. I knew that couldn't be right since I have the 64g/3G/wifi model, so I ditched that app.
    Is this what you can memory drain? I read about that on this forum? what's the best thing to do for that? restart? or did I do the right thing by ejecting the app?

    Regards the size of apps the actual size of the apps is listed on iTunes
    Secondly you seem to be getting storage capacity/app size mixed up with RAM. They are two different things. The 64GB you have on your iPad is for actual storage of content whether it be apps, books, music, podcasts, video etc. RAM is the volatile memory that is used during the running of the iPad including the apps.
    The system requirements including the amount of RAM needed to run are not simply because unlike computers all iPads are the same regards the internal system specs. The only differences being the actual storage capacity and whether they have 3G capability or not.
    If you get an error message regards lack of system memory or RAM then doing a reset may help clear this problem. Unfortunately some developers do not optimise their apps properly for the iPad and it's not the first time an app has not run or crashed due to a lack of RAM. The best thing to do is to report it to the developer using the link on their iTunes app page.
    Regards memory leaks these do occur with both software on computers as well as apps on the iPad and iPhone. These are also due to badly designed apps or software and would need to be fixed by the developers.
    Edited by: Mr.C UK

  • Potential maleware

    I updated adobe reader to XI, from the automated updater program, and it installed a .exe file named "iobroltncb" in the directory "C:\Users\xxxxx\AppData\LocalLow\Adobe\Aklngjlpmm".  it keeps opening 20 instances of google chrome processes, and when i end the process, it opend them all again.  I don't even use google chrome.  it keeps slowing my computer down by acting as a memory drain. I run a windows pc with windows 7.  I have removed all adobe programs from my pc.  and I'm still trying to clean up my computer.

    What is the "automated updater program"?  What Reader version did you have previously?

  • MacBook user attempting to update to Snow Leopard

    I have a MacBook running OS 10.5.8 and have bought Snow Leopard to update. Clicking the install cd brings up a message saying i can't install as i don't have enough Ram. I've removed iPhoto and iTunes but i still get the same message. There's no other large memory-draining files on my system so I can't understand why install isn't straightforward? What can I do?
    My reason for updating OS is so that I can also install iLife11 and import photobooth music clips into iMovie and edit them.
    Any help or advice would be much appreciated. Thanks Mike

    You need a minimum of 1GB of RAM memory and 5GB of hard drive space. Click on the apple on the left of the menu bar, click about this mac, and it will tell you how much RAM memory you have. This is the memory programs run in. If it's 512MB, you'll have to add more before installing. Recommend Crucial (www.crucial.com) or OWC (www.macsales.com).
    On your hard drive, after you look at RAM memory, click more info, on the left click serial-ATA, then click on your hard drive. That will tell you how much hard drive space you have available. (Or if your hard drive icon is shown on your desktop, highlight it then click command and i ) If it's less than 5GB, you need to free up space, and ideally should keep 10%-15% of the hard drive free for systems usage. This FAQ may help: http://www.thexlab.com/faqs/freeingspace.html

  • Since the last update of firefox, the time has been 25 to 35 seconds to enter bookmarks or even the time it takes to page down when it used to take a few seconds. can you check why it taking so long since the update on firefox.

    since the last update a few days ago of firefox, the time has been 25 to 35 seconds to enter bookmarks or even the time it takes to page down when it used to take a few seconds. can you tell me why it taking so long since the update on firefox. may another update is in order.

    I have now done pretty much every suggestion that even vaguely applies in the various helpful link provided. Thanks for the ongoing help. =)
    I have managed to get FireFox's start-up memory usage down to about 100,000K, however it appears that memory usage keeps creeping up the longer FireFox is open. (It seems to top out around 500,000K.) And I'm not talking open for many hours or days - but rather for minutes and possibly up to a couple hours. (Based on how long I've been fiddling with all this so far.)
    On the plus side, it does not appear GreaseMonkey is the culprit since with it active or disabled this memory creep still occurs. Although having GreaseMonkey enabled definitely increases the rate of memory creep. Though once it has creeped up to 150,000+K, disabling GM does not make it drop back down to the starting 100,000K.
    I should point out I run a MacBook Pro and use Bootcamp to partition the hard drive and run it as a Windows 7 PC about half the time. I am running it literally as a PC or, alternately, as a Mac depending on which hard drive I choose to load. (I'm not "windowing" it.) This problem exists regardless of whether I am using the PC or the Mac. These repairs have been made currently on the PC side, and I will attempt them all again on the Mac side. I find it odd that this enormous memory drain has occurred on 3 different computers at the same time. (The two "halves" of my home laptop as well as the PC at my work place.)

Maybe you are looking for

  • Can't create a folder

    Can't create a folder is the message I get when using the extension manager CS4. Any help would be appreciated.

  • Query reg Variable Substitution with enhanced interface mapping

    Hi All,   The scenario is IDoc to file using enhanced interface determination (message split based on some conditions) and the output file name should be based on a field value in the  IDoc. So, I've tried using Variable Substitution Option in the re

  • Concurrent manager is taking too much time....

    Hi All, we submitt a concurrent request last month it compleated in 335min. Now the same request is taking 7 hours. what can i do, our production is going on live in june its the error in wrong time, we tryed it for 3 times.. every time its taking 7

  • Power supply voltage upper-non-recoverable

    Hello, One of our customers is seeing the following errors occur intermittently across all 4 power supplies in their chassis. They are running 2.0(2q). The chassis is powered via an APC UPS and PDUs, and there are no power events or alarms from withi

  • Chrome using plugin

    Does the Quicktime plugin still support MIDI files within the browser? all I got when i tried to play the file was the QT logo with a question mark on top! thanks