RHEL: Display swap/RAM size

RHEL: Display swap/RAM size

# File containing information about system memory
   /proc/meminfo


# Display physical memory size

cat /proc/meminfo | grep MemTotal
   MemTotal:     11508864 kB


# Display swap size

cat /proc/meminfo | grep SwapTotal
   SwapTotal:    14352376 kB


free
                total       used       free     shared    buffers     cached
   Mem:      11508864    4983968    6524896          0     399096    3963080
   -/+ buffers/cache:     621792   10887072
   Swap:     14352376         56   14352320


free -m
                total       used       free     shared    buffers     cached
   Mem:         11239       4867       6371          0        389       3870
   -/+ buffers/cache:        607      10631
   Swap:        14015          0      14015



# Display partitions being used for swap

cat /proc/swaps
   Filename                                Type            Size    Used    Priority
   /dev/mapper/rvg-swaplv                  partition       14352376        56      -1


# Show shared memory limits
ipcs -lm
   ------ Shared Memory Limits --------
   max number of segments = 4096
   max seg size (kbytes) = 67108864
   max total shared memory (kbytes) = 17179869184
   min seg size (bytes) = 1
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Split and Reassemble files
Viewed 3405 times since Mon, May 28, 2018
RHEL: Retrieve and generate a unique SCSI identifier
Viewed 2969 times since Sat, Jun 2, 2018
Extending Linux LVM partitions - scripts
Viewed 6456 times since Sun, May 20, 2018
linux-training.be gives you books for free to study Linux
Viewed 4820 times since Sat, Jun 2, 2018
UUIDs and Linux: Everything you ever need to know [Update]
Viewed 4867 times since Tue, Jul 17, 2018
Linux - How to unlock and reset user’s account
Viewed 4291 times since Fri, Jun 8, 2018
How to Configure ‘FirewallD’ in RHEL/CentOS 7 and Fedora 21
Viewed 10321 times since Wed, Oct 9, 2019
Check Detailed CPU Information In Linux With CoreFreq [Advanced]
Viewed 2263 times since Thu, Apr 18, 2019
RHCS: Configure an active/backup pacemaker cluster
Viewed 8871 times since Sun, Jun 3, 2018
How to find the largest files and directories in Linux?
Viewed 3208 times since Sun, May 20, 2018