????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpsysinfo/plugins/SMART/ |
Upload File : |
<?php
/**
* SMART Plugin Config File
*
* PHP version 5
*
* @category PHP
* @package PSI_Plugin_SMART
* @author Antoine Bertin <diaoulael@users.sourceforge.net>
* @copyright 2009 phpSysInfo
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @version SVN: $Id: SMART.config.php 361 2010-01-31 11:32:30Z jacky672 $
* @link http://phpsysinfo.sourceforge.net
*/
/**
* Smartctl program
* If the smartctl program is available we can read S.M.A.R.T informations
* - 'command' smartctl command is run everytime the block gets refreshed or build
* if error: Smartctl open device: /dev/sda failed: Permission denied
* Not recommended method:
* -execute: chmod 4755 /usr/sbin/smartctl
* - 'data' (a file must be available in the data directory of the
* phpsysinfo installation with the filename "SMART{disk_number}.txt";
* content is the output from "smartctl --all device")
*/
define('PSI_PLUGIN_SMART_ACCESS', 'command');
/**
* Smartctl devices to monitor
* If the smartctl support is enabled, those disks information will be displayed
* - define('PSI_PLUGIN_SMART_DEVICES', '/dev/hda,/dev/hdb'); // Will display those two disks informations
*/
define('PSI_PLUGIN_SMART_DEVICES', '/dev/sda, /dev/sdb');
/**
* Smartctl --device option value
* If the smartctl support is enabled, enter the --device option value for smartctl command
* - define('PSI_PLUGIN_SMART_DEVICE', false); // If this option is not needed
* - define('PSI_PLUGIN_SMART_DEVICE', 'marvell'); // If marvell
*/
define('PSI_PLUGIN_SMART_DEVICE', false);
/**
* Smartctl ID# and column name from "Vendor Specific SMART Attributes with Thresholds" table
* If the smartctl support is enabled, enter the ID#-COLUMN_NAME from "Vendor Specific SMART Attributes with Thresholds" table from smartctl output.
* COLUMN_NAME of this ID# will be displayed in the phpsysinfo S.M.A.R.T table. If you want RAW_VALUE to be displayed for the temperature (ID# 194) enter 194-RAW_VALUE
* - define('PSI_PLUGIN_SMART_IDS', '194-VALUE,4-VALUE,009-RAW_VALUE'); // ID#-COLUMN_NAME, ID#-COLUMN_NAME, etc...
*/
define('PSI_PLUGIN_SMART_IDS', '005-RAW_VALUE,194-RAW_VALUE,4-RAW_VALUE,009-RAW_VALUE,012-RAW_VALUE,193-RAW_VALUE,001-RAW_VALUE,007-RAW_VALUE,200-RAW_VALUE');
?>