Difference between revisions of "PhpSysInfo"
Line 16: | Line 16: | ||
=== Ubuntu Install lm-sensors [https://help.ubuntu.com/community/SensorInstallHowto#Install_and_Configure_lm-sensors (Additional help)] === | === Ubuntu Install lm-sensors [https://help.ubuntu.com/community/SensorInstallHowto#Install_and_Configure_lm-sensors (Additional help)] === | ||
− | + | sudo apt-get install lm-sensors | |
− | sudo sensors-detect | + | sudo sensors-detect |
− | Answer the questions. At the end of sensors-detect, Type "yes" to have sensors-detect insert modules into /etc/modules, or edit /etc/modules yourself | + | Answer the questions. At the end of sensors-detect, Type "yes" to have sensors-detect insert modules into /etc/modules, or edit /etc/modules yourself service module-init-tools start |
− | + | cd /var/hda/web-apps/phpsysinfo/html | |
− | cp config.php config.php_bak | + | cp config.php config.php_bak |
to make a backup of your original config file | to make a backup of your original config file | ||
− | + | nano config.php | |
Change define('PSI_SENSOR_PROGRAM', ''); to define('PSI_SENSOR_PROGRAM', 'LMSensors'); This tells phpsysinfo to use lm_sensors to obtain and display sensor information. | Change define('PSI_SENSOR_PROGRAM', ''); to define('PSI_SENSOR_PROGRAM', 'LMSensors'); This tells phpsysinfo to use lm_sensors to obtain and display sensor information. |
Revision as of 22:47, 25 July 2014
Update Needed | |
---|---|
The contents of this page have become outdated or irrelevant. Please consider updating it. |
Getting More Info
After the one click install of phpsysinfo in Amahi 6.0, you need to do some modifications to get all system information displayed.
Fedora Install lm-sensors
open a terminal session and login as root or if you have sudo configured use sudo in front of all commands.
type
su -
at the prompt enter your root password
then type
yum install lm_sensors sensors-detect
Ubuntu Install lm-sensors (Additional help)
sudo apt-get install lm-sensors sudo sensors-detect
Answer the questions. At the end of sensors-detect, Type "yes" to have sensors-detect insert modules into /etc/modules, or edit /etc/modules yourself service module-init-tools start
cd /var/hda/web-apps/phpsysinfo/html cp config.php config.php_bak to make a backup of your original config file
nano config.php
Change define('PSI_SENSOR_PROGRAM', ); to define('PSI_SENSOR_PROGRAM', 'LMSensors'); This tells phpsysinfo to use lm_sensors to obtain and display sensor information.
Other optional changes:
define('PSI_HIDE_MOUNTS', '/boot,/dev/shm'); - hides /boot and /dev/shm in mounted filesystems define('PSI_HIDE_FS_TYPES', 'tmpfs'); - hides tmpfs filesystems define('PSI_LOAD_BAR', true); define('PSI_UPS_PROGRAM', 'Apcupsd'); - use apcupsd to show APC info from APC UPS's define('PSI_HDD_TEMP', 'command'); - tells PSI to obtain current hdd temp in Ubuntu run also
bash code |
---|
sudo dpkg-reconfigure hddtemp
|
and set suid to YES
after saving config.php phpsysinfo will provide voltage, fan and temperature data.