<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Eddie Dunn's Weblog</title>
	<atom:link href="http://eddiedunn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eddiedunn.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 30 Nov 2008 05:03:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='eddiedunn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Eddie Dunn's Weblog</title>
		<link>http://eddiedunn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://eddiedunn.wordpress.com/osd.xml" title="Eddie Dunn&#039;s Weblog" />
	<atom:link rel='hub' href='http://eddiedunn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>using unison for robust Linux, OSX, and Windows file syncronization</title>
		<link>http://eddiedunn.wordpress.com/2008/11/30/using-unison-for-robust-linux-osx-and-windows-file-syncronization/</link>
		<comments>http://eddiedunn.wordpress.com/2008/11/30/using-unison-for-robust-linux-osx-and-windows-file-syncronization/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 05:00:31 +0000</pubDate>
		<dc:creator>eddiedunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddiedunn.wordpress.com/?p=7</guid>
		<description><![CDATA[I have been struggling with the perfect backup for my home network, well I say backup it is really more of a hot sync to my drobo. This drobo is connected to my CentOS 5.2 box. The machine I am trying to backup is my windows xp desktop with all my families photos and other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eddiedunn.wordpress.com&amp;blog=3952179&amp;post=7&amp;subd=eddiedunn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been struggling with the perfect backup for my home network, well I say backup it is really more of a hot sync to my <a href="http://www.drobo.com/" target="_blank">drobo</a>. This <a href="http://www.drobo.com/" target="_blank">drobo</a> is connected to my <a href="http://www.centos.org/" target="_blank">CentOS 5.2</a> box. The machine I am trying to backup is my windows xp desktop with all my families photos and other important files.</p>
<p>The first attempt at this was to simply create a <a href="http://www.samba.org" target="_blank">samba</a> share on my linux box of the backup directory on the drobo, mount the share by way of a mapped network drive and run <a href="http://en.wikipedia.org/wiki/Robocopy" target="_blank">robocopy</a> with the mirror options to sync the backup files on the xp machine with the drobo. This absolutely killed the responsiveness of my linux box. I am really not sure if one thing was to blame for this but a culmination of disk ( slow usb drobo) and network i/o waits and the shear amount of data that was being processed made even a normal run, which by my calculation should be finished in hours or even minutes in terms of data transfer, take multiple days. I started reading around and saw what some people were doing when trying to sync files across windows and linux. I saw that some were using <a href="http://www.cygwin.com/" target="_blank">cygwin</a> and running <a href="http://samba.anu.edu.au/rsync/" target="_blank">rsync</a>. This seemed like a pottentially good solution but I really could not justify putting cygwin on my windows box just for rsync. I then came across  <a href="http://www.cis.upenn.edu/~bcpierce/unison/" target="_blank">unison</a>.</p>
<p>Unison is a great little tool that allows you to perform 2-way syncs of files and directories across Mac, Windows and Linux platforms.</p>
<p>I wanted to let the linux server initiate the backup mainly because it is always on and many times the desktop is turned off during the backup window (more on this). I chose to also use the socket method and restrict that port to my linux box ip (note this is a trusted network with no wireless). This meant I needed to run unison in socket server mode by the -socket &lt;port number&gt; parameters as a windows service that would automatically start at boot. To accomplish this I grabbed the text windows exe version of unison and placed it in path. I then installed it as a service using <a href="http://support.microsoft.com/kb/137890" target="_blank">microsoft&#8217;s instructions.</a> Note in this context the Application value will be<br />
&#8220;&lt;fullPathToUnison_exe&gt; -socket &lt;port number&gt;&#8221;.</p>
<p>I simply installed the application on CentOS from the rpmforge repository and invoked it using cron as follows</p>
<p>unison socket://&lt;host&gt;:&lt;port&gt;/c:/Documents\ and\ Settings/user /mnt/drobo/home/user</p>
<p>Obviously your paths will vary&#8230;</p>
<p>I got the following from someone somewhere along the way.  Here are the default settings on my linux unison account that runs the backups and are good in general for using unison with windows</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p># Helps out a lot on Windows<br />
fastcheck = true</p>
<p># place new files at the top of the list<br />
sortnewfirst = true</p>
<p># turn on ssh compression<br />
rshargs = -C</p>
<p>ignore = Name Thumbs.db<br />
ignore = Name *~<br />
ignore = Name *.tmp</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Note I am purposely leaving out important points about this tool especially how it deals with conflicts  if you do not fully understand what you are doing. I am still learning these myself <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The best advice I can offer is to read the docs for the finer points of the tool.</p>
<p>Another piece of the puzzle is using a <a href="http://en.wikipedia.org/wiki/Magic_Packet" target="_blank">magic packet </a>generator to trigger the wake on lan function of the windows machine to wake up the windows machine in the case that it is powered off at the beginning of a backup window. I used the linux tool <a href="http://sourceforge.net/projects/wake-on-lan/" target="_blank"></a><a href="http://wake-on-lan.sourceforge.net/" target="_blank">wol</a> for this. I found a <a href="http://xlife.zuavra.net/index.php/60/" target="_blank">great guide</a> on remote wakeup and using this tool. Note you must enable both in the bios on the motherboard and in the driver settings in the os. (setting found and changed using ethtool in linux and in the power management tab of the network card driver in device manager windows).</p>
<p>This setup also provides the luxury of being able to add files to the &#8220;backup&#8221; on the linux/drobo side and have them replicate back to my windows desktop. This could get even more hairy with respect to conflict resolution and I cant right off think of an occasion I might actually use that but hey, its cool knowing I can <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eddiedunn.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eddiedunn.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eddiedunn.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eddiedunn.wordpress.com&amp;blog=3952179&amp;post=7&amp;subd=eddiedunn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eddiedunn.wordpress.com/2008/11/30/using-unison-for-robust-linux-osx-and-windows-file-syncronization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0eeec55995216a5b6f080d1c9d38dfae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eddiedunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogging in the Classroom</title>
		<link>http://eddiedunn.wordpress.com/2008/06/11/uses-for-blogs-in-education/</link>
		<comments>http://eddiedunn.wordpress.com/2008/06/11/uses-for-blogs-in-education/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:37:06 +0000</pubDate>
		<dc:creator>eddiedunn</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[educational technology]]></category>

		<guid isPermaLink="false">http://eddiedunn.wordpress.com/?p=4</guid>
		<description><![CDATA[This entry was written for a presentation to K-12 teachers as part of "Integrating 21st Century Skills into the Classroom" program. It covers the basics of what a blog is, setup of a wordpress blog, and some possible classroom uses.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eddiedunn.wordpress.com&amp;blog=3952179&amp;post=4&amp;subd=eddiedunn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:x-small;font-family:Verdana;"><br />
A Weblog or &#8220;blog&#8221; is a website consisting of many articles usually listed in reverse chronological order. These articles are most commonly textual in content but can also include images, sound, and even video. There are many Weblog products, some of them are free and others require payment for use. We are going to highlight <a href="http://wordpress.com/">WordPress</a>, one of the more popular free products.</span></p>
<p><span style="font-size:x-small;font-family:Verdana;"><br />
Getting started is quite simple. All one needs to do is have a working email address and click on the following link: </span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
<a href="http://wordpress.com/signup/">WordPress Signup</a><br />
</span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
Once the form is completed and submitted you will need to activate the account. This is done by checking your email and clicking the special activation link contained in an email from WordPress. Now you are ready to start blogging!<br />
</span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
<a href="http://codex.wordpress.org/WordPress_Lessons">WordPress Lessons</a><br />
</span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
Options for instructors using blogs:</span></p>
<ul>
<li>Content-related blog as professional practice</li>
<li>Networking and personal knowledge sharing</li>
<li>Instructional tips for students</li>
<li>Course announcements and readings</li>
<li>Annotated links</li>
<li>Knowledge management</li>
</ul>
<p>Options for students using blogs in your courses include:</p>
<ul>
<li>Reflective or writing journals</li>
<li>Knowledge management</li>
<li>Assignment submission and review</li>
<li>Dialogue for groupwork</li>
<li>E-portfolios</li>
<li>Share course-related resources</li>
</ul>
<p><span style="font-size:x-small;font-family:Verdana;">&#8220;Henry Farrell identifies <span style="text-decoration:underline;"><strong> five major uses for blogs</strong></span> in education:</span></p>
<p><span style="font-size:x-small;font-family:Verdana;"><br />
</span><span style="font-size:xx-small;font-family:Verdana;"> <strong>1</strong>. <span style="text-decoration:underline;">Teachers use blogs to replace the standard class Web page</span>.      Instructors post class times and rules, assignment notifications, suggested      readings, and exercises. Aside from the ordering of material by date,      students would find nothing unusual in this use of the blog. The instructor,      however, finds that the use of blogging software makes this previously      odious chore much simpler.</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;"><br />
<strong>2. </strong><span style="text-decoration:underline;">Instructors begin to link to Internet items that relate to      their course</span>. Mesa Community College’s Rick Effland, for example,      maintains a blog to pass along links and comments about topics in      archaeology.15 Though Mesa’s archaeology Web pages have been around since      1995, blogging allows Effland to write what are in essence short essays      directed specifically toward his students. Effland’s entries are not mere      annotations of interesting links. They effectively model his approach and      interest in archaeology for his students.</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;"><br />
<strong>3.</strong> <span style="text-decoration:underline;">Blogs are used to organize in-class discussions</span>. At the      State University of New York at Buffalo, for example, Alexander Halavais      added a blog to his media law class of about 180 students. Course credit was      awarded for online discussion, with topics ranging from the First Amendment      to libel to Irish law reform. As the course wound down with a discussion of      nude bikers, Halavais questioned whether he would continue the blog the      following year because of the workload, but students were enthusiastic in      their comments</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;"><br />
Mireille Guay, an instructor at St-Joseph, notes: “The conversation possible      on the weblog is also an amazing tool to develop our community of learners.      The students get to know each other better by visiting and reading blogs      from other students. They discover, in a non-threatening way, their      similarities and differences. The student who usually talks very loud in the      classroom and the student who is very timid have the same writing space to      voice their opinion. It puts students in a situation of equity.”</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;"><br />
<strong>4.</strong> Some <span style="text-decoration:underline;">instructors are using blogs to organize class seminars and      to provide summaries of readings</span>. Used in this way, the blogs become      “group blogs”—that is, individual blogs authored by a group of people.      Farrell notes: “It becomes much easier for the professor and students to      access the readings for a particular week—and if you make sure that people      are organized about how they do it, the summaries will effectively file      themselves.”</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;"><br />
<strong>5.</strong> <span style="text-decoration:underline;">Students may be asked to write their own blogs as part of their      course grade</span>. Educational Technologist Lane Dunlop wrote about one class      at Cornell College: “Each day the students read a chunk of a book and post      two paragraphs of their thoughts on the reading.” In another class, French      304, students were given a similar exercise. Using a French-language      blogging service called Monblogue, Molly, a business student, posted a few      paragraphs every day.&#8221;<br />
</span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
references:</span></p>
<p><span style="font-size:x-small;font-family:Verdana;"> <a title="http://www.pembinatrails.ca/program/technology/uses_of_blogs_in_education.htm" href="http://www.pembinatrails.ca/program/technology/uses_of_blogs_in_education.htm" target="_blank">http://www.pembinatrails.ca/program/technology/uses_of_blogs_in_education.htm</a></span><br />
<span style="font-size:x-small;font-family:Verdana;"><br />
<a title="http://awd.cl.uh.edu/blog/" href="http://awd.cl.uh.edu/blog/" target="_blank">http://awd.cl.uh.edu/blog/</a></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eddiedunn.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eddiedunn.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eddiedunn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eddiedunn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eddiedunn.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eddiedunn.wordpress.com&amp;blog=3952179&amp;post=4&amp;subd=eddiedunn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eddiedunn.wordpress.com/2008/06/11/uses-for-blogs-in-education/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0eeec55995216a5b6f080d1c9d38dfae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eddiedunn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
