Nut: Difference between revisions
From DWIKI
No edit summary |
No edit summary |
||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== NUT - Network UPS Tools == | |||
* [http://www.networkupstools.org/ Network UPS Tools] | |||
The primary goal of the Network UPS Tools (NUT) project is to provide reliable monitoring of UPS hardware and ensure safe shutdowns of the systems which are connected. | |||
=== building === | |||
#maybe consider using 'nut' for username, to avoid possible confusion with existing tools | |||
./configure --prefix=/usr/local --sysconfdir=/etc/ups --with-user=ups | ./configure --prefix=/usr/local --sysconfdir=/etc/ups --with-user=ups | ||
make | make | ||
Line 5: | Line 11: | ||
groupadd ups | groupadd ups | ||
useradd -g ups ups | useradd -g ups ups | ||
chown ups.ups / | chown ups.ups /dev/ttyS0 | ||
chmod 0600 /dev/ttyS0 | chmod 0600 /dev/ttyS0 | ||
mkdir /var/state/ups | mkdir /var/state/ups | ||
Line 11: | Line 17: | ||
chown ups.ups /var/state/ups | chown ups.ups /var/state/ups | ||
=== configuring === | |||
first ups.conf | first ups.conf | ||
=== running === | |||
upsdrvctl start | |||
upsd -u ups & | |||
upsmon -u ups | |||
#query the ups | |||
upsc myups@localhost | |||
=== notes === | |||
newhidups uses libusb, which means disable hiddev in kernel config? |
Latest revision as of 13:54, 1 September 2006
NUT - Network UPS Tools
The primary goal of the Network UPS Tools (NUT) project is to provide reliable monitoring of UPS hardware and ensure safe shutdowns of the systems which are connected.
building
#maybe consider using 'nut' for username, to avoid possible confusion with existing tools ./configure --prefix=/usr/local --sysconfdir=/etc/ups --with-user=ups make make install make install-conf groupadd ups useradd -g ups ups chown ups.ups /dev/ttyS0 chmod 0600 /dev/ttyS0 mkdir /var/state/ups chmod 0700 /var/state/ups chown ups.ups /var/state/ups
configuring
first ups.conf
running
upsdrvctl start upsd -u ups & upsmon -u ups #query the ups upsc myups@localhost
notes
newhidups uses libusb, which means disable hiddev in kernel config?