Memory usage doesn't add up - what is using my memory? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Memory usage doesn't add up over timeWhere is my ram?Memory usage doesn't add up over timeReal & accurate memory usage statistics (top)?Ubuntu 14.04 does not see all of my RAMUbuntu freeze when low memoryUbuntu 17.10 gnome-software process using large amounts of memorychecking free memory by free -h command , here what is difference between available and free memory?Miss RAM, Total ram is bigger than Used ram + Free ram by 1.5 gbUbuntu 18.04 not detecting full RAM sizeBad memory usage with ZoL and KVM

The test team as an enemy of development? And how can this be avoided?

Did any compiler fully use 80-bit floating point?

How could we fake a moon landing now?

The Nth Gryphon Number

Tannaka duality for semisimple groups

Most bit efficient text communication method?

What makes a man succeed?

What's the point of the test set?

How to compare two different files line by line in unix?

Random body shuffle every night—can we still function?

Amount of permutations on an NxNxN Rubik's Cube

Lagrange four-squares theorem --- deterministic complexity

Crossing US/Canada Border for less than 24 hours

How long can equipment go unused before powering up runs the risk of damage?

preposition before coffee

AppleTVs create a chatty alternate WiFi network

Are sorcerers unable to use the Careful Spell metamagic option on themselves?

Significance of Cersei's obsession with elephants?

Time evolution of a Gaussian wave packet, why convert to k-space?

How do living politicians protect their readily obtainable signatures from misuse?

A term for a woman complaining about things/begging in a cute/childish way

What does it mean that physics no longer uses mechanical models to describe phenomena?

Maximum summed subsequences with non-adjacent items

Is it possible for SQL statements to execute concurrently within a single session in SQL Server?



Memory usage doesn't add up - what is using my memory?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Memory usage doesn't add up over timeWhere is my ram?Memory usage doesn't add up over timeReal & accurate memory usage statistics (top)?Ubuntu 14.04 does not see all of my RAMUbuntu freeze when low memoryUbuntu 17.10 gnome-software process using large amounts of memorychecking free memory by free -h command , here what is difference between available and free memory?Miss RAM, Total ram is bigger than Used ram + Free ram by 1.5 gbUbuntu 18.04 not detecting full RAM sizeBad memory usage with ZoL and KVM



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















My computer (which is running Ubuntu Server 16.04) is currently using 13.4 GB out of 15.4 GB of RAM (according to htop) but I'm struggling to understand what is using that memory.



free -m reports:



 total used free shared buff/cache available
Mem: 15733 13781 1083 22 868 1592
Swap: 71524 430 71094


top shows the highest memory using process as taking 6.8% of memory and the next largest taking 0.4% of memory.



If I use ps aux | awk 'print $6/1024 " MBtt" $11' | sort -n, it shows the (same) highest-memory-using process as taking 1104 MB of RAM, which sounds about right compared to top.



If I sum all the values of every process reported by ps:



ps aux | awk 'sum=sum+$6; END print sum/1024 " MB"'


it reports a total of 1.8 GB RAM used.



So ps reckons I'm using 1.8 GB RAM, but free and htop both reckon I'm using over 13 GB of RAM. The available column in the free output is too small to account for this difference.



What am I missing?



Edit 2017-01-20 13:27 Z



/usr/bin/free -h reports:




total used free shared buff/cache available
Mem: 15G 13G 417M 22M 1.1G 1.2G
Swap: 69G 432M 69G



slabtop output:



$ sudo slabtop -s c -o | head -n 20
Active / Total Objects (% used) : 16552394 / 17903627 (92.5%)
Active / Total Slabs (% used) : 841391 / 841391 (100.0%)
Active / Total Caches (% used) : 109 / 155 (70.3%)
Active / Total Size (% used) : 9510904.12K / 9753117.86K (97.5%)
Minimum / Average / Maximum Object : 0.01K / 0.54K / 18.56K

OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
1764956 1764890 0% 1.08K 120388 29 3852416K zio_cache
126780 126308 0% 16.00K 68205 2 2182560K zio_buf_16384
1797996 1797996 100% 0.85K 100920 18 1614720K dnode_t
1952240 1833842 0% 0.50K 122015 16 976120K kmalloc-512
62255 61308 0% 8.00K 20096 4 643072K kmalloc-8192
1999648 1968319 0% 0.28K 71416 28 571328K dmu_buf_impl_t
1764892 1764892 100% 0.26K 56932 31 455456K sa_cache
2028978 1981994 0% 0.19K 96618 21 386472K dentry
23113 23021 0% 12.00K 11557 2 369824K zio_buf_12288
694975 647514 0% 0.31K 27799 25 222392K bio-1
1660096 1592262 0% 0.12K 51878 32 207512K kmalloc-128
131376 91798 0% 1.00K 8211 16 131376K ecryptfs_inode_cache
90888 89352 0% 1.05K 3035 30 97120K ext4_inode_cache

$ sudo slabtop -s c -o | tail -n +8 | awk 'sum=sum+$7; END print sum/1024 " MB"'` reports:
11484.9 MB

$ sudo slabtop -s c -o | tail -n +8 | grep zio | awk 'sum=sum+$7; END print sum/1024 " MB"'
6222.28 MB


So it looks like it's something to do ZFS from what I can tell - ZFS is taking over 6 GB of RAM and there's about 5 GB used by non-zio stuff in the slabtop output.










share|improve this question



















  • 1





    have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

    – Phillip -Zyan K Lee- Stockmann
    Jan 20 '17 at 12:34






  • 1





    It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

    – David Foerster
    Jan 20 '17 at 12:56












  • Thanks you both - I've added the output from free and slabtop.

    – DrAl
    Jan 20 '17 at 13:29

















2















My computer (which is running Ubuntu Server 16.04) is currently using 13.4 GB out of 15.4 GB of RAM (according to htop) but I'm struggling to understand what is using that memory.



free -m reports:



 total used free shared buff/cache available
Mem: 15733 13781 1083 22 868 1592
Swap: 71524 430 71094


top shows the highest memory using process as taking 6.8% of memory and the next largest taking 0.4% of memory.



If I use ps aux | awk 'print $6/1024 " MBtt" $11' | sort -n, it shows the (same) highest-memory-using process as taking 1104 MB of RAM, which sounds about right compared to top.



If I sum all the values of every process reported by ps:



ps aux | awk 'sum=sum+$6; END print sum/1024 " MB"'


it reports a total of 1.8 GB RAM used.



So ps reckons I'm using 1.8 GB RAM, but free and htop both reckon I'm using over 13 GB of RAM. The available column in the free output is too small to account for this difference.



What am I missing?



Edit 2017-01-20 13:27 Z



/usr/bin/free -h reports:




total used free shared buff/cache available
Mem: 15G 13G 417M 22M 1.1G 1.2G
Swap: 69G 432M 69G



slabtop output:



$ sudo slabtop -s c -o | head -n 20
Active / Total Objects (% used) : 16552394 / 17903627 (92.5%)
Active / Total Slabs (% used) : 841391 / 841391 (100.0%)
Active / Total Caches (% used) : 109 / 155 (70.3%)
Active / Total Size (% used) : 9510904.12K / 9753117.86K (97.5%)
Minimum / Average / Maximum Object : 0.01K / 0.54K / 18.56K

OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
1764956 1764890 0% 1.08K 120388 29 3852416K zio_cache
126780 126308 0% 16.00K 68205 2 2182560K zio_buf_16384
1797996 1797996 100% 0.85K 100920 18 1614720K dnode_t
1952240 1833842 0% 0.50K 122015 16 976120K kmalloc-512
62255 61308 0% 8.00K 20096 4 643072K kmalloc-8192
1999648 1968319 0% 0.28K 71416 28 571328K dmu_buf_impl_t
1764892 1764892 100% 0.26K 56932 31 455456K sa_cache
2028978 1981994 0% 0.19K 96618 21 386472K dentry
23113 23021 0% 12.00K 11557 2 369824K zio_buf_12288
694975 647514 0% 0.31K 27799 25 222392K bio-1
1660096 1592262 0% 0.12K 51878 32 207512K kmalloc-128
131376 91798 0% 1.00K 8211 16 131376K ecryptfs_inode_cache
90888 89352 0% 1.05K 3035 30 97120K ext4_inode_cache

$ sudo slabtop -s c -o | tail -n +8 | awk 'sum=sum+$7; END print sum/1024 " MB"'` reports:
11484.9 MB

$ sudo slabtop -s c -o | tail -n +8 | grep zio | awk 'sum=sum+$7; END print sum/1024 " MB"'
6222.28 MB


So it looks like it's something to do ZFS from what I can tell - ZFS is taking over 6 GB of RAM and there's about 5 GB used by non-zio stuff in the slabtop output.










share|improve this question



















  • 1





    have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

    – Phillip -Zyan K Lee- Stockmann
    Jan 20 '17 at 12:34






  • 1





    It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

    – David Foerster
    Jan 20 '17 at 12:56












  • Thanks you both - I've added the output from free and slabtop.

    – DrAl
    Jan 20 '17 at 13:29













2












2








2








My computer (which is running Ubuntu Server 16.04) is currently using 13.4 GB out of 15.4 GB of RAM (according to htop) but I'm struggling to understand what is using that memory.



free -m reports:



 total used free shared buff/cache available
Mem: 15733 13781 1083 22 868 1592
Swap: 71524 430 71094


top shows the highest memory using process as taking 6.8% of memory and the next largest taking 0.4% of memory.



If I use ps aux | awk 'print $6/1024 " MBtt" $11' | sort -n, it shows the (same) highest-memory-using process as taking 1104 MB of RAM, which sounds about right compared to top.



If I sum all the values of every process reported by ps:



ps aux | awk 'sum=sum+$6; END print sum/1024 " MB"'


it reports a total of 1.8 GB RAM used.



So ps reckons I'm using 1.8 GB RAM, but free and htop both reckon I'm using over 13 GB of RAM. The available column in the free output is too small to account for this difference.



What am I missing?



Edit 2017-01-20 13:27 Z



/usr/bin/free -h reports:




total used free shared buff/cache available
Mem: 15G 13G 417M 22M 1.1G 1.2G
Swap: 69G 432M 69G



slabtop output:



$ sudo slabtop -s c -o | head -n 20
Active / Total Objects (% used) : 16552394 / 17903627 (92.5%)
Active / Total Slabs (% used) : 841391 / 841391 (100.0%)
Active / Total Caches (% used) : 109 / 155 (70.3%)
Active / Total Size (% used) : 9510904.12K / 9753117.86K (97.5%)
Minimum / Average / Maximum Object : 0.01K / 0.54K / 18.56K

OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
1764956 1764890 0% 1.08K 120388 29 3852416K zio_cache
126780 126308 0% 16.00K 68205 2 2182560K zio_buf_16384
1797996 1797996 100% 0.85K 100920 18 1614720K dnode_t
1952240 1833842 0% 0.50K 122015 16 976120K kmalloc-512
62255 61308 0% 8.00K 20096 4 643072K kmalloc-8192
1999648 1968319 0% 0.28K 71416 28 571328K dmu_buf_impl_t
1764892 1764892 100% 0.26K 56932 31 455456K sa_cache
2028978 1981994 0% 0.19K 96618 21 386472K dentry
23113 23021 0% 12.00K 11557 2 369824K zio_buf_12288
694975 647514 0% 0.31K 27799 25 222392K bio-1
1660096 1592262 0% 0.12K 51878 32 207512K kmalloc-128
131376 91798 0% 1.00K 8211 16 131376K ecryptfs_inode_cache
90888 89352 0% 1.05K 3035 30 97120K ext4_inode_cache

$ sudo slabtop -s c -o | tail -n +8 | awk 'sum=sum+$7; END print sum/1024 " MB"'` reports:
11484.9 MB

$ sudo slabtop -s c -o | tail -n +8 | grep zio | awk 'sum=sum+$7; END print sum/1024 " MB"'
6222.28 MB


So it looks like it's something to do ZFS from what I can tell - ZFS is taking over 6 GB of RAM and there's about 5 GB used by non-zio stuff in the slabtop output.










share|improve this question
















My computer (which is running Ubuntu Server 16.04) is currently using 13.4 GB out of 15.4 GB of RAM (according to htop) but I'm struggling to understand what is using that memory.



free -m reports:



 total used free shared buff/cache available
Mem: 15733 13781 1083 22 868 1592
Swap: 71524 430 71094


top shows the highest memory using process as taking 6.8% of memory and the next largest taking 0.4% of memory.



If I use ps aux | awk 'print $6/1024 " MBtt" $11' | sort -n, it shows the (same) highest-memory-using process as taking 1104 MB of RAM, which sounds about right compared to top.



If I sum all the values of every process reported by ps:



ps aux | awk 'sum=sum+$6; END print sum/1024 " MB"'


it reports a total of 1.8 GB RAM used.



So ps reckons I'm using 1.8 GB RAM, but free and htop both reckon I'm using over 13 GB of RAM. The available column in the free output is too small to account for this difference.



What am I missing?



Edit 2017-01-20 13:27 Z



/usr/bin/free -h reports:




total used free shared buff/cache available
Mem: 15G 13G 417M 22M 1.1G 1.2G
Swap: 69G 432M 69G



slabtop output:



$ sudo slabtop -s c -o | head -n 20
Active / Total Objects (% used) : 16552394 / 17903627 (92.5%)
Active / Total Slabs (% used) : 841391 / 841391 (100.0%)
Active / Total Caches (% used) : 109 / 155 (70.3%)
Active / Total Size (% used) : 9510904.12K / 9753117.86K (97.5%)
Minimum / Average / Maximum Object : 0.01K / 0.54K / 18.56K

OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
1764956 1764890 0% 1.08K 120388 29 3852416K zio_cache
126780 126308 0% 16.00K 68205 2 2182560K zio_buf_16384
1797996 1797996 100% 0.85K 100920 18 1614720K dnode_t
1952240 1833842 0% 0.50K 122015 16 976120K kmalloc-512
62255 61308 0% 8.00K 20096 4 643072K kmalloc-8192
1999648 1968319 0% 0.28K 71416 28 571328K dmu_buf_impl_t
1764892 1764892 100% 0.26K 56932 31 455456K sa_cache
2028978 1981994 0% 0.19K 96618 21 386472K dentry
23113 23021 0% 12.00K 11557 2 369824K zio_buf_12288
694975 647514 0% 0.31K 27799 25 222392K bio-1
1660096 1592262 0% 0.12K 51878 32 207512K kmalloc-128
131376 91798 0% 1.00K 8211 16 131376K ecryptfs_inode_cache
90888 89352 0% 1.05K 3035 30 97120K ext4_inode_cache

$ sudo slabtop -s c -o | tail -n +8 | awk 'sum=sum+$7; END print sum/1024 " MB"'` reports:
11484.9 MB

$ sudo slabtop -s c -o | tail -n +8 | grep zio | awk 'sum=sum+$7; END print sum/1024 " MB"'
6222.28 MB


So it looks like it's something to do ZFS from what I can tell - ZFS is taking over 6 GB of RAM and there's about 5 GB used by non-zio stuff in the slabtop output.







ram memory-usage






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 20 '17 at 13:28







DrAl

















asked Jan 20 '17 at 12:14









DrAlDrAl

709816




709816







  • 1





    have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

    – Phillip -Zyan K Lee- Stockmann
    Jan 20 '17 at 12:34






  • 1





    It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

    – David Foerster
    Jan 20 '17 at 12:56












  • Thanks you both - I've added the output from free and slabtop.

    – DrAl
    Jan 20 '17 at 13:29












  • 1





    have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

    – Phillip -Zyan K Lee- Stockmann
    Jan 20 '17 at 12:34






  • 1





    It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

    – David Foerster
    Jan 20 '17 at 12:56












  • Thanks you both - I've added the output from free and slabtop.

    – DrAl
    Jan 20 '17 at 13:29







1




1





have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

– Phillip -Zyan K Lee- Stockmann
Jan 20 '17 at 12:34





have a look at this thread: askubuntu.com/questions/285387/… slabtop -s c may give you a hint on what is using your memory. In my case it was ext4_inode_cache - in the linked thread is was the XFS equivalent to it.

– Phillip -Zyan K Lee- Stockmann
Jan 20 '17 at 12:34




1




1





It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

– David Foerster
Jan 20 '17 at 12:56






It seems you're using the "old" output format of free that doesn't list buffers and caches. Could you please run free -h without the -o option and include the output in your question? If free is an alias that implies -o, you can circumvent it with command free -h. Alternatively, what's the output of grep -e '^MemAvailable:' /proc/meminfo? Thanks.

– David Foerster
Jan 20 '17 at 12:56














Thanks you both - I've added the output from free and slabtop.

– DrAl
Jan 20 '17 at 13:29





Thanks you both - I've added the output from free and slabtop.

– DrAl
Jan 20 '17 at 13:29










1 Answer
1






active

oldest

votes


















0














In my case, some memory is reserved for hugepage. Considering the hugepages reserved memory, it adds up.



controller-0:/home/wrsroot# grep -i huge /proc/meminfo
HugePages_Total: 1000
HugePages_Free: 488
HugePages_Rsvd: 0
HugePages_Surp: 0
Hugepagesize: 2048 kB





share|improve this answer








New contributor




Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f874147%2fmemory-usage-doesnt-add-up-what-is-using-my-memory%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    In my case, some memory is reserved for hugepage. Considering the hugepages reserved memory, it adds up.



    controller-0:/home/wrsroot# grep -i huge /proc/meminfo
    HugePages_Total: 1000
    HugePages_Free: 488
    HugePages_Rsvd: 0
    HugePages_Surp: 0
    Hugepagesize: 2048 kB





    share|improve this answer








    New contributor




    Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.
























      0














      In my case, some memory is reserved for hugepage. Considering the hugepages reserved memory, it adds up.



      controller-0:/home/wrsroot# grep -i huge /proc/meminfo
      HugePages_Total: 1000
      HugePages_Free: 488
      HugePages_Rsvd: 0
      HugePages_Surp: 0
      Hugepagesize: 2048 kB





      share|improve this answer








      New contributor




      Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















        0












        0








        0







        In my case, some memory is reserved for hugepage. Considering the hugepages reserved memory, it adds up.



        controller-0:/home/wrsroot# grep -i huge /proc/meminfo
        HugePages_Total: 1000
        HugePages_Free: 488
        HugePages_Rsvd: 0
        HugePages_Surp: 0
        Hugepagesize: 2048 kB





        share|improve this answer








        New contributor




        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        In my case, some memory is reserved for hugepage. Considering the hugepages reserved memory, it adds up.



        controller-0:/home/wrsroot# grep -i huge /proc/meminfo
        HugePages_Total: 1000
        HugePages_Free: 488
        HugePages_Rsvd: 0
        HugePages_Surp: 0
        Hugepagesize: 2048 kB






        share|improve this answer








        New contributor




        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered 11 mins ago









        Cheng1 LiCheng1 Li

        1




        1




        New contributor




        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Cheng1 Li is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f874147%2fmemory-usage-doesnt-add-up-what-is-using-my-memory%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

            Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

            Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»