Difference between revisions of "CISN Display CentOS"

From Stadm
Jump to navigationJump to search
Line 17: Line 17:
 
*after restart you have to type in credentials for cisn_display
 
*after restart you have to type in credentials for cisn_display
 
*set a password for the kiosk user
 
*set a password for the kiosk user
 +
*add a sleep and reboot to the crontab
 +
#Sleep at 8pm everyday for 11 hours, reboot at 7:30 am
 +
0 20 * * * /usr/sbin/rtcwake -m mem -s 39600
 +
30 7 * * * /sbin/shutdown -r now
 +
 
==References==
 
==References==
 
*Adapted from: http://www.marcinwilk.eu/lang/en-us/2014/05/scientific-linux-6-centos-6-kiosk/
 
*Adapted from: http://www.marcinwilk.eu/lang/en-us/2014/05/scientific-linux-6-centos-6-kiosk/

Revision as of 16:24, 16 December 2015

Introduction

This page will attempt to document the creation of a kiosk type display of the CISN Display. The CISN Display software displays near real-time earthquake location information available via the network. A complementary component would be a waveform viewer showing seismograms (in real time) from various locations around California (or beyond), but we have not had time to mount a concerted effort along those lines yet.

Historical Notes

Installation Guide

Setup

  • Install centos 6 on a compatible system, we will use a script that runs off this machine
    • note:have not tested on centos minimal, install centos with a gui, script can be run remotely
  • once installed run the following script to get the CISN Display installed as a kiosk
  • Download Media: make_cisn.sh

Additional Steps

  • after restart you have to type in credentials for cisn_display
  • set a password for the kiosk user
  • add a sleep and reboot to the crontab
#Sleep at 8pm everyday for 11 hours, reboot at 7:30 am
0 20 * * * /usr/sbin/rtcwake -m mem -s 39600
30 7 * * * /sbin/shutdown -r now

References