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
Linux nslookup Command Examples for DNS Lookup
Viewed 9917 times since Sat, Sep 29, 2018
Linux PAM configuration that allows or deny login via the sshd server
Viewed 2600 times since Wed, Oct 3, 2018
Linux: Disks diagnostic using smartctl
Viewed 16017 times since Wed, Jul 25, 2018
RHCS6: Clustered LVM
Viewed 2858 times since Sun, Jun 3, 2018
ZPOOL: Create a new zpool for zfs filesystems
Viewed 3013 times since Sun, Jun 3, 2018
How to remove CTRL-M (^M) characters from a file in Linux
Viewed 3465 times since Thu, Feb 7, 2019
20 IPtables Examples For New SysAdmins
Viewed 2883 times since Fri, May 15, 2020
3 Ways to Check Linux Kernel Version in Command Line
Viewed 12583 times since Fri, Apr 19, 2019
Expand or grow a file system on a Linux VMWare VM without downtime
Viewed 12367 times since Fri, Jul 27, 2018
RHEL: Resize/disable /dev/shm filesystem
Viewed 16521 times since Sun, May 27, 2018