Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
wetter:boltek:stormforce_xr [03.05.2012 08:49. ] – [Pakete (nach)installieren] django | wetter:boltek:stormforce_xr [31.10.2023 18:42. ] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | ====== StormForce XR: Installation und Konfiguration unter CentOS 6.x ====== | ||
+ | ===== Hardware ===== | ||
+ | ==== Boltec LD-250 ==== | ||
+ | Die Installation des Blitzdedectors gestaltet sich relativ einfach. Es muss lediglich die Antenne (**schwarzer 4-eckiger Block**) an geeigneter Stelle montiert und die richtige Seite gen Norden ausgerichtet werden. Zum Verbinden der Antenne mit dem LD-250 nimmt man am besten ein abgeschirmtes Netzwerkkabel und nicht da der Lieferung beiligendem ungeschirmten Kabels. | ||
+ | |||
+ | Die RS232-Schnittstelle des LD-250 verbindet man dann mit zugehörigen Port unseres Servers. Zu guter Letzt wird dann das Netzteil mit den LD-250 verbunden. | ||
+ | |||
+ | ==== USB-RS232 Adapter ==== | ||
+ | Da am Wetterserver (**// | ||
+ | |||
+ | Die Kunst besteht nun darin, einen passenden Adapter ausfindig zu machen, der ohne größere Systemanpassung (Selbstbau von irgendwelchen Kernlemodulen) "out of the box" von unserem CentOS 6.x Server erkannt wird. | ||
+ | |||
+ | Da der von Boltek mitgelieferte ordendlich Zicken machte, holte ich mir aus dem Swap-Market einen weiteren, der - siehe da - direkt unterstützt wird. | ||
+ | |||
+ | < | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: New USB device found, idVendor=067b, | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: Product: USB-Serial Controller | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: Manufacturer: | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: configuration #1 chosen from 1 choice | ||
+ | Apr 30 00:21:27 pml010010 kernel: pl2303 6-1.1:1.0: pl2303 converter detected | ||
+ | Apr 30 00:21:27 pml010010 kernel: usb 6-1.1: pl2303 converter now attached to ttyUSB0 | ||
+ | </ | ||
+ | |||
+ | Damit unser Stormforce-User **weather** auch später auf dieses Device Zugreifen kann, ändern wir noch gleich die Berechtigung auf diese Device-Datei. | ||
+ | |||
+ | # chown weather: | ||
+ | |||
+ | |||
+ | |||
+ | ===== Pakete (nach)installieren ===== | ||
+ | Für den reibungslosen Betrieb von [[https:// | ||
+ | # yum list python -y | ||
+ | python.i386 | ||
+ | |||
+ | Gemäß der **// | ||
+ | |||
+ | |||
+ | - Für den Server-Part der Software: < | ||
+ | - Für den Client-Teil der Anwendung: < | ||
+ | |||
+ | /** # yum install MySQL-python python-game python-numeric ImageMagick | ||
+ | Für das Paket **pyserial** müssen wir etwas Hand anlegen, da es weder im Base- noch im Epel-Repository ein passendes Paket gibt. Daher müssen wir in den sauren Apfel beissen und das Paket direkt aus einem uns vertrauenswürdig eingestuften Quelle laden. Wir laden uns diese Paket also wie folgt auf unseren Rechner: | ||
+ | # cd / | ||
+ | # wget https:// | ||
+ | | ||
+ | Anschließend installieren wir diese besondere Paket: | ||
+ | # yum install --nogpgcheck localinstall / | ||
+ | **/ | ||
+ | |||
+ | ===== PostgreSQL-Datenbank ===== | ||
+ | Im Gegensatz zum Entwicklungszweig **stormforce**, | ||
+ | ==== Datenbank-Daemon installieren und konfigurieren ==== | ||
+ | Den benötigten Datenbank-Daemon installieren wir, wie soll es anders sein, einfach via **yum**. | ||
+ | - **Installation** < | ||
+ | - **Datenbank Initialisieren** < | ||
+ | - **Konfiguration** < | ||
+ | listen_addresses = ' | ||
+ | ... | ||
+ | |||
+ | ... | ||
+ | log_line_prefix = '%t %u %d' | ||
+ | ... | ||
+ | |||
+ | </ | ||
+ | |||
+ | # TYPE DATABASE | ||
+ | |||
+ | # " | ||
+ | local | ||
+ | # IPv4 local connections: | ||
+ | host all | ||
+ | # IPv6 local connections: | ||
+ | #host all | ||
+ | - **Datenbank-Daemon starten** < | ||
+ | - **Datenbank-Daemon Systemstart aktivieren** < | ||
+ | - **Datenbank-Systemuser erstellen**: | ||
+ | - **StormForce XR _ Datenbanknutzer anlegen**: < | ||
+ | psql (8.4.9) | ||
+ | Type " | ||
+ | |||
+ | postgres=#</ | ||
+ | - **Datenbanktabelle(n) anzeigen**: < | ||
+ | List of databases | ||
+ | | ||
+ | ---------------+----------+----------+-------------+-------------+----------------------- | ||
+ | | ||
+ | | ||
+ | : postgres=CTc/ | ||
+ | : stormforce_user | ||
+ | : =CTc/ | ||
+ | | ||
+ | : postgres=CTc/ | ||
+ | | ||
+ | : postgres=CTc/ | ||
+ | (4 rows) | ||
+ | </ | ||
+ | |||
+ | ==== Datenbank-Zugang testen ==== | ||
+ | Als nächstes überprüfen wir, ob der zuvor angelegt User/Zugang auch funktioniert. | ||
+ | $ psql -h localhost -d stormforce_xr -U stormforce_user -W | ||
+ | |||
+ | | ||
+ | |||
+ | < | ||
+ | Type " | ||
+ | |||
+ | stormforce_xr=> | ||
+ | </ | ||
+ | stormforce_xr=> | ||
+ | |||
+ | |||
+ | |||
+ | ===== Stormforce ===== | ||
+ | ==== Download ==== | ||
+ | Als nächstes holen wir uns die aktuelle Stormforce von der Projektseite bei Google. | ||
+ | cd / | ||
+ | wget https:// | ||
+ | ==== Installation ==== | ||
+ | Zu erst entpacken wir unser Paket. | ||
+ | < | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | stormforce/ | ||
+ | Für die spätere einfache Versionierung ändern wir den **stormforce**-Pfad auf // | ||
+ | mv / | ||
+ | Wir haben es dann zukünftig leichter, wenn wir mehrere Versionen zum testen parallel vorhalten wollen. | ||
+ | Anschließend setzen wir wieder einen symbolischen Link mit dem gewünschten Zielpfadnamen auf unser neues Verzeichnis. | ||
+ | ln -s / | ||
+ | ==== Berechtigungen ==== | ||
+ | Damit unser **user** auch Zugriff auf alle Dateien bekommt, ändern wir noch die Dateirechte ab | ||
+ | chown -R django: | ||
+ | ==== erste Programmstarts ==== | ||
+ | === Server === | ||
+ | Nun ist es an der Zeit, **stormforce-xr** das erste mal zu starten. Als erstes starten wir mal den Server-Part der Anwendung an: | ||
+ | # python sxr_server.py | ||
+ | <code python> | ||
+ | global CLOSE_DISTANCE, | ||
+ | |||
+ | ######################################################################### | ||
+ | # Copyright/ | ||
+ | ######################################################################### | ||
+ | ######################################################################### | ||
+ | # Copyright (c) 2008-2012, Daniel Knaggs - 2E0DPK/ | ||
+ | # All rights reserved. | ||
+ | # # | ||
+ | # Redistribution and use in source and binary forms, with or without | ||
+ | # modification, | ||
+ | # are met: - # | ||
+ | # # | ||
+ | # * Redistributions of source code must retain the above copyright | ||
+ | # | ||
+ | # # | ||
+ | # * Redistributions in binary form must reproduce the above copyright # | ||
+ | # | ||
+ | # the documentation and/or other materials provided with the # | ||
+ | # | ||
+ | # # | ||
+ | # * Neither the name of the author nor the names of its contributors | ||
+ | # may be used to endorse or promote products derived from this # | ||
+ | # | ||
+ | # # | ||
+ | # * This Software is not to be used for safety purposes. | ||
+ | # # | ||
+ | # * You agree and abide the Disclaimer for your Boltek products. | ||
+ | # # | ||
+ | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
+ | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # | ||
+ | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
+ | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # | ||
+ | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # | ||
+ | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # | ||
+ | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # | ||
+ | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # | ||
+ | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
+ | ######################################################################### | ||
+ | |||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | 03/05/2012 10:52:30 | SXR/ | ||
+ | </ | ||
+ | |||
+ | Wie uns das Programm freundlich mitteilte, müssen wir nun noch die **Server-XML**-Konfigurationsdatei // | ||
+ | |||
+ | # vim / | ||
+ | <file xml / | ||
+ | < | ||
+ | <Setting ServerPort=" | ||
+ | <Setting LD250Port="/ | ||
+ | <Setting LD250Speed=" | ||
+ | <Setting LD250Bits=" | ||
+ | <Setting LD250Parity=" | ||
+ | <Setting LD250StopBits=" | ||
+ | <Setting LD250Squelch=" | ||
+ | <Setting LD250UseUncorrectedStrikes=" | ||
+ | <Setting EFM100Port=""/> | ||
+ | <Setting EFM100Speed=" | ||
+ | <Setting EFM100Bits=" | ||
+ | <Setting EFM100Parity=" | ||
+ | <Setting EFM100StopBits=" | ||
+ | <Setting PostgreSQLServer=" | ||
+ | <Setting PostgreSQLDatabase=" | ||
+ | <Setting PostgreSQLUsername=" | ||
+ | <Setting PostgreSQLPassword=""/> | ||
+ | <Setting CloseDistance=" | ||
+ | <Setting TRACSensitivity=" | ||
+ | <Setting TRACStormWidth=" | ||
+ | <Setting StrikeCopyright=" | ||
+ | <Setting DebugMode=" | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | === Client === | ||
+ | Als nächstes starten wir das erste mal den Client-teil der Anwendung **stormforce-xr** das erste mal zu starten. Als erstes starten wir mal den Server-Part der Anwendung an: | ||
+ | |||
+ | # python sxr_client.py | ||
+ | <code python> | ||
+ | sxr_client.py: | ||
+ | global DEBUG_MODE, DEMO_MODE, SHOW_CROSSHAIR, | ||
+ | |||
+ | ######################################################################### | ||
+ | # Copyright/ | ||
+ | ######################################################################### | ||
+ | ######################################################################### | ||
+ | # Copyright (c) 2008-2012, Daniel Knaggs - 2E0DPK/ | ||
+ | # All rights reserved. | ||
+ | # # | ||
+ | # Redistribution and use in source and binary forms, with or without | ||
+ | # modification, | ||
+ | # are met: - # | ||
+ | # # | ||
+ | # * Redistributions of source code must retain the above copyright | ||
+ | # | ||
+ | # # | ||
+ | # * Redistributions in binary form must reproduce the above copyright # | ||
+ | # | ||
+ | # the documentation and/or other materials provided with the # | ||
+ | # | ||
+ | # # | ||
+ | # * Neither the name of the author nor the names of its contributors | ||
+ | # may be used to endorse or promote products derived from this # | ||
+ | # | ||
+ | # # | ||
+ | # * This Software is not to be used for safety purposes. | ||
+ | # # | ||
+ | # * You agree and abide the Disclaimer for your Boltek products. | ||
+ | # # | ||
+ | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
+ | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # | ||
+ | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
+ | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # | ||
+ | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # | ||
+ | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # | ||
+ | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # | ||
+ | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # | ||
+ | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
+ | ######################################################################### | ||
+ | |||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | </ | ||
+ | |||
+ | Auch teilt uns das Programm freundlich mit, dass wir nun noch die **Client-XML**-Konfigurationsdatei // | ||
+ | |||
+ | # vim / | ||
+ | <file xml / | ||
+ | <?xml version=" | ||
+ | < | ||
+ | <Setting StormForceXRServer=" | ||
+ | <Setting DemoMode=" | ||
+ | <Setting StrikeShape=" | ||
+ | <Setting ShowCrosshair=" | ||
+ | <Setting ShowRangeCircles=" | ||
+ | <Setting UpdatePeriodCapture=" | ||
+ | <Setting UpdatePeriodCurrentTime=" | ||
+ | <Setting UpdatePeriodEFM100=" | ||
+ | <Setting UpdatePeriodLD250=" | ||
+ | <Setting UpdatePeriodStrikes=" | ||
+ | <Setting DebugMode=" | ||
+ | </ | ||
+ | </ | ||
+ | Starten wir nun erneut unseren Client wird uns der erste Startbildschirm des StormForce XR Clients präsentiert. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | |||
+ | ==== Stormforce-Aufruf ==== | ||
+ | Nachdem wir unsere Konfiguration erfolgreich abgeschlossen haben, rufen wir nunmehr **stormforce** zum ersten mal richtig auf. //( Vorausgesetzt wir haben die Berechtigungen auf die Device-Datei entsprechend geändert, siehe hierzu [[wetter: | ||
+ | |||
+ | $ python sxr_client.py | ||
+ | <code python> | ||
+ | sxr_client.py: | ||
+ | global DEBUG_MODE, DEMO_MODE, SHOW_CROSSHAIR, | ||
+ | |||
+ | ######################################################################### | ||
+ | # Copyright/ | ||
+ | ######################################################################### | ||
+ | ######################################################################### | ||
+ | # Copyright (c) 2008-2012, Daniel Knaggs - 2E0DPK/ | ||
+ | # All rights reserved. | ||
+ | # # | ||
+ | # Redistribution and use in source and binary forms, with or without | ||
+ | # modification, | ||
+ | # are met: - # | ||
+ | # # | ||
+ | # * Redistributions of source code must retain the above copyright | ||
+ | # | ||
+ | # # | ||
+ | # * Redistributions in binary form must reproduce the above copyright # | ||
+ | # | ||
+ | # the documentation and/or other materials provided with the # | ||
+ | # | ||
+ | # # | ||
+ | # * Neither the name of the author nor the names of its contributors | ||
+ | # may be used to endorse or promote products derived from this # | ||
+ | # | ||
+ | # # | ||
+ | # * This Software is not to be used for safety purposes. | ||
+ | # # | ||
+ | # * You agree and abide the Disclaimer for your Boltek products. | ||
+ | # # | ||
+ | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
+ | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # | ||
+ | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
+ | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # | ||
+ | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # | ||
+ | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # | ||
+ | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # | ||
+ | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # | ||
+ | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # | ||
+ | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
+ | ######################################################################### | ||
+ | |||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | 03/05/2012 11:06:38 | SXR/ | ||
+ | </ | ||
+ | |||
+ | Folgender Bildschirm wird uns bei erfolgreichem Programmstart gezeigt. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Mit der Taste " | ||
+ | ===== Individuelle Anpassungen ===== | ||
+ | ==== Startscript für Programmstart ==== | ||
+ | Für den Programmstart erstellen wir uns erst einmal ein rudimentäres Shellscript, | ||
+ | |||
+ | # vim / | ||
+ | <file bash / | ||
+ | #!/bin/sh | ||
+ | # Django : 2012-05-03 | ||
+ | # Schellscript zum vereinfachten Starten des StormForce XR Servers und Clients | ||
+ | |||
+ | cd / | ||
+ | python sxr_server.py & | ||
+ | python sxr_client.py | ||
+ | </ | ||
+ | ==== Starter anlegen ==== | ||
+ | Zum Starten von Stormforce legen wir uns am Desktop einen entsprechenden Starter an. Das Icon => {{: | ||
+ | |||
+ | * **Typ** : Anwendung | ||
+ | * **Name** : StormForce XR | ||
+ | * **Befehl** : / | ||
+ | * **Kommentar** : Visualisierung des Boltek LD-250 mit StormForce XR | ||
+ | |||
+ | {{ : | ||
+ | ==== Automatischer Programmstart nach erfolgter Anmeldung ==== | ||
+ | Damit unser **Boltek LD-250** nun sofort nach einer erfolgreichen Useranmeldung von // | ||
+ | |||
+ | Hierzu legen wir zu erst folgendes Verzeichnis an: | ||
+ | $ mkdir -p / | ||
+ | |||
+ | Dort legen wir die Datei **__stormforce.desktop__** mit folgendem Inhalt an: | ||
+ | $ vim stormforce.desktop | ||
+ | <file code / | ||
+ | [Desktop Entry] | ||
+ | Name=Stormforce | ||
+ | Encoding=UTF-8 | ||
+ | Version=1.0 | ||
+ | Exec=stormforce-start.sh | ||
+ | X-GNOME-Autostart-enabled=true | ||
+ | </ | ||
+ | |||
+ | Somit wird beim nächsten Anmelden am X-Gnome-Desktop das Programm **stormforce** automatisch gestartet. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | ==== Kartenhintergrund ==== | ||
+ | Einen passenden Kartenhintergrund können wir uns entweder über das [[httsp:// | ||
+ | mit Hilfe des [[https:// | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Die Karte hat eine Größe von 600 x 600 Pixel, mit dem Standort in der Bildmitte. Die Karte selbst hat dabei eine Ausdehnung (Radius um den Standort) von 300 Meilen bzw. ca. 480 Kilometer. | ||
+ | |||
+ | Unsere eigene neue Karte speichern wir dann als **// | ||
+ | # | ||
+ | | ||
+ | |||
+ | |||
+ | ==== Update des Bildes auf unserem Webserver/ | ||
+ | === storm2web.sh === | ||
+ | Zum Kopieren unserer, von Stormforce alle 10 Sekunden akutalisierten, | ||
+ | # vim / | ||
+ | |||
+ | <file bash / | ||
+ | # | ||
+ | # Script zum " | ||
+ | # zur Weiterleitung an den virtuellen Host " | ||
+ | # (c) Michael Nausch | ||
+ | # Version 0.01: 29.12.2008 | ||
+ | # 0.02: 07.11.2009 | ||
+ | # 0.03: 04.05.2012 | ||
+ | # 0.04: 16.02.2013 (Anpassung an neue Server-Farm) | ||
+ | |||
+ | WORKDIR="/ | ||
+ | QUELLE="/ | ||
+ | ZIEL=" | ||
+ | QUELLE2="/ | ||
+ | ZIEL1=" | ||
+ | |||
+ | SLEEP=100 | ||
+ | |||
+ | cd $WORKDIR | ||
+ | while true | ||
+ | do | ||
+ | convert -geometry 280x183 $QUELLE $QUELLE2 | ||
+ | rsync -av $QUELLE $ZIEL" | ||
+ | rsync -av $QUELLE2 $ZIEL" | ||
+ | sleep $SLEEP | ||
+ | done | ||
+ | </ | ||
+ | |||
+ | Anschließend versehen wir unser kleines shell-script noch mit dem **" | ||
+ | # chmod +x / | ||
+ | |||
+ | |||
+ | === service stormforce === | ||
+ | Damit nun beim Systemstart automatisch der automatische // | ||
+ | # vim / | ||
+ | |||
+ | <file bash / | ||
+ | #!/bin/sh | ||
+ | # | ||
+ | # chkconfig: 2345 79 31 | ||
+ | # description: | ||
+ | # | ||
+ | # processname: | ||
+ | # | ||
+ | |||
+ | # Source function library. | ||
+ | . / | ||
+ | |||
+ | # Source networking configuration. | ||
+ | . / | ||
+ | |||
+ | # Check that networking is up. | ||
+ | [ ${NETWORKING} = " | ||
+ | |||
+ | prog=storm2web.sh | ||
+ | stormforce_prg=/ | ||
+ | |||
+ | # Source an auxiliary options file if we have one, and pick up OPTIONS, | ||
+ | if [ -r / | ||
+ | . / | ||
+ | fi | ||
+ | |||
+ | start() { | ||
+ | echo -n $" | ||
+ | # $stormforce_prg start | ||
+ | $stormforce_prg & | ||
+ | RETVAL=$? | ||
+ | echo | ||
+ | [ $RETVAL -eq 0 ] && touch / | ||
+ | } | ||
+ | stop() { | ||
+ | echo -n $" | ||
+ | / | ||
+ | # $stormforce_prg stop | ||
+ | RETVAL=$? | ||
+ | echo | ||
+ | [ $RETVAL -eq 0 ] && rm -f / | ||
+ | } | ||
+ | |||
+ | restart() { | ||
+ | stop | ||
+ | start | ||
+ | } | ||
+ | |||
+ | |||
+ | # See how we were called. | ||
+ | case " | ||
+ | start) | ||
+ | start | ||
+ | ;; | ||
+ | stop) | ||
+ | stop | ||
+ | ;; | ||
+ | restart) | ||
+ | restart | ||
+ | ;; | ||
+ | *) | ||
+ | echo $" | ||
+ | exit 1 | ||
+ | esac | ||
+ | |||
+ | exit $RETVAL | ||
+ | </ | ||
+ | Damit der " | ||
+ | # chkconfig stormforce on | ||
+ | Die Überprüfungung ob der Dienst (Daemon) stormforce wirklich bei jedem Systemstart automatisch mit gestartet werden, kann durch folgenden Befehle erreicht werden: | ||
+ | # chkconfig --list | grep stormforce | ||
+ | | ||
+ | |||
+ | Den Daemon starten wir nun initial mit: | ||
+ | # service stormforce start | ||
+ | |||