<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>JackKozik.com &#187; Uncategorized</title> <atom:link href="http://jackkozik.com/category/uncategorized/feed" rel="self" type="application/rss+xml" /><link>http://jackkozik.com</link> <description>Web Programming, Home Networking and Personal Travel</description> <lastBuildDate>Mon, 04 Sep 2023 14:26:56 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.9.2</generator> <item><title>Test Gist shortcode</title><link>http://jackkozik.com/test-gist-shortcode/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=test-gist-shortcode</link> <comments>http://jackkozik.com/test-gist-shortcode/#comments</comments> <pubDate>Wed, 29 Jul 2015 05:01:17 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://jackkozik.com/?p=5290</guid> <description><![CDATA[<p>The post <a rel="nofollow" href="http://jackkozik.com/test-gist-shortcode/">Test Gist shortcode</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<script src="https://gist.github.com/f4600f7fcf65fd294d59.js"></script><script src="https://gist.github.com/bce7053044734a073249.js"></script><p>The post <a rel="nofollow" href="http://jackkozik.com/test-gist-shortcode/">Test Gist shortcode</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/test-gist-shortcode/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Openstack RDO packstack Kilo install stuck on CENTOS 7 &#8211; MariaDB conflict</title><link>http://jackkozik.com/openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict</link> <comments>http://jackkozik.com/openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict/#comments</comments> <pubDate>Mon, 06 Jul 2015 18:11:02 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[Web Programming]]></category> <category><![CDATA[2015]]></category> <category><![CDATA[CENTOS7]]></category> <category><![CDATA[mariaDB]]></category> <category><![CDATA[Openstack]]></category> <category><![CDATA[RDO packstack Kilo]]></category><guid isPermaLink="false">http://jackkozik.com/?p=5254</guid> <description><![CDATA[<p>Background: I got stuck on RDO packstack Kilo install onto CENTOS7. I got some strange log entries I didn&#8217;t understand &#8211; I post the problem and the solution here for my records and maybe to help someone else. For my RDO packstack Kilo install setup, I followed the normal Quick Start  steps on a bare metal installed [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict/">Openstack RDO packstack Kilo install stuck on CENTOS 7 &#8211; MariaDB conflict</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p><a href="http://jackkozik.com/wp-content/uploads/2015/07/kilologo.png"><img class="alignright size-full wp-image-5258" src="http://jackkozik.com/wp-content/uploads/2015/07/kilologo.png" alt="kilologo" width="176" height="70" /></a>Background: I got stuck on RDO packstack Kilo install onto CENTOS7. I got some strange log entries I didn&#8217;t understand &#8211; I post the problem and the solution here for my records and maybe to help someone else.</p><p>For my RDO packstack Kilo install setup, I followed the normal <a href="https://www.rdoproject.org/Quickstart">Quick Start</a>  steps on a bare metal installed version of CENTOS 7 (CentOS-7-x86_64-LiveKDE-1503).</p><p>I ran the following step in the install guide:</p><pre># packstack --allinone</pre><p>The packstack installed failed with the following error on the console:</p><pre>Error: Execution of '/usr/bin/rpm -e mariadb-server-5.5.41-2.el7_0.x86_64' returned 1: error: Failed dependencies:
You will find full trace in log /var/tmp/packstack/20150704-200908-</pre><p>This is an error pointing to the following log file entry:</p><pre>Error: Execution of '/usr/bin/rpm -e mariadb-server-5.5.41-2.el7_0.x86_64' returned 1: error: Failed dependencies:
        mariadb-server is needed by (installed) akonadi-mysql-1.9.2-4.el7.x86_64</pre><p>This is only my second install using packstack, and it is my first attempt at installing RDO packstack Kilo; so, I wasn&#8217;t familiar with the troubleshoot this kind of problem. It didn&#8217;t make sense to me that packstack would be trying to uninstall (rpm -e) MariaDB. The error indicates that the uninstall wouldn&#8217;t work because another package akonadi-mysql was using it &#8212; right? is that how I read this?  FYI:  <a href="https://en.wikipedia.org/wiki/Akonadi">Akonadi </a>is a storage service that runs under KDE&#8230; I wasn&#8217;t familiar with it.</p><p>Browsing the <a href="https://www.rdoproject.org/Workaround_archive">RDO Workaround archives</a> , I found a short article on this topic: <a href="https://www.rdoproject.org/Workaround_archive#Packstack_fails_when_mariadb-server_is_installed">Packstack fails when mariadb-server is installed</a>. The body of the article shows a log file message that is different enough from mine that I didn&#8217;t find it right away.</p><p>I tried the recommended fix to uninstall MariaDB and re-run RDO packstack Kilo:</p><pre># yum remove mariadb-server
# packstack  --answer-file=packstack-answers-20150704-200908.txt</pre><p>This fixed my problem!</p><p>I was able to run packstack to completion and bring up the openstack horizon dashboard. Note: I didn&#8217;t re-run packstack &#8211;allinone; I followed the packstack workflow requirement to re-run an install using the answer file previously generated.</p><p>Since the workaround was written for Juno and Fedora 20, I thought the fix was just a coincidence, but in reading the details, the original problem was triggered by installing KDE ontop of Fedora 20. Since I picked a KDE distribution of CENTOS7, maybe my problem and the original workaround write-up are related?!</p><p>Respectfully submitted,<br /> Jack</p><p>The post <a rel="nofollow" href="http://jackkozik.com/openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict/">Openstack RDO packstack Kilo install stuck on CENTOS 7 &#8211; MariaDB conflict</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/openstack-rdo-packstack-kilo-install-stuck-centos-7-mariadb-conflict/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Yamaha RX-V475  5.1-Channel Network AV Receiver</title><link>http://jackkozik.com/yamaha-rx-v475-5-1-channel-network-av-receiver/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=yamaha-rx-v475-5-1-channel-network-av-receiver</link> <comments>http://jackkozik.com/yamaha-rx-v475-5-1-channel-network-av-receiver/#comments</comments> <pubDate>Sun, 23 Jun 2013 20:37:29 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[2013]]></category> <category><![CDATA[Airplay]]></category> <category><![CDATA[AV Receiver]]></category> <category><![CDATA[DLNA]]></category> <category><![CDATA[Receiver]]></category> <category><![CDATA[Yamaha RX-V475]]></category><guid isPermaLink="false">http://jackkozik.com/?p=4521</guid> <description><![CDATA[<p>Background on our Yamaha RX-V475: our house was hit by lightning. Our 10 year old SONY Receiver was damaged and no longer usable. I would have been perfectly happy getting a like-for-like replacement for our good old SONY but we decided it was time to go shopping for the latest and greatest. We did a [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/yamaha-rx-v475-5-1-channel-network-av-receiver/">Yamaha RX-V475  5.1-Channel Network AV Receiver</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p><a href="http://jackkozik.com/wp-content/uploads/2013/07/Yamaha-RX-V475Front073013a.jpg"><img class="alignnone size-full wp-image-4523" title="Yamaha RX-V475Front073013a" src="http://jackkozik.com/wp-content/uploads/2013/07/Yamaha-RX-V475Front073013a.jpg" alt="" width="1141" height="500" /></a>Background on our Yamaha RX-V475: our house was hit by lightning. Our 10 year old SONY Receiver was damaged and no longer usable. I would have been perfectly happy getting a like-for-like replacement for our good old SONY but we decided it was time to go shopping for the latest and greatest.</p><p>We did a little bit of research online, found good reviews, and then went to Best Buy and bought the Yamaha RX-V475 receiver. We connected it up and got it working just fine, and we were really surprised and delighted with the performance and features. Our music library sounds so much better played through a big receiver connected to our big speakers; so glad to get things working again!</p><p>As an old-school receiver person, I have been out of the marketplace for a long time. Since we last bought a receiver, iPhones, home network technology, and the world of HDMI have all become common place. When we got the new Yamaha RX-V475 AV Receiver, there were features that really surprised me&#8230; I was WOW&#8217;d! Here&#8217;s a summary of the new features:</p><p>REFERENCE: <a href="http://download.yamaha.com/api/asset/file/?language=en&amp;site=sg.yamaha.com&amp;asset_id=58868">Yamaha RX-V475 Owner&#8217;s Manual</a></p><h2>Airplay</h2><p><a href="http://jackkozik.com/wp-content/uploads/2013/07/AirplayIcon073013a.jpg"><img class="alignright  wp-image-4531" title="AirplayIcon073013a" src="http://jackkozik.com/wp-content/uploads/2013/07/AirplayIcon073013a.jpg" alt="" width="77" height="77" /></a>Airplay is a feature that lets your iPhone play music directly through the receiver. We have several iDevices in the family and after we connected our Yamaha RX-V475 receiver to our home network, a little icon appeared in the music play app &#8212; this icon is the Airplay icon.</p><p>Press the Airplay icon and it will prompt you to play your music on the Yamaha. The Airplay icon shows, as follows on the play bar in you music app..</p><div style="clear: both;"><a href="http://jackkozik.com/wp-content/uploads/2013/07/AirplayPlayBar073013b.png"><img class="alignleft size-full wp-image-4534" title="AirplayPlayBar073013b" src="http://jackkozik.com/wp-content/uploads/2013/07/AirplayPlayBar073013b.png" alt="" width="320" height="53" /></a></p><div style="clear: both;">Wow, how long has this been around? I never knew about Airplay. This was so easy to use and works so well. Wow!</div><div style="clear: both;"></div><p>Just so you know:</p><ul><li>the iPhone needs to be on the home WIFI network;</li><li>the Yamaha receiver only has a LAN cable. We were easily able to run a LAN cable to the receiver, but if that&#8217;s hard for you, then you can buy a WIFI adapter.</li><li>if two family members both want to play their music on the Yamaha at the same time, the receiver listens to the most recently touched iPhone. This can lead to accidental music switching.</li><li>I have iTunes installed on a home PC. Even that PC has an Airplay icon.</li></ul><p>Reference: <a href="http://en.wikipedia.org/wiki/AirPlay">Airplay WIKI</a></p><h2>Android App</h2><p>The receiver comes with an Android App called &#8220;AV Controller.&#8221;</p><p><a href="http://jackkozik.com/wp-content/uploads/2013/07/AVController1073013.png"><img class="alignnone size-full wp-image-4526" title="AVController1073013" src="http://jackkozik.com/wp-content/uploads/2013/07/AVController1073013.png" alt="" width="320" height="512" /></a></p><div style="clear: both;"><p>I was surprised at how well this worked. I thought I would just use the included clicker as the remote. But the Android App was really easy to setup and use. It works over my home WIFI, so I can control the receiver from anywhere in the house.</p><p><a href="http://jackkozik.com/wp-content/uploads/2013/07/AVController2073013.png"><img class="alignright  wp-image-4527" title="AVController2073013" src="http://jackkozik.com/wp-content/uploads/2013/07/AVController2073013.png" alt="" width="191" height="307" /></a>The app does what you&#8217;d expect. I can control volume/mute, inputs, radio tuning (AM/FM/Internet), or with a hat-tip to Airplay, the app lets you play music on your Android gadget through the receiver; the album art work and songlist display in the app with a look and feel much like an iPhone.</p><p>Again, your old-school author here had no idea that the Android App was so good. I was delighted. My son who has a Samsung Galaxy, got his app working with the receiver in just a few minutes.</p><p>Reference: <a href="https://play.google.com/store/apps/details?id=com.yamaha.av.avcontroller&amp;hl=en">AV Controller</a> in Google Play</p><h2>Music Through USB</h2><p>So, I&#8217;ve known about music through USB for years. This is a feature we know from cars and clock radios. You plug a USB stick into a player, it finds the music and let&#8217;s you play it as if you were using an iPod.</p><p>What was new for me was that I could plug my old iPod (iPod Touch from 2008) into the USB slot. We used our white USB iPod sync cable to connect the iPod to the Yamaha.</p><p>From the front panel, the Yamaha RX-V475 receiver&#8217;s clicker, or the Android App, the receiver very intelligently treats content from the USB input; it lets one select music from the USB input and play through the receiver.</p><p>Our good old iPod had all of our family holiday and dinner background music. We used to take the audio output of the iPod and feed it into the AUX input of our old receiver. Much improved, we can now remotely play music from this iPod. This is improved  enough so for me to react with yet another wow!</p><h2>Monitor Music Play Through TV Screen</h2><p>We mostly use the Yamaha RX-V475 AV Receiver for playing music. The VFD front panel display and the iPhone or Android app user interface is really all you need for music.</p><p>We noticed that if you turn on the TV, the Yamaha RX-V475 displays useful information about the music (think iPod screen level of detail). It turns out this was way more useful than I though it would be.</p><p>Initially, I was wow&#8217;d by this feature. I liked it and I really didn&#8217;t expect it. Now that we&#8217;ve used it a little while, the TV display is MS-DOS text like vs Windows style graphics. (think original iPod vs iPhone). This user interface should be improved.</p><h2>When Off, HDMI Passes Through</h2><p>When the Yamaha Receiver is off, the HDMI inputs are still passed through to the outputs. This is surprisingly useful for our setup.</p><p>Our setup feeds the HDMI outputs from our STB, our XBOX, and our Blueray player into the Yamaha AV Receiver. The Yamaha then send one HDMI output to our TV. The receiver is basically an HDMI hub. The receiver takes the sound from the selected input (eg STB) and plays it through our speakers.</p><p>When the receiver is turned off, the HDMI hub function is still active. In the most typical case, when we are just watching TV, we turn off the receiver and listen to the sound through the TV speakers. My expectation was that when the receiver was off, the HDMI hub function was off, too. I was delighted (slightly wow&#8217;d) that the HDMI switching worked well for our case.</p><h2>Digital Living Network Alliance &#8211; DLNA</h2><p>Not new, and no surprise for us, the Yamaha Receiver&#8217;s network connection very easily discovered our music on our DLNA-enabled backup server. DLNA technology is not new to us and this worked as expected.</p><p>For background: DLNA is a technology that lets computers share music, photos and video across a network connection. When enabled on a computer, that computer advertises that it has DLNA formated content and any DLNA-aware player on the same network will offer a menu of that content.</p><p><a href="http://jackkozik.com/wp-content/uploads/2012/12/Ls-wxl_r1_o1_large.jpg"><img class="alignright  wp-image-213" title="Ls-wxl_r1_o1_large" src="http://jackkozik.com/wp-content/uploads/2012/12/Ls-wxl_r1_o1_large.jpg" alt="Buffalo Linkstation" width="180" height="135" /></a>Our home backup server is a <a href="http://www.buffalotech.com/products/network-storage">Buffalo Linkstation</a>. It has a DLNA server installed on it. From the &#8220;NET&#8221; button on the clicker or the front panel, press it a couple of times until you see the &#8220;SERVER&#8221; as the input source. Then from the display on the front panel or the TV screen scroll down to the DLNA server. By default, the Linkstation has some arcane name with &#8220;WXL&#8221; in it.</p><p>This is kinda cool. I know its there, but I am much more likely to play from my iPhone than use this capability.</p><h2><a href="http://jackkozik.com/wp-content/uploads/2013/07/Yamaha-RX-V475Back073013a.jpg"><img class="alignnone size-full wp-image-4524" title="Yamaha RX-V475Back073013a" src="http://jackkozik.com/wp-content/uploads/2013/07/Yamaha-RX-V475Back073013a.jpg" alt="" width="2850" height="1121" /></a></h2></div></div><p>The post <a rel="nofollow" href="http://jackkozik.com/yamaha-rx-v475-5-1-channel-network-av-receiver/">Yamaha RX-V475  5.1-Channel Network AV Receiver</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/yamaha-rx-v475-5-1-channel-network-av-receiver/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>RAZR2 to iPhone 5</title><link>http://jackkozik.com/razr2-to-iphone-5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=razr2-to-iphone-5</link> <comments>http://jackkozik.com/razr2-to-iphone-5/#comments</comments> <pubDate>Fri, 07 Jun 2013 03:44:58 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[2013]]></category> <category><![CDATA[AT&T]]></category> <category><![CDATA[iPhone 5]]></category> <category><![CDATA[RAZR2]]></category><guid isPermaLink="false">http://jackkozik.com/?p=534</guid> <description><![CDATA[<p>Background on my RAZR2 to iPhone switch:  Since 2008 or so, I have had an AT&#38;T RAZR2. I just turned it in for an iPhone 5. Here&#8217;s some notes about my switch. The RAZR2 is a 3G/UMTS phone. It worked really well, and as a phone it traveled with me around the world. Canada, Mexico, [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/razr2-to-iphone-5/">RAZR2 to iPhone 5</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p><a href="http://jackkozik.com/wp-content/uploads/2013/06/Motorola_RAZR2_V9x.jpg"><img class="alignleft  wp-image-536" title="Motorola_RAZR2_V9x" src="http://jackkozik.com/wp-content/uploads/2013/06/Motorola_RAZR2_V9x.jpg" alt="RAZR2" width="126" height="225" /></a><a href="http://jackkozik.com/wp-content/uploads/2013/06/iPhone5.jpg"><img class="wp-image-539 alignleft" title="iPhone5" src="http://jackkozik.com/wp-content/uploads/2013/06/iPhone5.jpg" alt="" width="113" height="232" /></a>Background on my RAZR2 to iPhone switch:  Since 2008 or so, I have had an AT&amp;T RAZR2. I just turned it in for an iPhone 5. Here&#8217;s some notes about my switch.</p><p>The RAZR2 is a 3G/UMTS phone. It worked really well, and as a phone it traveled with me around the world. Canada, Mexico, Europe, Asia and South America. I finally decided to trade it in. The voice quality had detriorated and text messaging triple-tapping just became too much for me.</p><p><strong>Phone store transfers contacts</strong>. My wife and daughter have iPhones so I felt pretty good about switching. The iPhone 5 has LTE and it made the choice simple. I was delighted to learn that the AT&amp;T phone store people had a ready-made device to transfer all of my contacts from the RAZR2 to the iPhone. I was easily able to get my images off the RAZR2 using the blue tooth interface.</p><p><strong><a href="http://jackkozik.com/wp-content/uploads/2013/06/05-13-12_1106.jpg"><img class=" wp-image-545 alignright" title="S/W Ver: 9E.03.3AR" src="http://jackkozik.com/wp-content/uploads/2013/06/05-13-12_1106.jpg" alt="" width="155" height="208" /></a>MMS while roaming, no more</strong>. An interesting feature of the RAZR2 that beats any of the new smart phones: I am able to send MMS&#8217;s while roaming. Smartphone users, who normally turn off their data service while roaming, take pictures and they get stored up until the data service is restored. I have been delighted to send live MMS pictures back home from overseas trips using my RAZR2. Maybe someday the data roaming prices will be low enough and I trust the service enough such that I will be able to turn on data services while traveling overseas.</p><div id="attachment_537" style="width: 117px" class="wp-caption alignright"><a href="http://jackkozik.com/wp-content/uploads/2013/06/iPodTouch1stGen.jpg"><img class="wp-image-537 " title="iPodTouch1stGen" src="http://jackkozik.com/wp-content/uploads/2013/06/iPodTouch1stGen.jpg" alt="iPodTouch1stGen" width="107" height="169" /></a><p class="wp-caption-text">iPod Touch</p></div><p><strong>Retire my iPod Touch</strong>. Since I have been a long time iPod Touch user, I had no trouble sync&#8217;ing my iPhone 5 with my desktop iTunes and get my music collection transfered. Buying a iPhone 5 means retiring two devices. This is good.</p><p><strong>Favorite Apps</strong>. I am a long time Android phone user and downloaded my favorites from the App Store: Instagram, Pulse, Tumblr, United, ScoreCenter, Pulse, Google Maps, Flickr, and Flashlight. I am not a iPhone power user. That&#8217;s ok. I&#8217;ll figure it out.</p><p style="text-align: left;"><strong><a href="http://jackkozik.com/wp-content/uploads/2013/06/iMessage.jpg"><img class="size-full wp-image-541 aligncenter" title="iMessage" src="http://jackkozik.com/wp-content/uploads/2013/06/iMessage.jpg" alt="" width="296" height="170" /></a>iMessage</strong>. A new quirky feature is messaging. If I am sending a text message to someone with an iPhone, instead of using AT&amp;T&#8217;s SMS service, it uses Apple&#8217;s iMessage service &#8212; auto-magically. The only way you can tell is that the input field has a little &#8220;iMessage&#8221; gray background.  I guess iMessage is good, because it doesn&#8217;t count against my message plan, but since my messaging plan is unlimited, I sort of don&#8217;t care. But I did notice last weekend while I was in a bad coverage area, my iMessages were getting stuck. I learned that SMS messages seemed to have a better chance of going through. Not sure what the best practice is.</p><div id="attachment_516" style="width: 132px" class="wp-caption alignright"><a href="http://jackkozik.com/wp-content/uploads/2013/06/uverse_installationCentral_television_AA000O962.jpg"><img class=" wp-image-516 " title="U-verse TV" src="http://jackkozik.com/wp-content/uploads/2013/06/uverse_installationCentral_television_AA000O962.jpg" alt="" width="122" height="95" /></a><p class="wp-caption-text">U-verse TV</p></div><p><strong>AT&amp;T U-verse</strong>. Another fun feature, is the AT&amp;T U-verse (our new home TV service), has an iPhone app. I can watch TV shows and control the DVR from my phone. I&#8217;ve read about this, but now I can do this.</p><p><strong>Footnote</strong>: It might seem like I&#8217;am a little bit of a luddite that I still have a RAZR2, but it&#8217;s more like I am a pack rat. I have an AT&amp;T phone (iPhone), a Sprint HTC Android phone, a Verizon DROID phone, and a Verizon Android tablet. I have lots and lots of mobile gadgets. So I never really felt like I needed to upgrade, because except for AT&amp;T I was up to speed on gadgetry.</p><p>Formally, I am retiring an<a href="http://www.att.com/esupport/article.jsp?sid=KB95692&amp;cv=820&amp;title=Motorola%20RAZR2%20V9x%20Specifications#fbid=BU82k_nf6-C"> AT&amp;T Motorola RAZR2 V9x</a> &#8211; I bought it in late 2007, it broke in 2010, I ordered a brand new replacement from a warehouse in Hong Kong (through eBay) and now I am retiring it.</p><p>The post <a rel="nofollow" href="http://jackkozik.com/razr2-to-iphone-5/">RAZR2 to iPhone 5</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/razr2-to-iphone-5/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>AT&amp;T U-Verse TV Install 5/31/13</title><link>http://jackkozik.com/att-u-verse-tv-install-53113/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=att-u-verse-tv-install-53113</link> <comments>http://jackkozik.com/att-u-verse-tv-install-53113/#comments</comments> <pubDate>Wed, 05 Jun 2013 16:56:45 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[2013]]></category> <category><![CDATA[AT&T]]></category> <category><![CDATA[U-verse]]></category><guid isPermaLink="false">http://jackkozik.com/?p=509</guid> <description><![CDATA[<p>Background on my AT&#38;T U-Verse TV Install: I was at the AT&#38;T phone store the weekend before last, getting a new iPhone 5. We saw the latest U-verse TV offering and we decided to sign up for the U450 Package. Our nice sales person booked us for an installation for the following Friday, and this [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/att-u-verse-tv-install-53113/">AT&#038;T U-Verse TV Install 5/31/13</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<div id="attachment_514" style="width: 185px" class="wp-caption alignleft"><a href="http://jackkozik.com/wp-content/uploads/2013/06/uverse_installationCentral_television_AA000O96.jpg"><img class="size-full wp-image-514" title="U-verse TV" src="http://jackkozik.com/wp-content/uploads/2013/06/uverse_installationCentral_television_AA000O96.jpg" alt="" width="175" height="135" /></a><p class="wp-caption-text">U-verse TV</p></div><p>Background on my AT&amp;T U-Verse TV Install: I was at the AT&amp;T phone store the weekend before last, getting a new iPhone 5. We saw the latest U-verse TV offering and we decided to sign up for the U450 Package. Our nice sales person booked us for an installation for the following Friday, and this write up is a log of my <a href="http://uverseonline.att.net/">AT&amp;T U-Verse TV</a> Install.</p><p><strong>All new coax</strong>. We&#8217;ve been a long time user of our local cable service, and it was behind on services capabilities and the user interface was frustratingly slow. For our new U-verse TV service we wanted new TV service only; no voice, no Internet. We continue to be pleased with our cable company&#8217;s DOCSIS 3.0 based cable modem service. For this installation  we didn&#8217;t want our cable modem service touched. We asked the U-verse installer to run all new coax for our installation.</p><p><strong><a href="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7254.jpg"><img class="alignright" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7254.jpg" alt="NID - Network Interface Device. My home phone line (Line 1) gets split into POTS and U-verse service pairs.  The filter installs into a spare slot in the NID." width="115" height="173" /></a>Two home phone lines: which one?</strong> As part of the sign-up process, we asked the phone store person to use the home phone line that we currently use for our 10 year old Ameritech DSL. Our good old DSL still works as reliably as the day it was installed, but we wanted to use U-verse as a trigger to retire it. The phone store person said he couldn&#8217;t work this and that we would have to talk to the installer. That was ok. A couple of days before the installation, a nice person called us to confirm the installation; we asked him about which home phone line, and he too didn&#8217;t know and referred us to our installer. Hmm&#8230; was this going to be ok?</p><p><strong>U-verse TV only for non-DSL line</strong>. On the day of installation, our installer person called and warned us that home phone service was going to be temporarily turned off while it was being repatched onto a VDSL connection to the neighborhood <a href="http://en.wikipedia.org/wiki/Video-ready_access_device">VRAD</a>.</p><p><a href="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7277.jpg"><img class="ngg-singlepic ngg-left" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7277.jpg" alt="AT&amp;T VRAD" width="640" height="424" /></a>I politely complained that I wanted to retire our Ameritech DSL, but he said since that the DSL line wasn&#8217;t conditioned for U-verse service and that we&#8217;d have to wait for weeks. That settles it: our new U-verse TV service would be yet another broadband connection coming into our house (old DSL, Cablemodem, and now VDSL). Knowing that this is just temporary, I gave the go ahead.</p><p><strong><a href="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7261.jpg"><img class="ngg-singlepic ngg-right alignright" title="2Wire 3801HGV" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7261.jpg" alt="U-verse VDSL service works when the Serivce and Device LEDs turn green on the 2Wire HomePortal 3801HGV Intelligent Gateway" width="191" height="288" /></a>VRAD-&gt;VDSL Pair -&gt; NID -&gt; 2-Wire Gateway worked first time</strong>. Our installer put a VDSL filter onto our phone line; the filter was cleanly mounted in our NID (out doors, on the side of our house). We verified POTS dial tone. Then the filtered VDSL signal was patched into our house over a spare loop in the existing cabling. A nice little RJ-45 style surface jack was mounted in the basement on the same wall as the rest of our home wiring. From there, a short 4 pair LAN style cable was run from the jack to the 2Wire 3801HGV Gateway. Our installer plugged it in and after 3 or 4 minutes the LEDs turned Green. It basically worked the first time.</p><p><strong>Background on our VDSL:</strong>  In my neighborhood, an AT&amp;T VRAD is installed across the street and behind some bushes. I had no idea! It&#8217;s a 2200ft loop length; good enough for 25Mbps service. He told me that I qualify for 3HD and 1SD video streams. He said my signal was &#8220;90%&#8221; &#8212; meaning I should not expect too much, if any, dropout. He said that my service was delivered with only one pair of copper wires with no bridge taps. If for some reason my service was iffy, we would have given me a second pair and &#8220;bonded&#8221; them together to get my signal up-to the advertised levels. He said for my neighborhood, my signal strength was really good and I shouldn&#8217;t expect any problems.</p><p><strong>RG-6 Coax to 2 TVs</strong>. Next, our very kind and patient installer ran two new lengths of coax from our basement entry point to the family room and living room TVs. He also ran a short length of coax from the 2wire Gateway to a spot on the ceiling of the basement where he installed a passive splitter. Using two different tools, he very professionally put new coax connectors on and cranked them down with a purpose built wrench.  He offered to run coax to one STB and just use WIFI for the other; I was reluctant, and he readily agreed to run coax to both STBs.</p><p><strong><img class="ngg-singlepic ngg-left alignleft" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7264.jpg" alt="STB w/DVR, Cisco IPN4320." width="560" height="371" /></strong></p><p><strong>Two STBs, one of them a DVR</strong>. The way U-verse service works, one the of the set top boxes is the DVR (Cisco IPN4320 Receiver) and the other STB shares it (Cisco IPN330HD Receiver). These STBs support 480i, 720p and 1080i high def; just what I was promised. For my old cable service, I have two STBs, each with their own DVR. The U-verse TV STBs are much smaller, surprisingly much quieter. The back of the new STBs had Coax-in/out, video-in/out and an HDMI connection. This matched up nicely with our old STBs and switching them out was easy.</p><p>On the very first power up, the STBs needed about 10 minutes to download updates and get registered into the network. In addition to coax, the STBs connect to the 2Wire Gateway over WIFI. . Not sure I saw any specific login or provisioning done. Our installer had the programming codes for our clickers; he set them up to work with our SONY and Samsung TVs from memory.  The 2Wire Gateway in the basement has a HomePNA LED; it was green.  I assume the video streams are sent to the STB over HomePNA over coax.  I wonder if the WIFI connections are carrying any traffic?!  I suppose that I could have asked for CAT-5 cable to my STBs.  I need to look into this more.</p><p><strong><a href="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7271.jpg"><img class="ngg-singlepic ngg-right alignright" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/dsc_7271.jpg" alt="U-verse TV remote control, model S10-S3" width="94" height="288" /></a>15 minute tutorial</strong>. As a last step of my AT&amp;T U-Verse TV Install,  our installer spent 15 minutes with me helping me learn all the U-verse TV features. It is much improved from our old service and I was delighted that he was able to set the HD and SD aspect ratios to match our TV&#8217;s. Also, I asked for the most common troubles and how to fix:<br /> - <strong>Power surges</strong>. With this configuration, power surges have been known to hose things up. He checked our grounding (thanks!!), but still if it happens, power cycling the 2-wire Gateway won&#8217;t be enough. You need to hold the red button on the back for 30 seconds.<br /> - <strong>STB DVR sync</strong>. Sometimes, not sure when or why, the one STB will not see the DVR in the other. This isn&#8217;t supposed to happen, but it does and in order to fix, you need to power cycle and bring up the DVR STB first, then power cycle the other.<br /> - <strong>3HD/1SD limits</strong>. We need to remember that if we are recording 3 HD shows, then we can only watch one SD show, in the whole house, so we need to be mindful of the limit. Nothing is broken, you just need to learn the stream count limit.</p><p>Our nice AT&amp;T U-Verse TV Install person left with everything neatly buttoned up and the service working nicely. Thanks!</p><p><strong><a href="http://hbogo.com"><img class="ngg-singlepic ngg-right alignright" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/hbogo.jpg" alt="hbogo" width="149" height="40" /></a>Web-based apps</strong>. For me the next step was getting our U-verse online services working. We like using Watch ESPN and HBO Go. But first I needed to get an AT&amp;T U-verse login id and password. Since I am not a U-verse Internet user, I was not given one. I called the <a href="http://www.att.com/econtactus/callUs.jsp?serviceGroup=digitalTV#toggleTwo">AT&amp;T help line</a> and they very nicely gave me a userid@att.net user id and password. These are what you need to get access to AT&amp;T U-verse web services. BTW, U-verse offers <a href="http://www.hbogo.com/">HBO Go</a>, <a href="http://www.showtimeanytime.com/#/home">Showtime Anytime</a>, <a href="http://espn.go.com/watchespn/index">Watch ESPN</a>, <a href="http://www.tntdrama.com/tveverywhere_splash/">TNT</a>/<a href="http://www.tbs.com/mvpd/35A5FC687/">TBS Everywhere</a>, and<a href="http://www.maxgo.com/"> Max Go</a>.</p><p><a href="https://itunes.apple.com/us/app/u-verse/id312886438?mt=8"><strong><img class="ngg-singlepic ngg-left alignleft" src="http://jackkozik.com/wp-content/gallery/uverseinstall053113/uverseiphoneapp.jpg" alt="AT&amp;T U-verse iPhone App" width="129" height="193" />Uverse.com.</strong></a> Also with the userid@att.net, I am able to use the <a href="http://www.att.com/support_media/images/pdf/uverse/U-verse+Mobile+User+Guide+for+iPhone+2.6_7-16-2012.pdf">U-verse App</a> on my new iPhone to remotely program my U-verse TV DVR.</p><p><strong>Poking around in the 2Wire Gateway</strong>. Even though I am not an Internet subscriber, I plugged my laptop into the 2Wire gateway LAN port just to see what would happen.  The gateway was running DHCP and it gave my laptop a 192.168.1.xx address with a gateway address of 192.168.1.254.  I went to http://192.168.1.254 and the gateway&#8217;s user portal home page came up.  From there, I saw that my VDSL was provisioned for 25181Kbps down and 2046Kbps up; this matched what our installer told us; I assume this is plenty of down stream bps for 3HD/1SD service.  Further, I saw that the WIFI was active and that my two STBs were connected to the gateway.  There are also some interesting usage logs that might be helpful for troubleshooting, if / when I might have trouble.  This looked very nice, but not something that I am likely to fuss with.</p><p>Not sure it will be a problem, but my home network now has another WIFI hot spot show up when we turn on our home laptop or tablet.  This is from the 2Wire gateway.  We already have 2 other hot spots originally put in place to get coverage everywhere in our house.   I hope the 3rd hot spot won&#8217;t interfere or degrade our home WIFI performance.  So far, too soon to tell.</p><p>Without alot of trouble, I loaded the <a href="http://www.uvrealtime.com/">U-verse Real Time</a> application onto my laptop and was able to scope out the basics of the U-verse networking.  Not sure I really needed to do this, but it was intellectually interesting and potentially useful for debugging.</p><p>Still to do: I need to unsubscribe from my old cable service&#8217;s TV channels (but keep my Internet) and shut down and retire my good old Ameritech DSL.</p><p>Respectfully submitted,<br /> JK</p><div></div><p>The post <a rel="nofollow" href="http://jackkozik.com/att-u-verse-tv-install-53113/">AT&#038;T U-Verse TV Install 5/31/13</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/att-u-verse-tv-install-53113/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Old Jaffa Walking Tour</title><link>http://jackkozik.com/old-jaffa-walking-tour/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=old-jaffa-walking-tour</link> <comments>http://jackkozik.com/old-jaffa-walking-tour/#comments</comments> <pubDate>Fri, 08 Mar 2013 02:00:02 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[2013]]></category> <category><![CDATA[Israel]]></category> <category><![CDATA[Jaffa]]></category> <category><![CDATA[Joppa]]></category> <category><![CDATA[night]]></category> <category><![CDATA[Old Jaffa]]></category> <category><![CDATA[Tel Aviv]]></category> <category><![CDATA[Walking]]></category> <category><![CDATA[Yafo]]></category><guid isPermaLink="false">http://jackkozik.com/?p=587</guid> <description><![CDATA[<p>Background for my Old Jaffa Walking Tour: We were in Tel Aviv for a week&#8217;s worth of business meetings.  After our last meeting, we took a pre-dinner ride a couple of miles south to start our brief Old Jaffa Walking Tour. Our hotel is located in Tel Aviv, right on the Mediterranean.  From our hotel [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/old-jaffa-walking-tour/">Old Jaffa Walking Tour</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p><a href="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5851.jpg"><img class="ngg-singlepic ngg-left" src="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5851.jpg" alt="St. Peter's Church" width="800" height="530" /></a>Background for my Old Jaffa Walking Tour: We were in Tel Aviv for a week&#8217;s worth of business meetings.  After our last meeting, we took a pre-dinner ride a couple of miles south to start our brief Old Jaffa Walking Tour.</p><p>Our hotel is located in Tel Aviv, right on the Mediterranean.  From our hotel we can faintly see the clock tower from <a href="http://en.wikipedia.org/wiki/St._Peter's_Church,_Jaffa">St. Peter&#8217;s Church</a> and the Minaret of <a href="http://archnet.org/library/sites/one-site.jsp?site_id=7225">Al-Bahr Mosque</a> / Sea Mosque.  Even though our hotel and Jaffa are both on the Tel Aviv Promenade, a stretch of boulevard full of people out for the evening, we decided to save time and took a taxi to Jaffa.</p><p><a href="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5840.jpg"><img class="ngg-singlepic ngg-right alignright" src="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5840.jpg" alt="Gate of Faith" width="288" height="191" /></a>Our taxicab driver took us to the Abrasha Park at the top of the hill named Tel Yafo in Old Jaffa.  We walked around and saw some interesting sites:  a small park area with a sculpture named &#8220;The Gates of Faith,&#8221; &#8220;Tel Yafo Excavation&#8221; &#8212; an archaeological dig of an egyptian fortress, the &#8220;Wishing Bridge,&#8221; St Peter&#8217;s Church.</p><p>We started walking down the Jaffa Hill, following the Mifrats Shlomo Promenade, the walk way closest to the water.  We saw the Minaret of Al-Bahr Mosque / Sea Mosque, a beautiful view of the Tel Aviv night-time cityscape,<a href="http://www.arab-hebrew-theatre.org.il/eng/about/about.htm"> Arab Hebrew Theatre of Jaffa</a>.</p><p><a href="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5860.jpg"><img class="ngg-singlepic ngg-left alignleft" src="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5860.jpg" alt="Sea Mosque" width="288" height="191" /></a>When we got to the bottom of the hill we wandered among small food market along Yefet Street near the HaPishpeshim Market area.  We walked to the North East entrance of Old Jaffa and saw the Jaffa clock tower then took a taxi back to our hotel.</p><p>Jaffa is a port city that dates back 1440BC, with archaeological evidence suggesting its origins go back to 7500BC.  This is a nice small place to visit.</p><p><strong>Tips:</strong></p><div><p>The Old Jaffa hill isn&#8217;t that big, but if you are pressed for time, I recommend doing what we did and have your taxi drop you off at the top of the hill and walk down.  If at all possible, do a little bit of research before you go; there&#8217;s lots of history right in front of you; if you don&#8217;t read beforehand or have a guide, you will miss the significance of this beautiful harbour town. <a href="http://en.wikipedia.org/wiki/Jaffa">Link to Jaffa WIKI</a></p><p>We went there early evening; it had just turned dark.  In Abrasha Park and on the promenade along the water way, there were lots of people, siteseers like us and families going out to dinner.  We felt very safe.</p><p><a href="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5867.jpg"><img class="ngg-singlepic ngg-left" src="http://jackkozik.com/wp-content/gallery/jaffa030713/israel030313-5867.jpg" alt="Tel Aviv City scape" width="800" height="530" /></a></p><div></div></div><p>The post <a rel="nofollow" href="http://jackkozik.com/old-jaffa-walking-tour/">Old Jaffa Walking Tour</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/old-jaffa-walking-tour/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fedora sendmail setup. Tips for hosts/domains and masquerading.</title><link>http://jackkozik.com/fedora-sendmail-setup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fedora-sendmail-setup</link> <comments>http://jackkozik.com/fedora-sendmail-setup/#comments</comments> <pubDate>Mon, 26 Nov 2012 02:48:22 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[Web Programming]]></category> <category><![CDATA[fedora]]></category> <category><![CDATA[sendmail]]></category><guid isPermaLink="false">http://jackkozik.com/?p=161</guid> <description><![CDATA[<p>Notes on my fedora sendmail setup.  I have had my fedora linux server setup for a couple of years with no email &#8212;  on purpose, to avoid spam hassles.  But to help my blog work better with plugins I decided to get this machine running sendmail. I&#8217;ve done fedora sendmail setup before on another one [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/fedora-sendmail-setup/">Fedora sendmail setup. Tips for hosts/domains and masquerading.</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Notes on my fedora sendmail setup.  I have had my fedora linux server setup for a couple of years with no email &#8212;  on purpose, to avoid spam hassles.  But to help my blog work better with plugins I decided to get this machine running <a href="http://www.sendmail.com/sm/open_source/">sendmail</a>.</p><p>I&#8217;ve done fedora sendmail setup before on another one of my servers, but it had been so long, I had to start from scratch.  I started by finding a good general setup guide.  <a href="https://fedoraproject.org/wiki/Archive:Docs/Drafts/AdministrationGuide/Servers/MailServer/Sendmail?rd=Docs/Drafts/AdministrationGuide/Servers/MailServer/Sendmail">This one on the fedora wiki</a> was most worthy.</p><p>So the instructions were pretty straight forward.  Since I own my domain name and have a static IP address, the setup is easy.  So I followed the instructions and, well, it didn&#8217;t work. My first problem:</p><h2>Fedora Sendmail setup emails bounced, because email is from user@localhost</h2><p>So my first couple of test emails sent to my web account bounced back to me, they looked like this:</p><pre>----- Transcript of session follows -----
... while talking to mx0.gmx.com.:
&gt;&gt;&gt; MAIL From:&lt;root@localhost.localdomain&gt; SIZE=665
&lt;&lt;&lt; 550 5.1.8 Cannot resolve your domain {mx-us004}
554 5.0.0 Service unavailable</pre><p>So I had to figure out why my server was putting userid@localhost.localdomain.  I learned that my /etc/hosts file was setup wrong.  There&#8217;s lots of fedora tips on how to setup your hosts file <a href="http://www.linuxquestions.org/questions/linux-software-2/sendmail-changing-domain-from-localhost-localdomain-409714/">(here&#8217;s a related posting)</a>, mine was setup wrong.  One tip, use the sendmail diagnostic tool, as follows:</p><pre># sendmail -d0.1 -bv root
[...]
 SYSTEM IDENTITY (after readcf) (short domain name) $w = myserver
(canonical domain name) $j = myserver.mydomain.net
       (subdomain name) $m = mydomain.net
            (node name) $k = myserver.mydomain.net
[...]</pre><p>The above is good. Before I debugged my localhost problems, this command showed localhost in each of the domain name lines.  Also, for debugging, I recommend using the mail -vv (two v&#8217;s) command line option.  It&#8217;s easier than looking in the /var/log/maillog file.</p><h2>Next problem: the emails were addressed user@myserver.mydomain.net</h2><p>The emails were working, but the From line should say user@mydomain.net.  I had to relearn how sendmail masquerading worked.  I had to setup the key parameters in the sendmail.mc file, as follows:</p><pre>MASQUERADE_AS(`mydomain.net')dnl
FEATURE(masquerade_envelope)dnl
FEATURE(masquerade_entire_domain)dnl
FEATURE(allmasquerade)dnl
MASQUERADE_DOMAIN(localhost)dnl
MASQUERADE_DOMAIN(localhost.localdomain)dnl
MASQUERADE_DOMAIN(myserver.mydomain.net)dnl</pre><p>But the masquerading wasn&#8217;t working.  When I went to the<a href="http://www.sendmail.com/sm/open_source/docs/m4/masquerading.html"> official sendmail man page for masquerade</a>, it talked about the EXPOSED_USER option.  By default, sendmail assumes the root user never wants to be masqueraded.  Of course, I was troubleshooting my sendmail setup from the root login, so this option had me thinking something was wrong.  I turned of this option, and finally my fedorda sendmail setup was finished.  It took way longer than I thought it would and I felt it was worth writing up.</p><p>For reference, here&#8217;s what I changed in my sendmail.mc file:</p><pre>define(`confLOG_LEVEL', `9')dnl
dnl EXPOSED_USER(`root')dnl
MASQUERADE_AS(`kozikfamily.net')dnl
FEATURE(masquerade_envelope)dnl
FEATURE(masquerade_entire_domain)dnl
FEATURE(allmasquerade)dnl
MASQUERADE_DOMAIN(localhost)dnl
MASQUERADE_DOMAIN(localhost.localdomain)dnl
MASQUERADE_DOMAIN(kozik2.kozikfamily.net)dnl</pre><p>The post <a rel="nofollow" href="http://jackkozik.com/fedora-sendmail-setup/">Fedora sendmail setup. Tips for hosts/domains and masquerading.</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/fedora-sendmail-setup/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Freestyle Shark Watch Settings Instruction Sheet Too Small to Read</title><link>http://jackkozik.com/freestyle-shark-watch-settings-instruction-sheet-too-small-to-read/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=freestyle-shark-watch-settings-instruction-sheet-too-small-to-read</link> <comments>http://jackkozik.com/freestyle-shark-watch-settings-instruction-sheet-too-small-to-read/#comments</comments> <pubDate>Tue, 20 Nov 2012 18:30:55 +0000</pubDate> <dc:creator><![CDATA[Jack Kozik]]></dc:creator> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://jackkozik.com/?p=157</guid> <description><![CDATA[<p>The Freestyle Shark Watch, the watch that I use for biking and kayaking is a worthy workout watch, but its physical design doesn&#8217;t always agree with me. The watch is programmed using four big knobby buttons. The buttons get accidentally set when I am doing activities that bend my wrist back and forth&#8230; easily done [&#8230;]</p><p>The post <a rel="nofollow" href="http://jackkozik.com/freestyle-shark-watch-settings-instruction-sheet-too-small-to-read/">Freestyle Shark Watch Settings Instruction Sheet Too Small to Read</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></description> <content:encoded><![CDATA[<p>The Freestyle Shark Watch, the watch that I use for biking and kayaking is a worthy workout watch, but its physical design doesn&#8217;t always agree with me. The watch is programmed using four big knobby buttons. The buttons get accidentally set when I am doing activities that bend my wrist back and forth&#8230; easily done when paddling or riding.</p><p>I&#8217;ve had the watch get into funky modes where the time would disappear or the watch would beep every few minutes, and no combination of pressing buttons would restore the watch function, until I was able to get the instruction sheet out.</p><p>Well that brings up another issue, the instructions are printed in such small type that I can barely read it. <span id="more-157"></span>So to better help me use my rather expensive (&gt;$100) watch, I post here without permission a cut/paste from the PDF file I found on the <a href="http://www.freestyleusa.com/support/">Freestyle web site support page</a>.</p><h2>Freestyle Shark Watch Instructions (readable by me!)</h2><p><a href="http://jackkozik.com/wp-content/uploads/2012/11/FreescaleWatchFace.png"><img class="size-full wp-image-158 alignleft" title="FreestyleSharkWatchFace" src="http://jackkozik.com/wp-content/uploads/2012/11/FreescaleWatchFace.png" alt="Freestyle Shark Watch Face" width="174" height="149" /></a></p><p>1. Hour Hand<br /> 2. Minute Hand<br /> 3. Second Hand<br /> S1 &#8211; Start/stop button<br /> S2 &#8211; Lap/reset button<br /> S3 &#8211; Mode button<br /> S4 &#8211; Light button</p><h3>TO SET THE ANALOG TIME</h3><p>1. Pull crown out to frist click position B.<br /> 2. Turn crown to set time.<br /> 3. Push crown back to position A.</p><h3>DISPLAY MODES</h3><p>The watch has four display modes:HOME TIME (TIME), HOME TIME, ALARM (ALM1), STOPWATCH (STW) and COUNTDOWN TIMER (TMR). To change from one display mode to another, press S3 button once. The mode description will appear for 2 seconds before the selected mode is activated.</p><h3>HOME AND FOREIGN DISPLAY</h3><p>To display FOREIGN TIME, press S2 button when HOME TIME is displayed. The mode description (TM-2) will appear shortly before FOREIGN TIME is displayed. To change back to HOME TIME, press S2 button. To display the daily FOREIGN TIME ALARM, press S2 button when HOME TIME ALARM is displayed. The mode description (ALM2) will appear shortly before FOREIGN TIME ALARM is displayed. To change back to HOME TIME ALARM, press S2 button.</p><h3>TO SET THE DIGITAL TIME AND CALENDAR</h3><p>1. Press S3 button to select time mode.<br /> 2. Press S2 button to toggle between HOME TIME and FOREIGN TIME mode to set.<br /> 3. Press and hold S2 button for two seconds until the “SET” message<br /> appears and the second digits blink.<br /> 4. Press S1 button to reset the second digits to 00.<br /> 5. Press S3 button, the minute digits will blink.<br /> 6. Press S1 button to set the minute digits. Holding down the button will speed up the process.<br /> 7. Press S3 button, the hour digits will blink.<br /> 8. Press S1 button to set the hour digits.<br /> 9. Follow the same pattern to set date, month, day (of the week), hour format and calendar format.<br /> 10.To set the hour format, press S1 button to toggle between 12-hour<br /> and 24-hour format. The P.M. indicator may be displayed to indicate the time period 12:00A.M. – 11:59 P.M. in 12-hour format.<br /> 11.To set the calendar format, press S1 button to toggle between M-D<br /> (month-date) and D-M (date-month) format.<br /> 12.After finish making all the settings, press S2 button to confirm.</p><p><strong>NOTE</strong>: The chosen hour and calendar formats will apply to both HOME TIME mode and FOREIGN TIME mode.</p><p><strong>NOTE</strong>: In FOREIGN TIME settings, only minutes, hours, date, month and day are open to setting.</p><h3>TO SET THE ALARM TIME</h3><p>1. Press S3 button to select alarm mode.<br /> 2. Press S2 button to toggle between HOME TIME ALARM and FOREIGN TIME ALARM mode to set.<br /> 3. Press and hold S2 button for two seconds until the “SET” message<br /> appears and the minute digits blink.<br /> 4. Press S1 button to set the minute digits. Holding down the button will speed up the process.<br /> 5. Press S3 button, the hour digits will blink.<br /> 6. Press S1 button to set the hour digits.<br /> 7. After finish making all the settings, press S2 button to confirm.</p><h3>TO TURN ON/OFF THE ALARM AND HOURLY CHIME</h3><p>In alarm mode,<br /> 1. Press S2 button to toggle between HOME TIME ALARM and FOREIGN TIME ALARM mode to set.<br /> 2. Press S1 button once to activate the alarm. Alarm indicator will appear.<br /> 3. Press again to activate the hourly chime. Chime indicator will appear.<br /> 4. Press the third time to activate both functions. Both of the indicators will appear.<br /> 5. Press the fourth time to deactivate both functions. Both of the indicators will disappear.</p><h3>WHEN AN ALARM OR HOURLY CHIME GOES OFF</h3><p>A tune will go off by the hour if the hourly chime function is activated. An alarm tune will be emitted for around 20 seconds at the designated time when the alarm is activated. To stop the tune, press any button.</p><h3>TO USE THE BACKLIGHT</h3><p>Press S4 button to turn on the backlight</p><p>The post <a rel="nofollow" href="http://jackkozik.com/freestyle-shark-watch-settings-instruction-sheet-too-small-to-read/">Freestyle Shark Watch Settings Instruction Sheet Too Small to Read</a> appeared first on <a rel="nofollow" href="http://jackkozik.com">JackKozik.com</a>.</p> ]]></content:encoded> <wfw:commentRss>http://jackkozik.com/freestyle-shark-watch-settings-instruction-sheet-too-small-to-read/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>