<?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>Shai Perednik.com &#187; Auto Update</title> <atom:link href="http://shaiperednik.com/tag/auto-update/feed/" rel="self" type="application/rss+xml" /><link>http://shaiperednik.com</link> <description>IT Guru &#38; Developer</description> <lastBuildDate>Fri, 30 Dec 2011 13:52:36 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Chromium AutoUpdate via CRON</title><link>http://shaiperednik.com/2009/06/chromium-autoupdate-via-cron/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=chromium-autoupdate-via-cron</link> <comments>http://shaiperednik.com/2009/06/chromium-autoupdate-via-cron/#comments</comments> <pubDate>Tue, 02 Jun 2009 14:59:13 +0000</pubDate> <dc:creator>Shai Perednik</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[Auto Update]]></category> <category><![CDATA[Chromium]]></category> <category><![CDATA[Cron]]></category><guid isPermaLink="false">http://shaiperednik.com/2009/06/chromium-autoupdate-via-cron/</guid> <description><![CDATA[Happy to report that the auto updating went according to plan. The AutoUpdating is nice but would be really interesting to know what has changed.]]></description> <content:encoded><![CDATA[<p>Happy to report that the auto updating went according to plan.</p><p> The AutoUpdating is nice but would be really interesting to know what has changed.</p><p><a href="http://shaiperednik.com/2009/06/chromium-autoupdate-via-cron/" rel="bookmark">Chromium AutoUpdate via CRON</a> originally appeared on <a href="http://shaiperednik.com">Shai Perednik.com</a> on June 2, 2009.</p> ]]></content:encoded> <wfw:commentRss>http://shaiperednik.com/2009/06/chromium-autoupdate-via-cron/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Auto Update to Latest Chromium Build</title><link>http://shaiperednik.com/2009/05/auto-update-to-latest-chromium-build/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=auto-update-to-latest-chromium-build</link> <comments>http://shaiperednik.com/2009/05/auto-update-to-latest-chromium-build/#comments</comments> <pubDate>Fri, 29 May 2009 19:07:21 +0000</pubDate> <dc:creator>Shai Perednik</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[Auto Update]]></category> <category><![CDATA[Build]]></category> <category><![CDATA[Chromium]]></category> <category><![CDATA[Cron]]></category> <category><![CDATA[Extract]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[Unzip]]></category><guid isPermaLink="false">http://shaiperednik.com/?p=132</guid> <description><![CDATA[Finaly got Chromium running on my Ubuntu 8.04 Machine. You could download it from http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/ Below is a script that will download the current Chromium build and get it ready to run. Theres not much to it, but it automates the process. 6/1/09 Update &#8211; I noticed that CRON ran in the user directory, so I [...]]]></description> <content:encoded><![CDATA[<p>Finaly got <a href="http://shaiperednik.com/tag/chromium/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Chromium">Chromium</a> running on my <a href="http://shaiperednik.com/tag/ubuntu/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Ubuntu">Ubuntu</a> 8.04 Machine.</p><p>You could download it from <a href="http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/">http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/</a></p><p>Below is a script that will download the current Chromium <a href="http://shaiperednik.com/tag/build/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Build">build</a> and get it ready to run.</p><p>Theres not much to it, but it automates the process.</p><p><strong><em>6/1/09 Update &#8211; <span style="font-weight: normal;">I noticed that <a href="http://shaiperednik.com/tag/cron/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Cron">CRON</a> ran in the user directory, so I fixed that.  Also added an rm to remove any old downloaded zips.  I ran the <a href="http://shaiperednik.com/tag/cron/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Cron">CRON</a> job manualy and it works.  So we&#8217;ll see tomorrow to see if it works.</span></em></strong></p><p>#CODE START</p><p>#!/bin/sh</p><p>#Buy Shai Perednik 5/29/09</p><p>#Change directory</p><p>cd /home/shai/Chromium</p><p>#Delete any existing LATEST files</p><p>rm LATEST</p><p>#Delete any old Chromium Zip Downloads</p><p>rm chrome-<a href="http://shaiperednik.com/tag/linux/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Linux">linux</a>.zip*</p><p>#Download the LATEST file that contains the newest chromium build for linux</p><p>wget http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/LATEST</p><p>#reads the last line of LATEST file</p><p>VAL=`cat LATEST |cut -f1`</p><p>#Download the latest Snapshot</p><p>wget &#8220;http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/$VAL/chrome-linux.zip&#8221;</p><p>#Kill Any Existing Chrome Proceses</p><p>killall gchrome</p><p>#<a href="http://shaiperednik.com/tag/extract/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Extract">Extract</a> the archive</p><p><a href="http://shaiperednik.com/tag/unzip/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Unzip">unzip</a> -o chrome-linux</p><p>#Make the chrome file executable</p><p>chmod +x chrome-linux/chrome</p><p>#End Code</p><p><a href="http://shaiperednik.com/2009/05/auto-update-to-latest-chromium-build/" rel="bookmark">Auto Update to Latest Chromium Build</a> originally appeared on <a href="http://shaiperednik.com">Shai Perednik.com</a> on May 29, 2009.</p> ]]></content:encoded> <wfw:commentRss>http://shaiperednik.com/2009/05/auto-update-to-latest-chromium-build/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/14 queries in 0.003 seconds using disk: basic
Object Caching 581/603 objects using disk: basic

Served from: shaiperednik.com @ 2012-02-04 17:05:38 -->
