tldr/pages/linux/free.md

20 lines
286 B
Markdown
Raw Normal View History

2014-03-05 06:47:01 +00:00
# free
> Display amount of free and used memory in the system.
2014-03-05 06:47:01 +00:00
- Display system memory:
2014-03-05 06:47:01 +00:00
`free`
- Display memory in Bytes/KB/MB/GB:
2014-03-05 06:47:01 +00:00
`free {{-b/-k/-m/-g}}`
- Display memory in human readable units:
2014-03-05 06:47:01 +00:00
`free -h`
- Continuous monitor memory (refresh every X seconds):
2014-03-05 06:47:01 +00:00
`free -s {{X}}`