Difference between revisions of "Linfo"

From Amahi Wiki
Jump to: navigation, search
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:Apps]]
 
[[Category:Apps]]
* There are 3 status plug-in modules installed, but disabled by default:
+
* There are 7 plug-in modules installed, but disabled by default:
 
# Cups:  Show cups printer status and job queue.
 
# Cups:  Show cups printer status and job queue.
 
# Samba:  Samba server connections, their users, and locked (opened) files.
 
# Samba:  Samba server connections, their users, and locked (opened) files.
 
# Truecrypt:  Show mounted truecrypt volumes, their types, size, etc.
 
# Truecrypt:  Show mounted truecrypt volumes, their types, size, etc.
 +
# Soldat:  Show the status (current map,gamemode,players,scores,etc) of multiple Soldat dedicated game servers.
 
# Dhcp3:  Show current leases in dhcpd3 server.
 
# Dhcp3:  Show current leases in dhcpd3 server.
 +
# Transmission:  Show status of locally running torrents in the Transmission torrent client.
 +
# APC Access:  Show the command output of the APC program apcaccess.
  
 
* Change the following lines in ''/var/hda/web-apps/linfo/html/config.inc.php'' from '''false''' to '''true''' for the ones you want enabled:
 
* Change the following lines in ''/var/hda/web-apps/linfo/html/config.inc.php'' from '''false''' to '''true''' for the ones you want enabled:
Line 11: Line 14:
 
  $settings['extensions']['truecrypt'] = false;
 
  $settings['extensions']['truecrypt'] = false;
 
  $settings['extensions']['dhcpd3_leases'] = false;  
 
  $settings['extensions']['dhcpd3_leases'] = false;  
 +
$settings['extensions']['soldat'] = false; 
 +
$settings['extensions']['transmission'] = false;
 +
$settings['extensions']['apcaccess'] = false;
  
* There is also one additional plug-in module available:
+
== Additional Modules ==
[http://downloads.sourceforge.net/project/linfo/Linfo%20Extensions/soldat-0.1.tar.gz soldat]:  Show the status (current map,gamemode,players,scores,etc) of multiple Soldat dedicated game servers.
+
* The following plug-in(s) are currently NOT installed by default, but can be easily added (instructions are included with the file):
* To install it:
 
# Download it to the ''/var/hda/web-apps/linfo'' directory
 
# Extract the php file and place it in ''/var/hda/web-apps/linfo/html/lib'' directory
 
# Add the lines from the included README file to the end of ''/var/hda/web-apps/linfo/html/config.inc.php''
 
  
  
 
'''NOTE:'''  As additional plug-in modules become available, they will be added to the application or posted here.
 
'''NOTE:'''  As additional plug-in modules become available, they will be added to the application or posted here.

Latest revision as of 07:55, 9 January 2011

  • There are 7 plug-in modules installed, but disabled by default:
  1. Cups: Show cups printer status and job queue.
  2. Samba: Samba server connections, their users, and locked (opened) files.
  3. Truecrypt: Show mounted truecrypt volumes, their types, size, etc.
  4. Soldat: Show the status (current map,gamemode,players,scores,etc) of multiple Soldat dedicated game servers.
  5. Dhcp3: Show current leases in dhcpd3 server.
  6. Transmission: Show status of locally running torrents in the Transmission torrent client.
  7. APC Access: Show the command output of the APC program apcaccess.
  • Change the following lines in /var/hda/web-apps/linfo/html/config.inc.php from false to true for the ones you want enabled:
$settings['extensions']['smb'] = false;
$settings['extensions']['cups'] = false;
$settings['extensions']['truecrypt'] = false;
$settings['extensions']['dhcpd3_leases'] = false; 
$settings['extensions']['soldat'] = false;  
$settings['extensions']['transmission'] = false;
$settings['extensions']['apcaccess'] = false;

Additional Modules

  • The following plug-in(s) are currently NOT installed by default, but can be easily added (instructions are included with the file):


NOTE: As additional plug-in modules become available, they will be added to the application or posted here.