Difference between revisions of "XXX: Load Hivetool on the Pi"
(→Install the TEMPerHUM software) |
(→Install the TEMPerHUM software) |
||
Line 107: | Line 107: | ||
#: git clone https://github.com/hivetools/tempered_pi | #: git clone https://github.com/hivetools/tempered_pi | ||
#copy the files to their directories | #copy the files to their directories | ||
− | #: cp hid-query tempered /usr/local/bin/ | + | #: cd tempered_pi |
+ | #: cp hid-query tempered/tempered /usr/local/bin/ | ||
#: cp libtempered-util.so libtempered-util.so.0 libtempered.so libtempered.so.0 /usr/local/lib/arm-linux-gnueabihf/ | #: cp libtempered-util.so libtempered-util.so.0 libtempered.so libtempered.so.0 /usr/local/lib/arm-linux-gnueabihf/ | ||
#: cp tempered-util.h tempered.h /usr/local/include/ | #: cp tempered-util.h tempered.h /usr/local/include/ |
Revision as of 02:16, 30 December 2013
Contents
Get the latest operating system image
Raspbian Wheezy is currently used, although others should work.
The latest image available from http://www.raspberrypi.org/downloads is: 2013-12-20-wheezy-raspbian.zip
- Download the zipped image (approximately 500 MB)
- Calculate the SHA-1 checksum. On Unix/Linux, the command line is:
- sha1sum 2012-12-16-wheezy-raspbian.zip
- This will print out a long hex number which should match the "SHA-1 Checksum" line for the SD image you have downloaded
- Extract the image, with
- unzip 2012-12-20-wheezy-raspbian.zip
Copy the image to the SD card
Make SD card on Unix/Linux system
Detailed instructions: http://elinux.org/RPi_Easy_SD_Card_Setup#Flashing_the_SD_Card_using_Linux_.28including_on_a_Pi.21.29
- Determine the device for the card reader (/dev/mmcblk0 on my laptop).
- Copy the image to the SD card:
- dd bs=4M if=2013-05-25-wheezy-raspbian.img of=/dev/mmcblk0
Make SD card on Windows system
raspberrypi.org recommends using: http://sourceforge.net/projects/win32diskimager/ But be careful. REMOVE any other USB memory devices from your computer. Detailed instructions: http://elinux.org/RPi_Easy_SD_Card_Setup#Flashing_the_SD_Card_using_Windows
Boot Pi, expand file system, set timezone and hostname
- Boot Pi and login
- Expand file system, set timezone and hostname
- sudo raspi-config
- Raspberry Pi Software Configuration Tool (raspi-config)
1 Expand Filesystem Ensures that all of the SD card s 4 Internationalisation Options Set up language and regional sett I2 Change Timezone Set up timezone to match your loc 8 Advanced Options Configure advanced settings A2 Hostname Set the visible name for this Pi
Install required packages
Note: The Pi must be connected to the internet to update or add packages!
- Update before trying to add packages
- sudo apt-get update
- Get gawk, bc for shell scripts, apache for webserver, and libusb to read TEMPerHUMs.
- sudo apt-get install gawk bc apache2
- sudo apt-get install libusb-dev
- Get the graphics library
- sudo apt-get -y install libgd2-xpm-dev build-essential
- Now get Graphics for perl. Force the install.
- sudo cpan -f GD
- sudo cpan GD::Text GD::Graph Date::Format
- Make hivetool and htdocs directories.
- sudo mkdir /home/hivetool
- sudo mkdir /var/www/htdocs
- Get the perl code, the shtml files and the patched pm and copy it to the perl module directory
- git clone https://github.com/hivetools/perl
- sudo cp perl/axestype.pm /usr/local/share/perl/5.14.2/GD/Graph/axestype.pm
- sudo cp perl/*.pl perl/*.shtml /var/www/htdocs
- Get the hivetool bash scripts and copy them to their proper directory
- git clone https://github.com/hivetools/bash
- cp bash/*.sh /home/hivetool
- get the crontab file
- git clone https://github.com/hivetools/cron
Done installing hivetool files
Set the ethernet parameters and DNS servers
Note: A static IP is only needed for port forwarding through the firewall. If you do not intend to open a hole in the firewall to allow public access to the web server, skip this step and let the Pi obtain an IP from the DHCP server in the router.
- set static ip for port forwarding
- sudo vi /etc/network/interfaces:
- iface eth0 inet dhcp
- iface eth0 inet static
- address 192.168.254.31
- netmask 255.255.255.0
- gateway 192.168.254.254
- Set the dns Servers
- /etc/network/interfaces
- /etc/dhcp/dhclient.conf
Configure apache
- set up apache
- sudo vi /etc/apache2/ports.conf
- Listen 8080
- add .pl to AddHandler cgi-script
- sudo vi /etc/apache2/mods-enabled/mime.conf
- AddHandler cgi-script .cgi .pl
- add Includes to Options:
- sudo vi /etc/apache2/sites-enabled/000-default
- Add index.shtml:
- sudo vi /etc/apache2/mods-enabled/dir.conf
- sudo cp /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled/
Misc
If the hostname was not set above using raspi-config, set the hostname:
- Set the local host name
- sudo vi /etc/hostname
- and edit the local host name here, too:
- sudo vi /etc/hosts
Install the TEMPerHUM software
- get the binaries and libraries
- git clone https://github.com/hivetools/tempered_pi
- copy the files to their directories
- cd tempered_pi
- cp hid-query tempered/tempered /usr/local/bin/
- cp libtempered-util.so libtempered-util.so.0 libtempered.so libtempered.so.0 /usr/local/lib/arm-linux-gnueabihf/
- cp tempered-util.h tempered.h /usr/local/include/
- run ldconfig (or reboot)
or
Install from source: http://hivetool.net/node/59
Edit the cron table
The scripts that read the sensors, log the data, and send it off site (if enabled) are run periodically by the scheduler, cron. Cron setup is done with crontab. For cron setup and examples, see Sample contab entries