Exhaust of HostOS (Windows8.1) memory

Hello.

I have problem memory with VMware Workstation 11 running on Windows 8.1. The PC has 8 GB of physical memory and 2 GB is assigned to the guest OS. While running Linux (CentOS) as a guest, the use of physical memory that is displayed in resource monitor increases gradually.


That happened were the following.

  1. Just after the start of the guest OS, the physical memory usage is around 40%. Has this time, the memory of the working set of vmware process is approximately 2GB.
  2. The physical memory usage increases gradually, but the working set does not increase.
  3. After about 3 weeks, use becomes something like 97%.
  4. For the status in detail, VMware Workstation process is stopped. Then, the use of physical memory was something like 82%.
  5. Restart the guest operating system fails with the message "not enough of physical memory" line.
  6. In this State, the only way I found to recover was to restart Windows.


Above does not occur when the guest operating system is not running. I can't find the processes that use the increase in the use of physical memory.

It looks like VMware Workstation is the Windows application for the use of the memory leak. Is anyone know about this problem? I would like to know how to solve this problem.

Thanks in advance.

To be precise, is vmware.exe process leaks memory or vmware - vmx.exe process memory leak? And what are you doing in CentOS comments when there is leak memory? Thank you!

Tags: VMware

Similar Questions

  • Lose packets using winpcap

    Hello

    I'm working on a LabVIEW application to view our telemetry data.
    These data are sent over ethernet using UDP and has a payload of 1 332 bytes. The framerate is 6720 packets per second.

    To work with this data rate I put sockets UDP receive exactly the size of the packets multiplied with the payload buffer ( http://digital.ni.com/public.nsf/allkb/D5AC7E8AE545322D8625730100604F2D ). Increasing or decreasing the buffer will lead to errors and one or several packages will be lost.

    However, I'm still a few packages.

    Now, I tried to use the Ethernet Packet Sniffer example ( http://zone.ni.com/devzone/cda/epd/p/id/2660 ) and changed the Example.vi to verify our internal counter of packets in each package. I was happy to see that no packets were lost! But, after adding the VIs Sniffer to my request for loss of massive packets occurs. :-(

    Then, I moved the acquisition work in the wrapper DLL. The function below is called with a 1 d of pre-initalized channels table. The allocation of memory in this way is done in LabVIEW.

    / * LabVIEW created typedefs * /.
    typedef struct {}
    dimSize of Int32;
    LStrHandle LString [1];
    } TD1;
    typedef TD1 * TD1Hdl;

    EXTERNC EXPORT int32 lvwpcap_read_n_packets (uInt32 pcap,
    uInt32 * tv_sec;
    uInt32 * tv_usec;
    uInt32 * capture_len,.
    TD1Hdl capture_data)
    {
    struct pcap_pkthdr * header;
    const u_char * data;
    Int32 array_size, string_size, i.;
    Int32 retval = 1;
    Int32 errors.
    LStrHandle TempString;

    Errors = 0;
    ARRAY_SIZE = (* capture_data)-> dimSize;
    TempString = (* capture_data)-> LString [0];
    string_size = (* TempString)-> cnt;

    * tv_sec = array_size;
    * tv_usec = string_size;

    for (i = 0; i< array_size;="" ++i)="">

    retval = pcap_next_ex ((pcap_t *) OCAP & header, &data);)

    If (retval > 0) {}
    * tv_sec = header-> ts.tv_sec;
    * tv_usec = header-> ts.tv_usec;
    * capture_len = header-> Caron;

    TempString = (* capture_data)-> LString [i];

    avoid the expensive memory allocation.  assumes that the string is at least 64K
    (or whatever it is we set the size max with our init call.
    memcpy (LStrBuf(*TempString), data, header-> Caron);
    }
    else {}
    i-- ; In the case of timeout right pointer to avoid skipping entries in the table
    Errors ++;
    If (error > = array_size) {}
    Returns - 1;
    }
    }
    }

    * tv_usec = errors;
    Return retval;
    return errors;
    }

    The problem: I have also now lose packets! Not on every call to this function, but in a way regularly (in on every third call).
    What am I, am I doing wrong to acquire say 800 packages at once without losing a single?

    Is there anyone with the same problems using winpcap?

    UDP packets are sent by our material and the PC is connected directly via a crossover cable.
    I'm using LabVIEW 8.5 and WinPcap 4.1.2.

    Thanks in advance for your reply,

    Thilo

    Paul has best suggestion at this point; loops parallel, combined with queues to create an architecture of producer/consumer.

    For an example, see here.

    In the upper loop of the example, you will place a UDP, or even reading your SUB_Collect_Data.vi. The output data would be placed in the queue.

    The lower loop could extract something (your cluster TC Stream) and perform the FFT and UI updates.

    The queue allows the decoupling of processing data acquisition. The top loop withdrew the UDP connection data without stopping to process or display data. The lower loop removed data out of your queue as fast it can run and perform your presentation FFT/AC.

    Note that a queue is up to be exhausted of your system's memory. Using a queue does not relieve you of the treatment of data in some time, but it allows you to take greater advantage of the capabilities of LabVIEW parallel / multiprocessor.

    Search the knowledge base and of producer/consumer forums and you will find many examples...

  • Cursor Bulk Collect

    Hi all
    I have a doubt about cursor in block collection. Both versions work correctly.

    1st Version: 
    DECLARE
      CURSOR c1 IS (SELECT t2 FROM test10);
      TYPE typ_tbl IS TABLE OF c1%rowtype;
      v typ_tbl;
    BEGIN
      OPEN c1;  
        FETCH c1 BULK COLLECT INTO v;
      CLOSE c1;
      FOR i IN v.first..v.last
      LOOP
        DBMS_OUTPUT.PUT_LINE(v(i).t2);
      END LOOP;  
    END;
    
    2nd version: 
    DECLARE
      CURSOR c1 IS (SELECT t2 FROM test10);
      TYPE typ_tbl IS TABLE OF c1%rowtype;
      v typ_tbl;
    BEGIN
      OPEN c1;
      LOOP                                                 --Loop added
        FETCH c1 BULK COLLECT INTO v;
        EXIT WHEN c1%NOTFOUND; 
      END LOOP;
      CLOSE c1;
      FOR i IN v.first..v.last
      LOOP
        DBMS_OUTPUT.PUT_LINE(v(i).t2);
      END LOOP;  
    END;
    Is it necessary to have a loop and exit the statementwhen notfound cursor used with bulk collect?

    Published by: SamFisher February 14, 2012 13:26

    SamFisher wrote:
    for idx in (SELECT FROM test10 t2)
    loop

    end loop;

    But in doing so, context switches will be more aint't it?

    Yes, you will need to switch between SQL and PL/SQL, which is one of the penalties you pay to use the PL/SQL when SQL is necessary (don't tell is your case here, just a generality). However, that there are compromises. Memory is a limited product, it is expensive and you do not have an infinite amount. It is not as effective to spend many thousands of records in memory and then apply to processes that together, if you bulk load a bit, process a little you avoid exhaust any given resource (CPU, memory, etc...).

    As I said, Oracle will use a fetch array of 100, instead of X, where X is the number of records your query when you use a bulk collect without LIMITS. If you had to carry 10 000 magazines across the room, do you think you would sooner do 100 at a time and do a lot of travel or find a way to carry all the 10,000 in a trip?

    If you are interested in the analysis comparative differences, set up a simple table and load 100,500,1000,10000,100000, etc... documents in it and see what look like processing times.

    For versatile use, the implicit cursor loop wins hands down for each perspective (my opinion). Yet once again, assuming that you NEED pl/sql at all.

    Published by: Tubby on February 14, 2012 11:41

  • Bulk collect and inserts

    Hello, I'm quite new to PLSQL and need some advice...

    I have several procedures that work well and do what I want to do.

    My question is, am I'm going in the right direction or would you all another way? If there were millions of records that would be the fastest way?

    All comments/comments would be greatly appreciated.

    Procedure 1:

    declare

    type membera is the table of the gym_members_payment_details.member_id%type;
    payment type is the gym_members_payment_details.payment_plan%type table;
    type date_payment_recieved is table of the gym_members_payment_details.date_payment_recieved%type;

    v_member membera;
    v_payment payment;
    v_date_payment_recieved date_payment_recieved;
    date of v_date_due;

    cursor c1 is select member_id, payment_plan, gym_members_payment_details date_payment_recieved;

    Start

    Open c1;

    collect the fetch c1 into bulk in v_member, v_payment, v_date_payment_recieved;

    Close c1;

    I'm in v_member.first... v_member. Last

    loop



    If v_payment (i) = "daily" then update gym_members_payment_details set date_payment_due = v_date_payment_recieved (i) where member_id = v_member (i);
    elsif v_payment (i) is "weekly" then update gym_members_payment_details set date_payment_due = v_date_payment_recieved (i) + 7 where member_id = v_member (i);.
    elsif v_payment (i) is "monthly" then update gym_members_payment_details set date_payment_due = v_date_payment_recieved (i) + 30 where member_id = v_member (i);.
    end if;


    end loop;

    end;

    Procedure 2

    declare

    Bench type is the gym_members_lifts.bench_kg%type table;
    squat type is the gym_members_lifts.squat_kg%type table;
    type of death is the gym_members_lifts.deadlift_kg%type table;
    type membera is the table of the gym_members_lifts.member_id%type;
    type bodyw is table of the gym_members_lifts.body_weight_kg%type;

    V_bench bench;
    v_squat squat;
    v_dead dead;
    v_body bodyw;
    number of v_total;
    number of v_ratio;
    v_member membera;

    cursor c1 is select bench_kg, squat_kg, deadlift_kg, member_id, gym_members_lifts body_weight_kg;


    Start

    / * bulk collect * /.

    Open c1;
    collect the fetch c1 into loose in v_bench, v_squat, v_dead, v_member, v_body;

    Close c1;

    / * Update gym_members elevators table with combined lifts and body weight to lift rates rounded to 2 places * /.

    I'm in v_member.first... v_member. Last
    loop


    v_total: = v_bench (i) + v_squat (i) + v_dead (i);
    Update gym_members_lifts set total_lift_kg = v_total where v_member (i) = member_id;
    v_ratio: = round ((v_bench (i) + v_squat (i) + v_dead (i)) / v_body (i), 2);
    Update gym_members_lifts set bodyweight_strength_ratio = v_ratio where v_member (i) = member_id;


    end loop;

    end;

    Published by: 882839 on November 29, 2011 14:25

    882839 wrote:

    My question is, am I'm heading in the right direction

    It depends on the type of film you make. Your direction may work for a movie comedy or a disaster, perhaps.

    or you would do any differently?

    Completely different.

    If there were millions of records that would be the fastest way?

    The fastest way is to do the absolute minimum of work to achieve the desired results.

    You do not have to shake the SQL data in a detour by the PL/SQL engine. Bulk processing is slow.

    While processing bulk is faster than 'normal' treatment - but for one reason only. Reduction in switching between SQL and PL/SQL engines.

    The cost of treatment in bulk increases PGA - using more private process memory (the most expensive type of memory of the server). More extraction in bulk, the PGA TOUR more is consumed. Very large bed can crash the Oracle db server to the risk of exhausting all the free server memory and give rise to serious swap space trashing.

    And that's all. Treatment in bulk does not run the SQL cursor all faster. Treatment in bulk does not reduce the IO very expensive and slow. There is no that activate more lines have to be extracted from the SQL cursor by context switch and thus reduce the change of context.

    In this regard, what is optimal? No change at all in context.

    How is this achieved? No treatment in bulk. It is obtained by eliminating the need to change entirely in context. This means no PL/SQL. This means that SQL.

    Optimize SQL. Minimize the PL/SQL.

    Do not use the PL/SQL engine to do the things that the SQL engine is perfectly capable of doing.

    Simplistic example in the sense of your first PL/SQL procedure:

    SQL> create table foo( id number, payment varchar2(1), due date );
    
    Table created.
    
    SQL>
    SQL> insert into foo select level, 'D', null from dual connect by level <= 5;
    
    5 rows created.
    
    SQL> insert into foo select level+5, 'W', null from dual connect by level <= 5;
    
    5 rows created.
    
    SQL>
    SQL> update     foo
      2  set        due = (
      3                  case
      4                          when payment = 'D' then trunc(sysdate+1)  --// daily payment's due date calc
      5                          when payment = 'W' then trunc(sysdate+7) --// weekly payment's due date calc
      6                  end
      7          );
    
    10 rows updated.
    
    SQL>
    SQL> select * from foo;
    
            ID P DUE
    ---------- - -------------------
             1 D 2011/12/01 00:00:00
             2 D 2011/12/01 00:00:00
             3 D 2011/12/01 00:00:00
             4 D 2011/12/01 00:00:00
             5 D 2011/12/01 00:00:00
             6 W 2011/12/07 00:00:00
             7 W 2011/12/07 00:00:00
             8 W 2011/12/07 00:00:00
             9 W 2011/12/07 00:00:00
            10 W 2011/12/07 00:00:00
    
    10 rows selected.
    
    SQL>
    
  • App memory exhausted

    Recently updated to El Capitan. Given that do so Safari freezes, don't leave unless forced and "app memory exhausted" appears frequently. Re installed OS X 10.11.2. No solution! MacBook Pro, end of 2013, 2.3 GHz Intel Core i7, 16 GB of RAM. Help!

    Please, back up all data before proceeding.

    Triple-click anywhere in the line below on this page to select this option:

    ~/Library/Safari

    A right click or Ctrl-click on the line and select

    Services ▹ Open

    the contextual menu.* should open a folder named "Safari". Quit Safari runs. One or more files in the open file must have a name starting in 'history '. Move these files and only those which, on the desktop, leaving the window open. Restart the application and test. If there is no change, leave again and put the files that you moved back where they were, crushing those who could be created in their place. If not, remove the files that you moved. The browser history will be empty. If possible, restore deleted files from a previous backup problem.

    * If you do not see the item context menu copy the selected text in the Clipboard by pressing Control-C key combination. In the Finder, select

    Go ▹ go to the folder...

    from the menu bar and paste it into the box that opens by pressing command + V. You won't see what you pasted a newline being included. Press return.

  • recently to message this application memory is exhausted when I use the same applications as always before

    iMac running OS 10.9.5, suddenly getting alerts that my application memory is running out / has run out; I use the same applications that I used throughout and never had these alerts. I close all except an application but still get the message. This just started happening.

    HI there are Selia,

    Looks like you get this error message concerning the exhaustion of the memory of the application no matter how little you actually run. I would like to start by resetting your PRAM first:

    OS X El Capitan: reset PRAM your computer

    https://support.Apple.com/kb/PH21876?locale=en_US

    1. Choose the Apple menu > shut down.

    2. Look for the following keys on the keyboard: Option, command, P and r. you need to hold these keys down simultaneously in step 4.

    3. Turn on your Mac.

    4. Immediately press on and hold down the command-Option-r-P. You must press these keys until the black screen with the Apple logo to appear.

      Continue to hold the keys down until you restart your Mac, and you hear the tone of starting for the second time.

    5. Release the keys.

    After resetting the PRAM on your computer, you may need to update your speaker volume, screen resolution and startup disk preferences.

    Then test the question a bit. If it persists, I would then start mode safe so that the system can check for disk errors and clear a few caches of system level.

    OS X El Capitan: start in safe mode

    https://support.Apple.com/kb/PH21875?locale=en_US

    You can also use the activity monitor to see if there is a runaway process eating all your memory or put too much pressure on her:

    Use the monitor activity on your Mac.

    https://support.Apple.com/en-us/HT201464

    Thank you for using communities of Apple Support.

  • physical memory is exhausted

    Hello
    11g R2, Win 2008, I have oracleservicemydb of Windows stopped with event id 7034. Database has been shut down, and then we restarted it.
    On the basis 1340298.1 metalnik notes:
    This message means that all of the physical memory is exhausted.

    Is it possible to see memory usage of the system at that moment by a query?

    Thank you.

    What system? Database? O/s?

    What memory? Shared? Private? Sizes VM? Data segments? Code segments? Threads?

    What is the o/s? 32 bit? This is a serious constraint for server s/w ito of 32-bit addressable memory. And EAP extensions are not a real answer. 64-bit addressing is.

  • Exhausted ESX host memory

    Hi guys

    I have a few 3.5u4 ESX, basically it's a Desktop Virtualization infrastructure.

    ESX hosts 32 GB of RAM

    They are now around 250 VMs on host virtual machines 40-45.

    Lately, all ESX hosts trigger alerts to RED, VMs are set at 2 GB (which I think is too much for simple office applications).

    Apart from checking if all have tools Vmare, btw how to get the latest vmware tools for virtual machines on esx 3.5?

    What else should I check on the VMS and to know why they are exhausting memory to host ESX (more than 90% of use)?

    any idea is welcome

    Thank you very much

    At the first glance, I must say that you yourself have built a time bomb.  It will explode at some point.

    The problem is, as you seem to indicate, that you have massivley on subscribed your memory.   More than 2:1.  Office workloads are difficult to anticipate.  Giving them a lot more overhead is just asking them to use it.   I know there are probably people who never use more than 250 MB of memory.  However, today it is not difficult to chew a lot more.   I know that my office, I am granted more than an "advanced user", it runs generally in the range of 1.5 to 2GB.   It is not really a way to control this in part to limit the available memory by VM or implementation of resource pools to manage.

    With regard to your specific questions.   How do you determine the versions of vmware tools?   Is not difficult.  Within the virtual Center, select the host resource or a cluster.   Then select the tab "Virtual Machines".   If it is not already displayed, right-click on one of the headings at the top of the columns.   This will bring up a menu of the available to display columns.  Select "VMware Tools Status.   This will then give you a column when you view virtual machines which indicates if the virtual machines are up-to-date with the latest version of the tools.  This will not give you specific versions.  But it will give you an idea of what day and what is not.

    Take a look at some of the other available columns and add those that make sense.  There are fields for the declaration of use of the memory.    Add them and look to see who use virtual machines the most memory.   You will need to check each of them and talk to your users to know what they are doing which requires many resources.

    You're in the political game at this point.  Have fun!

  • My MBP with retina display has no top file, but storage information still show a lot of memory being exhausted by audio, photos and movies.

    Recently, my MacBook Pro with retina display has started to run out of memory, so I moved all my downloads and stuff in my external hard drive. After the transfer, I had some good 20 GBs free and my folder all my files to completely empty.

    But even now when I go into storage under the about this Mac information, it shows that more 1 GB of audio files, about 800 MB of photos and 500 MB of movies.

    Using the search option (and put a black space in the search bar), I discovered a few files in the Mac section, but they were barely a few MBs in size, and no audio or images or movies were present there.

    Where are all these "hidden audio, photographs and films that take about 3 GB of space from my hard drive? I am naïve.

    Here is my overview of the system:

    ********************

    Any help will be much appreciated.

    Thank you!

    < image edited by host to remove the serial number >

    This view will be incorrect until the Spotlight indexing your drive. In addition, it is only an effort to classify the files types are known by their file extension. Thousands of files on the computer, however, will only be classified as 'Other' because they did not have a type that falls into one of five or six available categories. If you want an accurate display of disk space then: press command-I to open the window read the information. In the top panel is a visualization of the status of your drive: capacity, used and available. It's everything you need to know. If you want information on the types of files and their location, and then use a tool such as OmniDiskSweeper or GrandPerspective.

  • Apache HTTP Server Memory exhaustion T1300

    Not sure if just Board for that.  obtained results on T1300 to a problem of denial-of-service with the version of the Apache HTTP server on plotter.  Here is the recommendation to solve the problem.  only problem is when I go to the url below, there are about 1 million, okay maybe a little less, newsletters to look through.  I have no idea who is the resolution of my problem.  I know that I might have to update the version of Apache on Tracker, and I can download, but not instructions on how to update.

    Thanks in advance

    The seller has published an update to the question:
    https://www.Apache.org/dist/httpd/Announcement2.2.html
    http://h20565.www2.HP.com/portal/site/hpsc/public/KB/secBullArchive/?AC.admitted=1337001371440.87644...

    Hi woodstock,.

    I see this is your first time with us here on the Forums of HP. Please, let me take a moment to say 'Welcome. '

    To get your question more exposure I suggest you post in the trade forums since it is a commercial product. You can do it at Business Forum.

    I hope that the rest of your Friday is a great. Have a fantastic weekend as well.

    See you soon,.    

  • Which module memory for Satellite Pro M70?

    Hello! First post here, happy to join :)

    So, here is my question:
    I have a laptop M70 and want to upgrade the memory from 512 MB to 1 GB. I checked Toshiba online store and found that in fact 2 memory of 512 MB with the same characteristics (512 MB PC2-4300 DDR2 533 MHz) are supposed to do the job...
    The only difference is that the PA3412U - 1 M 51 is mentioned as "dual channel" and the PA3412U - 2M 51 is "RoHS compl.

    So, what is the good? Another problem is that I can not really get any of these two because the first one is "sold out" and the second is 'exhausted '! Laughing out loud

    But finding the correct for my system is a good first step, in my opinion. Thanks in advance! ;)

    Hello

    In this unit are 2 slots available and you can upgrade the memory for max 2048 MB (2x1024Mo). You can use DDR2 memory modules.
    I found information on the modules of memory support

    DDR2 400/533 256 MB (PA3389U - 1 M 25)
    512 MB DDR2-400/533 (PA3412U - 1 M 51)
    1 GB OF DDR2 400/533 (PA3411U-1M1G)

    I would recommend to google for this part numbers and I m you will find an online store that offers this module.

  • Internal memory of Motorola Charm, how much do you have?

    Yesterday, I became the proud owner of a Motorola Charm, or I would have been if it had been the device that they announced.

    It turns out that I have only 100 MB internal memory available to install applications. My biggest concern with the charm was that the advertised 512 MB is not enough, and because it has Android 2.1 I wouldn't able to install to SD card either. I just found out that I have already exhausted my charming 100 MB of memory and I have not yet installed half of my essential apps! Anyone else had this problem or knows how to fix?

    Hi ron,

    I also have charm. It has 170 MB of memory of the phone but that about 100 MB is already filled by motorola. Now, we have just about 70 MB of space to store apps. There is no way to install apps on SD or Flash. There is no custom ROM. But there is a way around the charm and then install Cyanogen. After that, you can partition your SD card in a primary memory of 512 MB (which act as a memory of the phone). And to change your applications to your SD card, you must Link2SD app. Just google these and you'll find pages explaining the methods.

    Now, if you want to use your charm factory without rooting and making it unstable, you just download the applications needed to charm which supports and then download an application called "appmonster. After that, save all of your applications. Then uninstall the applications that you do not use frequently. Download new again then backup. You call always reinstall applications that you have backed up and uninstalled from archive appmonster.

    It could be that useful...

  • New HP desktop, Windows8, Ubuntu, UEFI and a desktop computer that is no longer start

    I have a new HP desktop computer purchased just before Christmas, 2012.  Not realizing the problems with Windows8 and UEFI, I tried to load the version 12.1, Ubuntu, and now the Office does not start.

    Here is the chronology of the events:

    1A tried to install Ubuntu linux 12.1 with dual boot NO

    2 once installed Ubuntu, the system would not start and crashes with an error message

    3. accessed in UEFI menu and security disabled for all boot devices

    4 tried to start again, but the only thing on the screen is a picture of Seattle and the system will not meet any keyboard input

    At this point you can power cycle this machine, everything you want, and it puts just a photo of Seattle.  I can't access BIOS UEFI, or anything like that and the machine will not respond to any keyboard input.

    I did some research and it seems that this new version of the UEFI running on this desktop computer will not allow the machine to run anything other than Windows8?

    Any ideas on how to solve this problem?  I don't want doesn't matter what Microsoft anything running on this PC, and want to dual-boot.  I have not the recovery disc for this desktop computer.

    I think about how to solve this problem first becomes the machine to respond to keyboard entries, enter the UEFI and re - enable security this could allow me boot Windows8 still?

    Thank you!

    I finally got the machine to respond to the keyboard.  I found the solution on a linux Web site

    1. turn off the machine by pulling the power cord

    2. remove the battery

    3. press and hold the Power Off button for 60 seconds

    4 replace the battery

    5. start and hold down the ESC key

    BTW, I will update this thing with some notes as this can help someone else.

    The machine is a brand new HP P2-1310.  It comes with Windows 8.

    Try to wipe the hard drive and install linux has been in vain due to the new implementation of UEFI.  At best, I could install linux on a new partition, but the machine does never start the linux OS.  It will start only Windows8 successfully.

    As near as I can tell, UEFI will prevent any OS other than Windows8 currently running on this computer.  See linux UEFI as a kind of security attack and simply prevents the machine to use.  The Open Source community works now this last attempt of MS and PC manufacturers to prevent consumers who buy a new PC to install anything other than Windows8.  Run a search on this issue and you can get more information on the latest status.

    My guess is that sometime in 2013 different versions of linux Open Source will receive the digital signature required to interact with UEFI and load their OS on the new PC, or they will develop a workaround solution.  My suggestion for anyone considering buying a new PC that intends to install linux, immediately after that purchase should consider carefully what is not possible.  Right now I still can't do and I'm stuck now with Windows8.  If I had to do it again, I will not buy a new PC, but rather just go online and buy something.  After this experience I discovered used PCs with fast processors and a lot of memory can be purchased for $100 or less (craigs list), and because they are pre-UEFI, they will be easily load linux.

  • My Macbook Pro reboots after a memory leak every two hours

    Hey everybody. I'm having a problem with my MacBook Pro (retina, mid-2012), where he is recovering in market (usually after gel). In this case only (so far) while using Adobe Illustrator CC 2015 (to date). I also use a Wacom tablet (intuos 4, with latest drivers), drawing, which can also be the culprit.

    This happened with Yosemite, so I had upgraded to El Capitan - that does not solve the problem.

    I apologize if the problem is with myself! I get that this problem is probably the fault of Wacom, Adobe or myself - I just want to see what you think Mac-heads.

    Thanks a lot, a lot in advance for any advice - I appreciate any help I can get.

    The report I get, when restarting is as follows:

    Mon 4 Jan 20:19:13 2016

    Panic report *.

    panic (the appellant UC 7 0xffffff802d928e44): "zalloc: map of exhausted area during the allocation of the buf.8192 area, probably because of the memory leak in the area kalloc.512 (1063772160 bytes, 2076706 elements allocated)"@/Library/Caches/com.apple.xbs/Sources/xnu/xnu-3247.1.106/osfmk/kern /zalloc.c:2543.

    Backtrace (CPU 7), Frame: Return address

    0xffffff813887b150: 0xffffff802d8e5357

    0xffffff813887b1d0: 0xffffff802d928e44

    0xffffff813887b300: 0xffffff802daea851

    0xffffff813887b330: 0xffffff802dae8f19

    0xffffff813887b380: 0xffffff802dae8a23

    0xffffff813887b450: 0xffffff802daea040

    0xffffff813887b4b0: 0xffffff802dcf76fb

    0xffffff813887b520: 0xffffff802dd4cdfb

    0xffffff813887b5c0: 0xffffff802dd47845

    0xffffff813887b6d0: 0xffffff802dcfe66b

    0xffffff813887bc10: 0xffffff802dd3e695

    0xffffff813887bd20: 0xffffff802db112f2

    0xffffff813887bde0: 0xffffff802db1ce7c

    0xffffff813887bf30: 0xffffff802db11747

    0xffffff813887bf60: 0xffffff802de2ace1

    0xffffff813887bfb0: 0xffffff802d9f4896

    The process corresponding to the current thread BSD name: softwareupdated

    Mac OS version:

    15A 284

    Kernel version:

    Darwin Kernel Version 15.0.0: Wed Sep 26 16:57:32 PDT 2015; root:XNU-3247.1.106~1/RELEASE_X86_64

    Kernel UUID: 37BC582F-8BF4-3F65-AFBB-ECF792060C68

    Slide kernel: 0x000000002d600000

    Text of core base: 0xffffff802d800000

    Text __HIB base: 0xffffff802d700000

    Name of system model: MacBookPro10, 1 (Mac-C3EC7CD22292981F)

    Availability of the system in nanoseconds: 7390442512484

    Area name heart size free size

    VM 146329200 960 items

    machine virtual object hash 24008000 2240 c'entri

    VM 46592000 883520 map entries

    34959024 5424 pv_list

    VM 130327232 8768 pages

    16598128 27424 Kalloc.16

    16876000 21664 Kalloc.32

    77735808 199344 Kalloc.48

    Kalloc.64 37787264 95360

    2136000 5280 Kalloc.80

    Kalloc.96 1729824 67200

    Kalloc.128 130555904 30464

    1941600 135680 Kalloc.160

    133074944 292352 Kalloc.256

    45504 142195392 Kalloc.288

    1063772160 498688 Kalloc.512

    1003634688 2931712 Kalloc.1024

    6909952 24576 Kalloc.2048

    Kalloc.4096 9760768 0

    Kalloc.8192 10452992 0

    9606272-3968 mem_obj_control

    SCHED groups 1270080 36288

    IPC 81922240 150880 ports

    2081376 274480 discussions

    x 86 fpsave State 1411072 233792

    uthreads 1224752 209264

    31705680 2640 nodes

    12949920 4032 namecache

    Node 42278544 72816 HFS

    Fork 8548352 896 HFS

    1109304 1176 decmpfs_cnode

    buf.8192 23584768 0

    ubc_info area 5679696 6600

    vnode pager 2580000 1320 structur

    34320384 44864 compressor_pager

    20094976 5986304 compressor_segment

    The 3653632 kernel stacks

    PageTables 250183680

    Kalloc.Large 166412827

    Backtrace suspected leakage: (bytes pending: 206848)

    0xffffff802d92927f

    0xffffff802de3be0b

    0xffffff7fafdd2718

    0xffffff7fafd724e0

    0xffffff7fafd5e0f6

    0xffffff7fafd635a4

    0xffffff7fafd64578

    0xffffff802dee1657

    0xffffff802d9a0780

    0xffffff802d8e9af3

    0xffffff802d8cd448

    0xffffff802d8dcfc5

    0xffffff802d9c135a

    Extensions of core in backtrace:

    com.apple.iokit.IOAcceleratorFamily2 (203.7.1) [5178DF8C-1F96-3D 87-8BD4-46B996C41 84A]@0xffffff7fafd4e000-> 0xffffff7fafdb9fff

    dependency: com.apple.iokit.IOPCIFamily (2.9) [668E3DEE-F98E-3456-92D6-F4FEEA355A72] @ 7fae12d000 0xffffff

    dependency: com.apple.iokit.IOGraphicsFamily (2.4.1) [48AC8EA9-BD3C-3FDC-908D-09850215AA32] @0 xffffff7fae4a2000

    com.apple.GeForce (10.0.6) [7246A48B-E43B-3AF3-8285-8E793AE55B8C] @0xffffff7fafdc8 000-> 0xffffff7fafe64fff

    dependency: com.apple.iokit.IOPCIFamily (2.9) [668E3DEE-F98E-3456-92D6-F4FEEA355A72] @ 7fae12d000 0xffffff

    dependency: ffff7fae4e9000 @0xff com.apple.iokit.IONDRVSupport (2.4.1) [814A7F4B-03EF-384A-B205-9840F0594421]

    dependency: com.apple.nvidia.driver.NVDAResman (10.0.6) [E177026A-B6F5-30AB-BF87-8ADC4D102278] @0xffffff7fae4ff000

    dependency: com.apple.iokit.IOGraphicsFamily (2.4.1) [48AC8EA9-BD3C-3FDC-908D-09850215AA32] @0 xffffff7fae4a2000

    dependency: com.apple.iokit.IOAcceleratorFamily2 (203.7.1) [5178DF8C-1F96-3D 87-8BD4-46B996C41 84A]@0xffffff7fafd4e000

    last load kext to 510536257340: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7fb0a11000 size 32768)

    Finally unloaded kext to 584400762104: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7fb0a11000 size 32768)

    kexts responsible:

    com.apple.driver.AudioAUUC 1.70

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.AGPM 110.20.19

    com.apple.driver.ApplePlatformEnabler 2.5.1d0

    com.apple.driver.X86PlatformShim 1.0.0

    com Apple.filesystems.autofs 3.0

    com.apple.driver.AppleMikeyHIDDriver 124

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleMikeyDriver 272.50

    com Apple.Driver.pmtelemetry 1

    com.apple.driver.AppleHDA 272.50

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.iokit.IOBluetoothSerialManager 4.4.0f4

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.driver.AppleIntelHD4000Graphics 10.0.8

    com.apple.GeForce 10.0.6

    com.apple.driver.AppleHV 1

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.0f4

    com.apple.driver.AppleSMCPDRC 1.0.0

    com.apple.driver.AppleThunderboltIP 3.0.8

    com.apple.driver.AppleLPC 3.1

    com.apple.driver.AppleSMCLMU 208

    com.apple.driver.AppleMCCSControl 1.2.13

    com.apple.driver.AppleIntelFramebufferCapri 10.0.8

    com.apple.driver.AppleMuxControl 3.11.31

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.driver.AppleUSBTCButtons 245,4

    com.apple.driver.AppleUSBTCKeyboard 245,4

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 37

    com.apple.iokit.IOAHCIBlockStorage 2.8.0

    com.apple.driver.AppleSDXC 1.7.0

    com.apple.driver.AirPort.Brcm4360 1000.13.1a3

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    3.1.5 com.apple.driver.AppleAHCIPort

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleSmartBatteryManager 161.0.0

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.driver.AppleBluetoothHIDKeyboard 181

    com.apple.driver.IOBluetoothHIDDriver 4.4.0f4

    com.apple.driver.AppleHIDKeyboard 181

    com Apple.kext.Triggers 1.0

    com.apple.driver.DspFuncLib 272.50

    com.apple.kext.OSvKernDSPLib 525

    com.apple.iokit.IOSerialFamily 11

    com.apple.iokit.IOSurface 108.0.1

    com.apple.nvidia.driver.NVDAGK100Hal 10.0.6

    com.apple.nvidia.driver.NVDAResman 10.0.6

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.0f4

    com.apple.iokit.IOBluetoothFamily 4.4.0f4

    com.apple.driver.AppleHDAController 272.50

    com.apple.iokit.IOHDAFamily 272.50

    com.apple.iokit.IOAudioFamily 203.8

    com.apple.vecLib.kext 1.2.0

    com.apple.driver.AppleSMBusPCI 1.0.14d1

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.iokit.IOAcceleratorFamily2 203.7.1

    com.apple.AppleGraphicsDeviceControl 3.11.31

    com.apple.driver.AppleBacklightExpert 1.1.0

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.driver.AppleGraphicsControl 3.11.31

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.driver.X86PlatformPlugin 1.0.0

    com.apple.driver.AppleSMC 3.1.9

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    com.apple.driver.AppleUSBMultitouch 250.4

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com.apple.driver.CoreStorage 517

    com.apple.driver.AppleThunderboltDPInAdapter 4.1.2

    com.apple.driver.AppleThunderboltDPAdapterFamily 4.1.2

    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2

    com.apple.driver.AppleThunderboltNHI 4.0.1

    com.apple.iokit.IOThunderboltFamily 5.0.6

    com.apple.iokit.IO80211Family 1100.23

    com.apple.driver.mDNSOffloadUserClient 1.0.1b8

    com.apple.iokit.IONetworkingFamily 3.2

    com Apple.Driver.corecapture 1.0.4

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    com.apple.iokit.IOAHCIFamily 2.8.0

    com.apple.driver.usb.AppleUSBXHCIPCI 1.0.1

    com.apple.driver.usb.AppleUSBXHCI 1.0.1

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.driver.AppleEFINVRAM 2.0

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 414

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Panic report suggests that the issue is in the video/graphis material. Please make an appointment at the Apple Store - Genius Bar store and bring it into service. If you are in the United States or is unable to make an appointment in this way, contact your Apple store.

  • Out of memory when rendering a video file (Win 8.1; HP Envy 700-230qe)

    Make a video of 4 minutes (with several video tracks) using Sony Vegas Pro13, guard stopping about 70-80% completion - saying there is little memory.

    How what might happen on a HP Envy 700-230qe with 32 GB memory DDR3?

    I look in Task Manager: the memory of "Commited" continues to increase during rendering until it hits the full number (36 GB in my case) and then the memory is exhausted, which stops to make.

    (No change to the system except the addition of a SSD drive as primary drive and a Blu - ray burner)

    Hello @Mango7

    I understand that you are having problems with the rendering of a video with Sony Vegas Pro 13. I suggest you only look to the Vegas Pro - vidéo as it appears there are settings in the software that should help you. If you don't find a position that matches what you are trying to do or I suggest the issue you are facing that post you here because it seems that there are many members of the community who are willing to help.

    Thanks for posting on the HP Forums. Have a great day!

Maybe you are looking for