<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:Zoom>0</w:Zoom>
<w:TrackMoves>false</w:TrackMoves>
<w:TrackFormatting/>
<w:PunctuationKerning/>
<w:DrawingGridHorizontalSpacing>18 pt</w:DrawingGridHorizontalSpacing>
<w:DrawingGridVerticalSpacing>18 pt</w:DrawingGridVerticalSpacing>
<w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
<w:DisplayVerticalDrawingGridEvery>0</w:DisplayVerticalDrawingGridEvery>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:DontGrowAutofit/>
<w:DontAutofitConstrainedTables/>
<w:DontVertAlignInTxbx/>
</w:Compatibility>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" LatentStyleCount="276">
</w:LatentStyles>
</xml><![endif]-->
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:Cambria;
mso-ascii-font-family:Cambria;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Cambria;
mso-hansi-theme-font:minor-latin;}
</style>
<![endif]-->
<!--StartFragment--><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;
font-family:Arial;mso-fareast-font-family:Cambria;mso-fareast-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US">Raspbian Debian Wheezy</span><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">I’m looking for help with a bash script, run from /etc/inittab, that doesn’t seem to be able to WGET. <br></font><div><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;
font-family:Arial;mso-fareast-font-family:Cambria;mso-fareast-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US"><br></span></div><div><font face="Arial" size="2">I’m trying to write a script which will run pilinbpq. The trick I’m trying to do is that every time the script runs, I want it to do a WGET of the bpq config file from my web server. It doesn’t seem to succeed in doing the WGET from the web page if this is run from /etc/inittab. But when I test the script it works fine. HELP?</font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">If I run the script as pi, it runs and works. </font></div><div><font face="Arial" size="2">if I run the script after sudo su root, it runs and works.</font></div><div><font face="Arial" size="2">If I let it run at boot from inittab, it does everything except complete the WGET.</font></div><div><font face="Arial" size="2">I tried letting wget run as root and as pi. That didn’t seem to make any difference. </font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">Here is the script:</font></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">SCRIPTFILE_FROM_WEBSERVER="bpq32.txt";</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">SCRIPTLOGFILE="/home/pi/bpq/scriptrun.log";</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">cd /home/pi/bpq;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">echo "------" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">echo "start of script" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">echo "v001" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">date >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">whoami >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">sudo rm bpq32.txt;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">sudo -u pi wget <a href="http://www.torborg.com/bpq/$HOSTNAME/bpq32.txt">http://www.torborg.com/bpq/$HOSTNAME/bpq32.txt</a>;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">if find "$SCRIPTFILE_FROM_WEBSERVER";</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">then</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);"> echo "bpq config retrieved from webserver" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);"> sudo rm bpq32.old;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);"> mv bpq32.cfg bpq32.old;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);"> mv $SCRIPTFILE_FROM_WEBSERVER bpq32.cfg;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">else</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);"> echo "bpq config NOT retrieved from webserver" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">fi;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">echo "launching bpq" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">sudo -u pi mv linbpq.new linbpq:</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">sudo -u pi ./linbpq;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); position: static; z-index: auto;">echo "end of script" >> $SCRIPTLOGFILE;</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~/bpq $</b></span><span style="color: #ffffff"> </span></div><div><font face="Arial" size="2"> </font><!--EndFragment--></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">Note that I’m doing a whoami in the script and outputting it to the log file. </font></div><div><font face="Arial" size="2">Here is some of the log file</font></div><div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">------</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">start of script</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">v001</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Sun Feb 9 07:52:05 UTC 2014</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">root</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">bpq config NOT retrieved from webserver</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">launching bpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">------</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">start of script</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">v001</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Sun Feb 9 08:02:00 UTC 2014</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">pi</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">bpq config retrieved from webserver</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">launching bpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">end of script</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">------</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">start of script</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">v001</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Sun Feb 9 08:02:28 UTC 2014</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">root</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">bpq config retrieved from webserver</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">launching bpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">end of script</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">root@wakde1-ka2dew-3:/home/pi/bpq# </div></div><div><br></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">The first run was called from /etc/inittab.</font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">The second run was from the pi log-in</font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">The third run was from sudo su root</font></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">Here is the screen text from the runs after I reboot after removing the call from inittab.</font></div><div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">permitted by applicable law.</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Last login: Sun Feb 9 07:44:10 2014 from 10.0.0.179</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~ $</b></span><span style="color: #ffffff"> cd bpq</span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~/bpq $</b></span><span style="color: #ffffff"> ./runbpq</span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">rm: cannot remove `bpq32.txt': No such file or directory</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">--2014-02-09 08:02:00-- <a href="http://www.torborg.com/bpq/wakde1-ka2dew-3/bpq32.txt">http://www.torborg.com/bpq/wakde1-ka2dew-3/bpq32.txt</a></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Resolving <a href="http://www.torborg.com">www.torborg.com</a> (<a href="http://www.torborg.com">www.torborg.com</a>)... 50.62.116.1</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Connecting to <a href="http://www.torborg.com">www.torborg.com</a> (<a href="http://www.torborg.com">www.torborg.com</a>)|50.62.116.1|:80... connected.</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">HTTP request sent, awaiting response... 200 OK</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Length: 20118 (20K) [text/plain]</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Saving to: `bpq32.txt'</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">100%[==========================================================================================================>] 20,118 --.-K/s in 0.07s </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">2014-02-09 08:02:00 (300 KB/s) - `bpq32.txt' saved [20118/20118]</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">bpq32.txt</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">rm: cannot remove `bpq32.old': No such file or directory</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">mv: cannot stat `linbpq.new': No such file or directory</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">G8BPQ AX25 Packet Switch System Version 6.0.5.11 Febuary 2014</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Copyright ? 2001-2014 John Wiseman G8BPQ</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Current Directory is /home/pi/bpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Configuration file Preprocessor.</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Using Configuration file /home/pi/bpq/bpq32.cfg</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Conversion (probably) successful</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">PORTS 157374 LINKS 15a604 DESTS 15ad2a ROUTES 15de2a L4 15f36a BUFFERS 165328</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 01 I2C Bus 1 Addr 16 Chan A </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 02 I2C Bus 1 Addr 17 Chan A </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 03 AXIP </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 04 Telnet Server </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">slave device: /dev/pts/1. symlink to /home/pi/com4 created</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">TNC Emulator Init Complete</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">^Cterminating on SIGINT</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Closing Ports </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~/bpq $</b></span><span style="color: #ffffff"> sudo su root</span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">root@wakde1-ka2dew-3:/home/pi/bpq# ./runbpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">rm: cannot remove `bpq32.txt': No such file or directory</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">--2014-02-09 08:02:28-- <a href="http://www.torborg.com/bpq/wakde1-ka2dew-3/bpq32.txt">http://www.torborg.com/bpq/wakde1-ka2dew-3/bpq32.txt</a></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Resolving <a href="http://www.torborg.com">www.torborg.com</a> (<a href="http://www.torborg.com">www.torborg.com</a>)... 50.62.116.1</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Connecting to <a href="http://www.torborg.com">www.torborg.com</a> (<a href="http://www.torborg.com">www.torborg.com</a>)|50.62.116.1|:80... connected.</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">HTTP request sent, awaiting response... 200 OK</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Length: 20118 (20K) [text/plain]</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Saving to: `bpq32.txt'</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">100%[==========================================================================================================>] 20,118 --.-K/s in 0.06s </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">2014-02-09 08:02:28 (316 KB/s) - `bpq32.txt' saved [20118/20118]</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">bpq32.txt</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">mv: cannot stat `linbpq.new': No such file or directory</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">G8BPQ AX25 Packet Switch System Version 6.0.5.11 Febuary 2014</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Copyright ? 2001-2014 John Wiseman G8BPQ</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Current Directory is /home/pi/bpq</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Configuration file Preprocessor.</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Using Configuration file /home/pi/bpq/bpq32.cfg</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Conversion (probably) successful</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">PORTS 157374 LINKS 15a604 DESTS 15ad2a ROUTES 15de2a L4 15f36a BUFFERS 165328</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); min-height: 16px;"><br></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 01 I2C Bus 1 Addr 16 Chan A </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 02 I2C Bus 1 Addr 17 Chan A </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 03 AXIP </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Initialising Port 04 Telnet Server </div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">slave device: /dev/pts/1. symlink to /home/pi/com4 created</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">TNC Emulator Init Complete</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">^Cterminating on SIGINT</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">Closing Ports </div></div><div><br></div><div><font face="Arial" size="2"><br></font></div><div><font face="Arial" size="2">Here is the ls -l of the /home/pi/bpq directory</font></div><div><font face="Arial" size="2"><br></font></div><div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~/bpq $</b></span><span style="color: #ffffff"> ls -l</span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">total 2472</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); position: static; z-index: auto;">-rw-r--r-- 1 pi pi 18253 Feb 5 22:11 2014_02_05_bpq32.cfg</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-r--r-- 1 pi pi 20118 Feb 9 06:50 bpq32.cfg</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-r--r-- 1 pi pi 20118 Feb 9 06:50 bpq32.old</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-r--r-- 1 pi pi 37 Feb 9 08:02 BPQNODES.dat</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-r--r-- 1 pi pi 899 Jan 27 02:02 error.txt</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); position: static; z-index: auto;">-rwxr-xr-x 1 pi pi 56 Jan 27 02:02 <span style="color: #34bd26"><b>ftp</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); position: static; z-index: auto;">drwxr-xr-x 2 pi pi 4096 Jan 26 23:06 <span style="color: #7d9aff"><b>HTML</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rwxr-xr-x 1 pi pi 2422662 Feb 8 20:28 <span style="color: #34bd26"><b>linbpq</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">drwxrwxrwx 2 pi pi 4096 Feb 5 21:29 <span style="color: #6383f0; background-color: #00a500">logs</span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rwxr-xr-x 1 pi pi 25 Feb 9 07:18 <span style="color: #34bd26"><b>psloop</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rwxr-xr-x 1 pi pi 810 Feb 9 07:51 <span style="color: #34bd26"><b>runbpq</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-rw-rw- 1 root root 2381 Feb 9 08:02 scriptrun.log</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rwxr-xr-x 1 pi pi 549 Feb 9 07:10 <span style="color: #34bd26"><b>testwget</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">-rw-r--r-- 1 pi pi 48 Feb 8 20:29 update</div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);">drwxr-xr-x 2 pi pi 4096 Jan 28 00:02 <span style="color: #7d9aff"><b>works1</b></span></div><div style="margin: 0px; font-family: 'Courier New'; color: rgb(52, 189, 38); background-color: rgb(0, 0, 0);"><b>pi@wakde1-ka2dew-3</b><span style="color: #ffffff"> </span><span style="color: #7d9aff"><b>~/bpq $</b></span><span style="color: #ffffff"> </span></div></div><div><span style="color: #ffffff"><br></span></div></div><div><font color="#444444">Thanks for any help, questions, or taunts. </font></div><div><font color="#444444"><br></font></div><div><font color="#444444"> Tadd, KA2DEW</font></div><div><font color="#444444"><br></font></div></body></html>