Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title><?php echo $SERVER_NAME; ?>-HW Monitor-</title>
- <STYLE type=text/css>
- BODY { FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: Verdana,arial, helvetica, serif; : 0 0 0 0;}
- .style1 {
- color: #999999;
- font-weight: bold;
- }
- </STYLE>
- </head>
- <body>
- <blockquote>
- <pre>
- <span class="style1">Uptime:</span>
- <?php system("uptime"); ?>
- <span class="style1">Servers CPU and RAM usage:</span>
- <?php
- `screen -d -m -S htop_session htop`;
- sleep(1);
- `screen -p 0 -S htop_session -X hardcopy`;
- `screen -p 0 -S htop_session -X quit`;
- ?>
- <?php print file_get_contents('hardcopy.0'); ?>
- </pre>
- </blockquote>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement