473,405 Members | 2,262 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

/proc/meminfo

can anyone help me with detailed explanation of cat /proc/meminfo and cat /proc/iomem command:
MemTotal: 1018132 kB
MemFree: 597464 kB
Buffers: 20220 kB
Cached: 197856 kB
SwapCached: 0 kB
Active: 243500 kB
Inactive: 121264 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 1018132 kB
LowFree: 597464 kB
SwapTotal: 2048248 kB
SwapFree: 2048248 kB
Dirty: 884 kB
Writeback: 0 kB
Mapped: 192916 kB
Slab: 32680 kB
Committed_AS: 329560 kB
PageTables: 7044 kB
VmallocTotal: 536870911 kB
VmallocUsed: 264172 kB
VmallocChunk: 536606655 kB
HugePages_Total: 0
HugePages_Free: 0
Hugepagesize: 2048 kB

00000000-0009fbff : System RAM
0009fc00-0009ffff : reserved
000a0000-000bffff : Video RAM area
000c0000-000c7fff : Video ROM
000f0000-000fffff : System ROM
00100000-3f72f7ff : System RAM
00100000-002fbcb8 : Kernel code
002fbcb9-0043361b : Kernel data
3f72f800-3f72ffff : ACPI Non-volatile Storage
3f730000-3f73ffff : ACPI Tables
3f740000-3f7effff : ACPI Non-volatile Storage
3f7f0000-3f7fffff : reserved
cfb00000-cfbfffff : PCI Bus #05
cfc00000-cfcfffff : PCI Bus #04
cfd00000-cfdfffff : PCI Bus #03
cfe00000-cfefffff : PCI Bus #02
cff00000-cfffffff : PCI Bus #01
d0000000-dfffffff : 0000:00:02.0
e0000000-efffffff : reserved
fed13000-fed19fff : reserved
fed1c000-fed9ffff : reserved
ff33fc00-ff33ffff : 0000:00:1d.7
ff33fc00-ff33ffff : ehci_hcd
ff340000-ff37ffff : 0000:00:02.0
ff380000-ff3fffff : 0000:00:02.0
ff400000-ff4fffff : 0000:06:01.0
ff400000-ff402fff : CS46xx_BA1_data0
ff410000-ff4137ff : CS46xx_BA1_data1
ff420000-ff426fff : CS46xx_BA1_pmem
ff430000-ff4300ff : CS46xx_BA1_reg
ff500000-ff500fff : 0000:06:01.0
ff500000-ff500fff : CS46xx_BA0
ff501000-ff501fff : 0000:06:08.0
ff501000-ff501fff : e100
ff600000-ff6fffff : PCI Bus #05
ff700000-ff7fffff : PCI Bus #04
ff800000-ff8fffff : PCI Bus #03
ff900000-ff9fffff : PCI Bus #02
ffa00000-ffafffff : PCI Bus #01
Apr 24 '07 #1
1 9592
svlsr2000
181 Expert 100+
Under linux all data's are stored as files. you might be familiar with two types of file systems i.e. binary files and text files.

In linux there is one more type of files called virtual file system. /proc/ containts these virtual files, hence /proc/ is also called as virtual file system.

Though (Most of the time) the size of these files are zero, but whe these files are read using cat, less or more they give lot of informations.


cat /proc/meminfo":

root: total: used: free: shared: buffers: cached:Mem: 1055760384 1041887232 13873152 0 100417536 711233536Swap: 1077501952 8540160 1068961792 MemTotal: 1031016 kB MemFree: 13548 kBMemShared: 0 kBBuffers: 98064 kBCached: 692320 kBSwapCached: 2244 kBActive: 563112 kBInact_dirty: 309584 kBInact_clean: 79508 kBInact_target: 190440 kBHighTotal: 130992 kBHighFree: 1876 kBLowTotal: 900024 kBLowFree: 11672 kBSwapTotal: 1052248 kBSwapFree: 1043908 kBCommitted_AS: 332340 kBAt top we can see some of the values which users usually peopleare keen on.MemTotal: Total usable ram (i.e. physical ram minus a few reserved bits and the kernel binary code)

MemFree: Is sum of LowFree+HighFree (overall stat)

MemShared: 0; is here for compat reasons but always zero.

Buffers: Memory in buffer cache. mostly useless as metric nowadays

Cached: Memory in the pagecache (diskcache) minus SwapCache

SwapCache: Memory that once was swapped out, is swapped back in but still also is in the swapfile (if memory is needed it doesn't need to be swapped out AGAIN because it is already in the swapfile. This saves I/O)
May 3 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Bob | last post by:
I'm currently updating one of our web sites and have encountered a strange problem. The page that is giving me the problem is written in ASP and hits a SQL 2K DB. When I click submit I have 4...
9
by: Wolfgang Kreuzer | last post by:
Try hard to become familiar with T-SQL. Can anybodey tell me the best way to deal with set's provided by a stored procedure. Til yesterday I thougt trapping set in temp table using INSERT EXEC...
4
by: helmut woess | last post by:
Hello, i want to use the result set from a stored proc in another stored proc, for example: create stored procedure proc1 (@x int) as declare @tbl (y1 int, y2 int) insert into @tbl values(@...
4
by: Jean-Marc Blaise | last post by:
Dear all, I have simulated the windows MULTI application with a java program calling the SQLTP1DL proc referenced as DB2DARI application, on Linux Intel or ZLinux. If the proc is NOT FENCED,...
4
by: Nyul | last post by:
Gurus, I have a verb big problem which I'm unable to explain. We have a DB2 V6.1.0 on AIX 4.3 I want to make a C stored procedure which at the end will be called by a PHP script. The...
0
by: Dave Sisk | last post by:
I've created a system or external trigger on an AS/400 file a.k.a DB2 table. (Note this is an external trigger defined with the ADDPFTRG CL command, not a SQL trigger defined with the CREATE...
8
by: CSDunn | last post by:
Hello, I have a situation in which I need to address three SQL Server 2000 Stored Procedure parameters in the OnClick event of an Option Group. The Option Group lives on an Access 2000 ADP form. ...
14
by: aaron kempf | last post by:
I find that ADP does not support any Stored Procedures that use the 'CREATE PROC spHAPPY' syntax. CREATE PROC syntax is listed in books online. This syntax should be supported Here is a...
14
by: Roy | last post by:
Apologies for the cross-post, but this truly is a two-sided question. Given the option of creating Looping statements within a stored proc of sql server or in the code-behind of an .net webpage,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.