【root@www s_info】# more sinfo.php
<?
// ==================================================================
// Server Hardware Information
// ==================================================================
//
?>
<html>
<head>
<title>【 Server Information 】</title>
<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=utf-8'>
<STYLE type=text/css>
BODY { FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: Verdana,arial, helvetica, serif; margin : 0 0 0 0;}
</STYLE>
</head>
<body>
<pre>
<b>【Uptime】 :</b>
<? system("uptime"); ?>
<b>【System Information】 :</b>
<? system("uname -a"); ?>
<b>【O/S Name】 :</b>
<? system("cat /etc/issue"); ?>
<b>【CPU Information】 :</b>
<? system("cat /proc/cpuinfo | grep \"model name\\|processor\""); ?>
<b>【Memory Usage (MB)】 :</b>
<? system("free -m"); ?>
<b>【Disk Usage】 :</b>
<? system("df -h"); ?>
<b>【Network info】 :</b>
<? system("cat /etc/sysconfig/network | grep \"GATEWAY\""); ?>
<? system("cat /etc/sysconfig/network-scripts/ifcfg-* | grep \"DEVICE\\|IPADDR\\|NETMASK\\|GATEWAY\""); ?>
<b>【Pstree Usage】 :</b>
<? system("pstree -up"); ?>
</pre>
<br>
<br>
<center>
<font size="1">Copyright © 2008 </font>
</center>
</body>
</html>
'배워서 남주자 > HTML' 카테고리의 다른 글
[ab] ab 아파치 밴치마킹툴 사용법 (2) | 2020.05.10 |
---|---|
[script] 마우스 오른쪽 버튼 기능 방지 (1) | 2019.02.20 |
[html] 사이트 포워딩 frame, script (0) | 2018.03.23 |