Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
Queries Linux system information details.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
SystemInfo | 11.2 | ❌ No | ❌ No | ✅ Yes | ✅ Yes, on Linux | ❌ No |
none
Returns JSON or error.
UpTime | Seconds since boot |
Loads | 1, 5, and 15 minute load averages |
TotalRAM | Total usable main memory size |
FreeRAM | Available memory size |
SharedRAM | Amount of shared memory |
BufferRAM | Memory used by buffers |
TotalSwap | Total swap space size |
FreeSwap | Swap space still available |
Processes | Number of current processes |
TotalHigh | Total high memory size |
FreeHigh | Available high memory size |
MemoryUnit | Memory unit size in bytes |
ConfiguredProcessors | How many CPU cores. |
AvailableProcessors | How many available to you. |
TotalPhysicalPages | Total physical memory pages |
AvailablePhysicalPages | Available memory pages. |
Run it on a Linux server with Ubuntu:
Exit Script [ Text Result: MBS("SystemInfo.LinuxSystemInfo") ]
Example result:
{
"UpTime": 708,
"Loads": [0.023873, 0.048828, 0.067382],
"TotalRAM": 4112195584,
"FreeRAM": 1589587968,
"SharedRAM": 1622016,
"BufferRAM": 20881408,
"TotalSwap": 4111462400,
"FreeSwap": 4111462400,
"Processes": 1010,
"TotalHigh": 0,
"FreeHigh": 0,
"MemoryUnit": 1,
"ConfiguredProcessors": 4,
"AvailableProcessors": 4,
"TotalPhysicalPages": 1003954,
"AvailablePhysicalPages": 388083
}
Run it on a Linux server with CentOS:
Exit Script [ Text Result: MBS("SystemInfo.LinuxSystemInfo") ]
Example result:
{
"UpTime": 803,
"Loads": [0.049316, 0.04345, 0.045898],
"TotalRAM": 2964705280,
"FreeRAM": 275378176,
"SharedRAM": 0,
"BufferRAM": 1105920,
"TotalSwap": 2147479552,
"FreeSwap": 2147479552,
"Processes": 1150,
"TotalHigh": 0,
"FreeHigh": 0,
"MemoryUnit": 1,
"ConfiguredProcessors": 2,
"AvailableProcessors": 2,
"TotalPhysicalPages": 723805,
"AvailablePhysicalPages": 67231
}
Created 8th May 2021, last changed 13th May 2021
SystemInfo.IsiOSAppOnMac - SystemInfo.MACAddress
Feedback: Report problem or ask question.