User:Ramuk

From NAS-Central Buffalo - The Linkstation Wiki

(Difference between revisions)
Jump to: navigation, search
m (MODE TAG and COLORTAG)
m (Reverted edits by Ramuk (Talk); changed back to last version by 128.248.55.84)
Line 18: Line 18:
*Linux LinkStation [[:Category:Kernel|2.6.20.2-kuroboxHG ]]
*Linux LinkStation [[:Category:Kernel|2.6.20.2-kuroboxHG ]]
-
=Kuro [[Kurobox_Hardware_and_Description|HG]]=
+
=Kuro [[Kuroboxwiki:Kurobox_Hardware_and_Description|HG]]=
==Operating System==
==Operating System==
*[[:Category:FreeLink|Freelink]] powerpc hdhglan 1.11
*[[:Category:FreeLink|Freelink]] powerpc hdhglan 1.11
Line 154: Line 154:
=Kernel News=
=Kernel News=
-
 
+
<rss>http://hvkls.dyndns.org/index.rss|charset=UTF-8|</rss>
-
<feed url="http://hvkls.dyndns.org/index.rss">
+
-
<div style="background:#f9f9f9; padding:0px; border:1px solid #aaaaaa; margin-bottom:5px;">
+
-
<div style="line-height:120%; padding:0.2em; background-color:#ddffdd; border-bottom:1px solid #aaaaaa;">
+
-
<span style="font-size:120%;">'''[{PERMALINK} {TITLE}]'''</span>
+
-
</div>
+
-
<div style="background:#ffffff; padding:0.2em 0.4em 0.2em 0.4em;">
+
-
{DESCRIPTION}
+
-
</div>
+
-
</div>
+
-
</feed>
+
-
 
+
-
 
+
-
=Alpha 220 LED Sign=
+
-
 
+
-
I am using my Kuro Pro to drive an Alpha 215/220 LED Display I happened to have one of these signs lying around.
+
-
 
+
-
[[Image:alpha220.jpg]] <br>
+
-
<b>220 Full Matrix</b>, (Case 37.7" x 3.8" x 2.9 ") Tricolor
+
-
<ref>[http://www.adaptivedisplays.com/Media/97014002.pdf 220 brochure (Pdf)]</ref>
+
-
==Install a Serial Port Interface==
+
-
First you are going to have to install a [[serial port]] interface.  I ended up installing mine to the [[Add a Serial port to the ARM9 Linkstation | serial port on the bottom]], but the serial port on the [[SCON-KIT/_PRO_quick_manual | front]]  is easier and the same.
+
-
 
+
-
 
+
-
I used a board from futurelec, they are dirt cheap, but take forever to get to you
+
-
 
+
-
http://www.futurlec.com/Mini_RS232_TTL_3V.shtml
+
-
 
+
-
[[Image:ET-MINI_RS232_3V.jpg|200px]]
+
-
 
+
-
I used a Quick port RJ-12 jack to interface the sign to the serial port converter
+
-
 
+
-
[[Image:RJ12jack.jpg]]
+
-
 
+
-
Then I shoved the whole thing in a 2 port Quick port surface mount housing
+
-
 
+
-
[[Image:2PSM.jpg]]
+
-
 
+
-
==Interface Sign to Serial Port Interface==
+
-
 
+
-
I used a standard 6 wire telephone cable meant for a two line phone (a 4 wire one will not work) Plug one end into the sign.  And one end into the Quick port RJ-12 Jack
+
-
Wire the jack into the serial port board as such<ref>[http://wls.wwco.com/ledsigns/alpha/cable.html Building a Data Cable for Alpha LED Scrolling Signs]</ref>
+
-
 
+
-
* Pin 4 of the RJ12 to RS-232 RX.
+
-
* Pin 3 of the RJ12 to RS-232 TX
+
-
* Pin 6 of the RJ12 to RS-232 GND
+
-
 
+
-
 
+
-
==Setup the serial port==
+
-
 
+
-
You will have to adjust the serial port settings.  I use a script to do this.  My information came from a FAQ on using the Alpha sign with Linux<ref>[http://wls.wwco.com/ledsigns/alpha/AlphaLinux.html Using the Alpha 215C with Linux]
+
-
</ref>.
+
-
===setledsign===
+
-
<pre>
+
-
# /usr/local/bin/setledsign
+
-
#!/bin/sh
+
-
 
+
-
rm /dev/alpha
+
-
ln -s /dev/ttyS0 /dev/alpha
+
-
chmod a+rw /dev/alpha
+
-
stty 9600 -opost -ocrnl -onlcr cs7 parenb -parodd < /dev/alpha
+
-
</pre>
+
-
 
+
-
==Wake up the sign and display something on it==
+
-
I use a script that I stole from the above site. 
+
-
 
+
-
 
+
-
===alphamon.pl===
+
-
<pre>
+
-
# alphamon.pl
+
-
#
+
-
#!/usr/bin/perl
+
-
#
+
-
# Script will display the contents of /tmp/textfile to the ALPHA 220C LED
+
-
# Display
+
-
#
+
-
# Usage
+
-
#
+
-
# alphamon.pl [MODE TAG] [COLORTAG]
+
-
 
+
-
 
+
-
# Get the attention of the sign
+
-
print "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
+
-
 
+
-
 
+
-
# Tell the sign to print the message
+
-
$message = `cat /tmp/textfile` ;
+
-
 
+
-
print "\001" . "Z" . "00" . "\002" . "AA" . "\x1B" . " $ARGV[0]" . "\x1C" . "$ARGV[1]" . $message . "\004";
+
-
</pre>
+
-
 
+
-
===Alpha Sign Syntax===
+
-
<pre>
+
-
"\001" . "Z" . "00" . "\002" . "AA" . "\x1B" . "t". "\x1C" . "1". Hello World . "\004"
+
-
</pre>
+
-
 
+
-
{| border=1
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | <b>Value</b>
+
-
|  ALIGN=LEFT | <b>Meaning</b>
+
-
|  ALIGN=LEFT | <b>Code Type</b>
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | \001
+
-
|  ALIGN=LEFT | SOH
+
-
|  ALIGN=LEFT | Start of Header
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | Z
+
-
|  ALIGN=LEFT | Direct at all Signs
+
-
|  ALIGN=LEFT | Type Code
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | “00”
+
-
|  ALIGN=LEFT | All Signs Should Listen
+
-
|  ALIGN=LEFT | Sign Address
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | \002
+
-
|  ALIGN=LEFT | Start of Text Character
+
-
|  ALIGN=LEFT | Start Type
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | A
+
-
|  ALIGN=LEFT | Text File
+
-
|  ALIGN=LEFT | Write File Type
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | A
+
-
|  ALIGN=LEFT | A
+
-
|  ALIGN=LEFT | File Label
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | \x1B
+
-
|  ALIGN=LEFT | ESC
+
-
|  ALIGN=LEFT | Start of Mode Field
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | t
+
-
|  ALIGN=LEFT | compressed text
+
-
|  ALIGN=LEFT | MODE TAG (see below)
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | \x1C
+
-
|  ALIGN=LEFT | color control code
+
-
|  ALIGN=LEFT | Control Code
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | 1
+
-
|  ALIGN=LEFT | red
+
-
|  ALIGN=LEFT | COLORTAG (see below)
+
-
|-
+
-
|  HEIGHT=16 ALIGN=LEFT | Text
+
-
|  ALIGN=LEFT | Hello World
+
-
|  ALIGN=LEFT | Text Message</TBODY>
+
-
|}
+
-
 
+
-
 
+
-
====MODE TAG and COLORTAG====
+
-
The key parts of this are the MODE TAG and COLORTAG, there is full documentation available for this<ref>[http://www.ams-i.com/Pages/97088061.htm Alpha Sign Communications Protocol (pn 9708-8061)]
+
-
</ref> but here are the pertinant parts.
+
-
 
+
-
{|
+
-
|-valign="top"
+
-
|width="50%"|
+
-
{|
+
-
|-
+
-
| <b>MODE TAG</b> 
+
-
|-
+
-
||
+
-
 
+
-
* a - Regular smooth scroll, right to left
+
-
* b - Appear. Centers as much of message on screen, waits, and  displays  rest of message in similar manner
+
-
* c - Appear with flashing.
+
-
* d - Auto. Randomly picks an effect for each part of the message, as opposed to the message as a whole.
+
-
* e - Scroll up.
+
-
* f - Scroll down from top.
+
-
* g - Jerky scroll from right to left.
+
-
* h - Jerky scroll from left to right.
+
-
* i - Wipe up from bottom, covering text.
+
-
* j - Wipe down from top, covering text.
+
-
* k - Wipe over from right to left, character by character, not by pixels.
+
-
* l - Wipe over from left to right, character by character.
+
-
* m - Scroll up. Same as 'e'?
+
-
* n - This is doing something weird based on message itself. Will have to investigate.
+
-
* o - Auto/Random (same as 'd'?)
+
-
* p - --> CENTER <-- Text appears at sides and squishes content in.
+
-
* q - <-- CENTER --> Text splits in center and pushed content out.
+
-
* r - --> COVER <-- New text covers old out to in.
+
-
* s - <-- UNCOVER --> New text uncovers in to out.
+
-
* t - Compressed text! Using this mode the sign tricks your eyes into seeing more characters than it is capable  of physically producing. Scrolls right to left.
+
-
* u - Fast Appear.
+
-
* v - Medium Appear.
+
-
* w - Maybe medium-slow appear.
+
-
* x - Same as 'p'?
+
-
* y - Same as 'q'?
+
-
* z - Same as 'r'?
+
-
* @ - The sign went blank.
+
-
 
+
-
|}
+
-
||
+
-
{|
+
-
|-
+
-
||  <b>COLORTAG</b>
+
-
|-
+
-
||
+
-
* 1 - Red
+
-
* 2 - Green
+
-
* 3 - Amber
+
-
* 4 - Dim red
+
-
* 5 - Dim green
+
-
* 6 - Brown
+
-
* 7 - Orange
+
-
* 8 - Yellow
+
-
* 9 - Rainbow 1
+
-
* A - Rainbow 2
+
-
* B - Color mix
+
-
* C - Autocolor
+
-
 
+
-
|}
+
-
|}
+
-
 
+
-
==Stock Ticker==
+
-
I do use the sign for a number of other purposes, to display RSS feeds and weather forecasts.  But the most complicated script is to display a live stock ticker that gets it's data from yahoo.  It then colors the prices green if they are positive/up and red if they are negative/down for the day.
+
-
 
+
-
First you should install perl and make
+
-
 
+
-
apt-get install perl make
+
-
 
+
-
Then install the quote package <ref>[http://www.circlemud.org/~jelson/software/quote quote -- command-line stock quote display]
+
-
</ref>
+
-
 
+
-
wget http://www.circlemud.org/pub/jelson/quote/quote-0.05.tar.gz
+
-
tar -xvzf quote-0.05.tar.gz
+
-
cd quote-0.05
+
-
./configure
+
-
./make
+
-
./make install
+
-
 
+
-
you may as well install curl and lynx so that you can use them to get content from the web later
+
-
 
+
-
apt-get install curl lynx
+
-
 
+
-
Lastly here is a shell script to display the ticker
+
-
 
+
-
===leddisplay===
+
-
<pre>
+
-
# /usr/local/bin/leddisplay
+
-
#!/bin/sh
+
-
# Stock ticker symbols
+
-
#
+
-
PTE=/usr/local/bin
+
-
 
+
-
stocks="  ^DJI ^IXIC ^GSPC "
+
-
 
+
-
        quote $stocks | cut -d"(" -f1 |sed 's/^/\x1C9 \x7F \x1C3 /' | sed '/ -/s/:/\x1C1/g' | sed '/ +/s/:/\x1C2/g' > /tmp/textfile
+
-
        $PTE/alphamon.pl t A  > /dev/alpha
+
-
 
+
-
</pre>
+
-
 
+
-
==References==
+
-
<references />
+

Revision as of 21:19, 9 August 2007

200px-CTA_map.png


Contents

Linkstation HG 250

Operating System

150px-Linkstationhg.jpg

experimentA.gif

Kuro HG

Operating System

What I use them for:

My Install

FreeLinkomatix - Convert the LinkStation into a Full-fledged Debian Linux Server

Install an Encrypted Filespace with EncFS

USB Palm OS Device as an LCD Display

S.M.A.R.T. hard drive monitoring

This little script generates a small bit of html showing a number of system stats


 tc=$(smartctl -a /dev/hda | grep 194 | colrm 1 87)
 tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc)
 echo " Used   %  Share"
 echo "------ --- -----"
 df -h | grep /dev/hda | colrm 1 27 | colrm 6 11
 df -h| colrm  45 55 | grep /dev/s | grep -v tmpfs | colrm 1 27 | colrm 6 11
 echo "<table>"
 echo "<tr><td>Users:</td><td>"
 users
 echo "</td></tr>"
 echo "<tr><td>Uptime:</td><td> "
 uptime \
  | awk '{
   # chops off "up" and everything before it:
   sub(/.*up[ ]+/,"",$0)
   # chops off ", # users" and everything after it:
   sub(/,[ ]+[0-9]+ user.*/,"",$0)
   # cleans up extra spaces, i think:
   sub(/,/,"",$0)
   # obvious enough, prints the results
   print($0)
 }'
 echo "</td></tr>"
 echo "<tr><td>Load:</td><td>"
 uptime | sed 's/^.*average: / /'
 echo "</td></tr><tr><td>Temp:</td><td>"
 echo $tf " F"
 echo "</td></tr> </table>"
 echo "<hr>"
 date | colrm 20 30"
 echo "<hr>"


Album - Photo gallery generator which has theme support

MarginalHacks/Album: A HTML photo album generator that supports themes. It takes directories of images and creates all the thumbnails and HTML that you need.

apt-get install album

Dominatrix6.jpg

Dominatrix6

  • Use wget to get and install this theme
  • To use a theme, download the theme .tar or .zip and unpack it.
mkdir /home/httpd/Themes/
cd /home/httpd/Themes/
wget http://marginalhacks.com/Hacks/album/Themes/Dominatrix6.tar.gz
tar -xvzf Dominatrix6.tar.gz
rm Dominatrix6.tar.gz
  • Full resolution images are usually too big for a web album, so we'll use medium images on the image pages:
  • Then call album with the -theme option, with or without -theme_path:
album -medium 33% -theme Dominatrix6 /home/httpd/test/Photos
album -medium 33% -theme Dominatrix6 -theme_path /home/httpd/Themes/ /home/httpd/test/Photos

Small and simple console-based bandwidth monitor

Bandwidth Monitor NG (bwm-ng) is a small and simple console-based live bandwidth monitor. Short list of features:

  • Supports /proc/net/dev, netstat, getifaddr, sysctl, kstat and libstatgrab
  • Unlimited number of interfaces supported
  • Interfaces are added or removed dynamically from list
  • White-/blacklist of interfaces
  • Output of KB/s, Kb/s, packets, errors, average, max and total sum
  • Output in curses, plain console, CSV or HTML
  • Configfile
wget http://www.gropp.org/bwm-ng/bwm-ng-0.5.tar.gz
tar bwm-ng-0.5.tar.gz
cd bwm-ng-0.5
./configure
make
make install
bwm-ng -T a -o html

Install raop-play for Airport Express

Raop-play is a music file player for the Apple Airport express, the main functionalities are as follows:

  • Make AEX become your 2'nd sound card device.
  • Discover Airport Express by Apple Rendezvous
  • Browse music files (Supported music file format: m4a(alac or aac), wav, mp3, ogg, flac, aac, pls, raw pcm)
  • Send selected files to the Airport Express
  • Play mp3 stream data (filename started with "http://")

Required Packages:

  • openssl library and header
  • fltk1.1.4 library and header
  • fluid (this comes with fltk1.1.4)
  • libglib-2.0 header only
  • libsamplerate library and header
  • libid3tag library and header

Get any required packages to take care of dependancies:

apt-get install libssl libssl-dev libfltk1.1-dev libfltk1.1c102 fluid libglib2.0-dev libsamplerate0 libsamplerate0-dev libid3tag0 libid3tag0-dev

Then get raop_play-0.5.1.tar.gz from here, compile, make, and install it:

tar -xvzf raop_play-0.5.1.tar.gz
cd raop_play-0.5.1  
./configure
make
make install

BashPodder

BashPodder is a podcast client written in bash. It is designed to be a simple, fast, and lightweight podcast client that always works. It is designed to conform to the KISS principal ("Keep it simple, stupid"). Various GUIs also exist for BashPodder.

wget http://linc.homeunix.org:8080/scripts/bashpodder/bashpodder.shell
wget http://linc.homeunix.org:8080/scripts/bashpodder/parse_enclosure.xsl
wget http://linc.homeunix.org:8080/scripts/bashpodder/bp.conf
chmod a+x bashpodder.shell

change bp.conf to included desired feeds.

Kernel News

Personal tools