parent
22fd69a5e8
commit
5f2a9496f7
4 changed files with 21 additions and 13 deletions
@ -1 +1,7 @@ |
|||||||
# Vmstat |
# Vmstat |
||||||
|
|
||||||
|
`vmstat` (**V**irtual **M**emory **Stat**istics) is a performance monitoring command. It is used to obtain information about memory, system processes, paging, interrupts, block I/O, disk, and CPU scheduling. Users can observe system activity virtually in real time by specifying a sampling period. |
||||||
|
|
||||||
|
<ResourceGroupTitle>Useful Links</ResourceGroupTitle> |
||||||
|
<BadgeLink colorScheme='blue' badgeText='Man page' href='https://man7.org/linux/man-pages/man8/vmstat.8.html'>vmstat man page</BadgeLink> |
||||||
|
<BadgeLink colorScheme='blue' badgeText='Tutorial' href='https://phoenixnap.com/kb/vmstat-command'>vmstat tutorial</BadgeLink> |
||||||
|
@ -0,0 +1,9 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
set -e |
||||||
|
|
||||||
|
git reset --soft HEAD~$(git rev-list --count HEAD ^master) |
||||||
|
git checkout master |
||||||
|
git add -A |
||||||
|
git commit -m "$1" |
||||||
|
|
Loading…
Reference in new issue