<?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>Tejus&#039;s Blog &#187; Admin</title>
	<atom:link href="http://www.vijedi.net/category/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vijedi.net</link>
	<description>Living the startup life in Atlanta, GA.</description>
	<lastBuildDate>Wed, 25 Aug 2010 11:55:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>RMagick, Slicehost, Ubuntu 8.04</title>
		<link>http://www.vijedi.net/2008/rmagick-slicehost-ubuntu-804/</link>
		<comments>http://www.vijedi.net/2008/rmagick-slicehost-ubuntu-804/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 17:56:15 +0000</pubDate>
		<dc:creator>Tejus Parikh</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[rmagick]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=220</guid>
		<description><![CDATA[The default Ubuntu install in Slicehost has the minimum number of packages. You have to install most things on your own. The documentation provided by Slicehost isÂ thoroughÂ for the most common tasks. Â However, I ran into a hiccup that took me a while to figure out. Â That hiccup, no surprise, was trying to get the infamous ]]></description>
			<content:encoded><![CDATA[<p>The default Ubuntu install in Slicehost has the minimum number of packages.  You have to install most things on your own.  The <a title="Slicehost Docs" href="http://articles.slicehost.com/ubuntu-hardy">documentation provided</a> by Slicehost isÂ thoroughÂ for the most common tasks. Â However, I ran into a hiccup that took me a while to figure out. Â That hiccup, no surprise, was trying to get the infamous and universally required <a title="rmagick homepage" href="http://rmagick.rubyforge.org/">rmagick</a> gem installed.</p>
<p>My first mistake was probably typing:</p>
<pre>
$ sudo aptitude install imagemagick
</pre>
<p>And assuming that it would give me the development headers.  It didn&#8217;t.  Then I tried to find the <code>libmagick10-dev</code> package, which doesn&#8217;t exist.  Eventually, after much trial, error, and increasing familiarity with <code>aptitude</code>, I found this combination:</p>
<pre>
$ sudo aptitude install libmagick9-dev
$ sudo gem install rmagick
</pre>
<p>Success.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/rmagick-slicehost-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RMagick on Centos5</title>
		<link>http://www.vijedi.net/2008/rmagick-on-centos5/</link>
		<comments>http://www.vijedi.net/2008/rmagick-on-centos5/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 17:28:02 +0000</pubDate>
		<dc:creator>Tejus Parikh</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Centos]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=140</guid>
		<description><![CDATA[In a week that included running 10 kilometers for the first time in over 12 months, getting jabbed with a needle for a blood test, and setting a personal best for the cycle ride to the office, by far the most painful was trying to get RMagick installed on a Centos5 box. For starters, the ]]></description>
			<content:encoded><![CDATA[<p>In a week that included running 10 kilometers for the first time in over 12 months, getting jabbed with a needle for a blood test, and setting a personal best for the cycle ride to the office, by far the most painful was trying to get RMagick installed on a Centos5 box.</p>
<p>For starters, the RMagick 2.x series requires ImageMagick 6.3.0 (which came out in early 2006).  Of course, CentOS5 ships with ImageMagick 6.2.28.  I understand the need for stability.  But what&#8217;s a developer to do if COBOL isn&#8217;t a viable solution?</p>
<p><a href="http://www.jroller.com/bokmann/entry/installing_centos_5_imagemagick_and">David Bock&#8217;s</a> website suggests to try the older version.  Which worked, kinda.  However, the rmagick build threw up while running sanity checks.  The issue is that I didn&#8217;t have the Microsoft True Type Fonts installed.  Now to find an easy way to install them.</p>
<p>More googleing lead me to <a href="http://corefonts.sourceforge.net/">Corefonts</a>, which has the installation instructions.  I followed these directions and tried again.</p>
<p>Same error.</p>
<p>The finally step is to link the directory with the fonts to where ImageMagick wants them to be.</p>
<pre>
ln -s /usr/share/fonts/msttcorefonts /usr/share/fonts/default/TrueType
</pre>
<p>One more <code>gem install</code> and everything is happy.</p>
<p>As rock-solid as Centos is, I&#8217;m getting very reluctant to recommend it anymore because of issues like this.  Unless you&#8217;re running software that&#8217;s older or from a commercial vendor, it&#8217;s just not worth it.  Eventually you&#8217;re going to want a library, a major upgrade or a snazzy new language that&#8217;s going to make you jump through all sorts of crazy hoops.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/rmagick-on-centos5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Passenger on Ruby on Rails</title>
		<link>http://www.vijedi.net/2008/a-passenger-on-ruby-on-rails/</link>
		<comments>http://www.vijedi.net/2008/a-passenger-on-ruby-on-rails/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 22:43:45 +0000</pubDate>
		<dc:creator>Tejus Parikh</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[passenger]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=129</guid>
		<description><![CDATA[One Rails thing that has always felt just a bit un-rails like is deployment. There are a ton of solutions out there. I&#8217;ve used Lighttpd, fast-cgi, and mongrel proxied by Apache. Almost all of these have been tedious, a pain, and failure prone. The Dutch have come to our rescue with Passenger (aka mod_rails). Passenger ]]></description>
			<content:encoded><![CDATA[<p>One Rails thing that has always felt just a bit un-rails like is deployment.  There are a ton of solutions out there.  I&#8217;ve used Lighttpd, fast-cgi, and mongrel proxied by Apache.  Almost all of these have been tedious, a pain, and failure prone.</p>
<p>The Dutch have come to our rescue with <a href="http://www.modrails.com/">Passenger</a> (aka mod_rails).  Passenger allows you to run your Rails apps natively within Apache.  No need for proxies, mongrel clusters or anything else.  They even claim that it recovers from server errors.  </p>
<p>The best part is that it&#8217;s brain-dead simple. If you can execute a few lines on a command line and add a virtual host to Apache, you can host your Rails app in Passenger.  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/a-passenger-on-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5</title>
		<link>http://www.vijedi.net/2008/wordpress-25/</link>
		<comments>http://www.vijedi.net/2008/wordpress-25/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 08:37:08 +0000</pubDate>
		<dc:creator>Tejus Parikh</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=122</guid>
		<description><![CDATA[I upgraded to WordPress 2.5Â a while ago and have started drawing some conclusions. Â Stuff I like: It didn&#8217;t break my existing theme The overall feel of the admin interface is cleaner The visual editor sucks less Â Built in tag support The comment moderation page shows which post the comment is on Stuff I don&#8217;t like ]]></description>
			<content:encoded><![CDATA[<p>I upgraded to <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WordPress 2.5</a>Â a while ago and have started drawing some conclusions. Â Stuff I like:</p>
<ul>
<li>It didn&#8217;t break my existing theme</li>
<li>The overall feel of the admin interface is cleaner</li>
<li>The visual editor sucks less</li>
<li>Â Built in tag support</li>
<li>The comment moderation page shows which post the comment is on</li>
</ul>
<p>Stuff I don&#8217;t like as much:</p>
<ul>
<li>Aksimet doesn&#8217;t have a &#8216;recheck queue for spam&#8217; button on the comment moderation page</li>
<li>The save/publish buttons are un-intuitively to the left of the post. (years of web use have taught me that these belong on the bottom)</li>
<li>Tags and categories are under the post. Â While it gives them more space, they become somewhat hidden.</li>
<li>The checkbox for categories is at the bottom, but it still a scrolling list one-column wide. Â If you&#8217;re going to move it, at least use the extra horizontal space.</li>
</ul>
<p>Overall, I like it a lot better, but I think most of that is the colors are softer and the interface is brighter. Â For my standard tasks for writing something and marking comments as spam, the experience is only moderately improved. Â </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/wordpress-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ViJedi Image Gallery, Now with Ty-cons</title>
		<link>http://www.vijedi.net/2008/vijedi-image-gallery-now-with-ty-cons/</link>
		<comments>http://www.vijedi.net/2008/vijedi-image-gallery-now-with-ty-cons/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 01:26:30 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=107</guid>
		<description><![CDATA[I&#8217;ve got a few complaints about the image gallery so I spent some time tonight cleaning things up a bit. The the most visible change is replacing the action icons from the Ice Gallery theme with the newly released Ty-cons. They&#8217;re a little bigger, a lot cleaner, and make a whole lot more sense than ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a few complaints about the <a href="http://vijedi.net/gallery">image gallery</a> so I spent some time tonight cleaning things up a bit.  The the most visible change is replacing the action icons from the Ice Gallery theme with the newly released <a href="http://supportlocalbbq.blogspot.com/2008/02/icon-release-day.html">Ty-cons</a>.  They&#8217;re a little bigger, a lot cleaner, and make a whole lot more sense than what was there before.  They do a great job sprucing the place up.  Thanks Tyrus.</p>
<p>Along with the icons, I added some contextual text, made the images look right in IE, and fixed that weird off by 1 px bug in safari.  The slideshow should work better now as well. First there&#8217;s an icon that reduces the level of mystery meat navigation.  I also changed the background from the dark gray to white, and added sensible defaults for image size and time.  The moral of that story is changing other people&#8217;s Javascript gets a lot easier when that&#8217;s what you do for a living.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/vijedi-image-gallery-now-with-ty-cons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LVM rocks</title>
		<link>http://www.vijedi.net/2008/lvm-rocks/</link>
		<comments>http://www.vijedi.net/2008/lvm-rocks/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 19:24:04 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=101</guid>
		<description><![CDATA[Last week, I found that I had run out of space on the partitions I use for our virtual machines. This was entirely my fault. When allocated space, it never occurred to me that there might be large log files and I shaved the margin too close. I&#8217;ve gotten into the habit of setting up ]]></description>
			<content:encoded><![CDATA[<p>Last week, I found that I had run out of space on the partitions I use for our virtual machines.  This was entirely my fault.  When allocated space, it never occurred to me that there might be large log files and I shaved the margin too close.  I&#8217;ve gotten into the habit of setting up all machines with LVM after the intractable situation I got into with vijedi.net.  Which meant that all I had to do to give my VM&#8217;s more space was:</p>
<ol>
<li>shut down the VM&#8217;s (might have been optional)</li>
<li>open the OpenSUSE lvm tool</li>
<li>allocate more space</li>
<li>hit finish</li>
<li>marvel at the fact that I don&#8217;t have a space problem</li>
</ol>
<p>I&#8217;ve always heard about the power of LVM.  I just never realized how powerful it was.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/lvm-rocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare reminds us of just what Beta is</title>
		<link>http://www.vijedi.net/2008/vmware-reminds-us-of-just-what-beta-is/</link>
		<comments>http://www.vijedi.net/2008/vmware-reminds-us-of-just-what-beta-is/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 12:36:55 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=102</guid>
		<description><![CDATA[Companies have been attaching the word &#8220;beta&#8221; without regard for the meaning of the word. Google is quite possibly the largest offender, affixing the &#8220;Beta&#8221; tag on software that works, is feature-full, and more production ready than many of their competitors final release offerings. The VMWare Server team wants to fix the injustice to the ]]></description>
			<content:encoded><![CDATA[<p>Companies have been attaching the word &#8220;beta&#8221; without regard for the meaning of the word.  Google is quite possibly the largest offender, affixing the &#8220;Beta&#8221; tag on software that works, is feature-full, and more production ready than many of their competitors final release offerings.  </p>
<p>The <a href="http://www.vmware.com">VMWare</a> Server team wants to fix the injustice to the word &#8220;beta&#8221; and bring it back to it&#8217;s roots.  Therefore, the <a href="http://www.vmware.com/beta/server/">VMWare Server 2.0</a> is not very good.  They&#8217;ve replaced the quite usable and responsive thick client that only works on Windows and Linux, with a buggy, unresponsive, slow-to update, web-client that only works in Windows.  Huh?  I thought the point of using the web is platform-independence.  Apparently, VMWare wants to buck that trend as well.</p>
<p>Then you&#8217;ve got the hosting component.  One of our VM&#8217;s kept crashing.  The guest was Centos5.  Thinking that it was just the guest os, we downgraded to Centos4, since the VM that is basically used for running queries was pretty stable.  Nope, same problem.  Apparently, it just has issues with a VM that needs to both read and write from a disk.</p>
<p>In an effort to be a good beta-testing citizen, I filled out a bug report, included some log files and sent it on it&#8217;s way.  I got an email a few weeks later asking for more information.  I dutifully ran the scripts they asked me to run.  One of the commands told me to contact VMware support for an FTP account, since the generated information was too large for their webform.  I emailed back, and I&#8217;m still waiting.  </p>
<p>We&#8217;ve since downgraded to Server 1.04, in what might be a vain hope that since VMWare knows the traditional definition of &#8220;Beta,&#8221; they may know the traditional definition of &#8220;Production Ready.&#8221;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2008/vmware-reminds-us-of-just-what-beta-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Zimbra</title>
		<link>http://www.vijedi.net/2007/upgrading-zimbra/</link>
		<comments>http://www.vijedi.net/2007/upgrading-zimbra/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 23:12:30 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=97</guid>
		<description><![CDATA[It&#8217;s been a while since I installed Zimbra on my mail server and took the opportunity of some free time to perform the update. At first, I was a little apprehensive, since there wasn&#8217;t much documentation available. However, I forged ahead, downloaded the new version and ran the install script. When it asked me to ]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I installed Zimbra on my mail server and took the opportunity of some free time to perform the update.  At first, I was a little apprehensive, since there wasn&#8217;t much documentation available.  However, I forged ahead, downloaded the new version and ran the install script.  When it asked me to update, I said &#8216;Y&#8217; and walked away from the computer.  When I came back, I had an upgraded Zimbra.  Apparently, there wasn&#8217;t much documentation because there just isn&#8217;t much to document.</p>
<p>All in all, the server was down for maybe 5 minutes and my logged in session didn&#8217;t even hiccup.  It&#8217;s always nice when software just works.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2007/upgrading-zimbra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress comment response time</title>
		<link>http://www.vijedi.net/2007/wordpress-comment-response-time/</link>
		<comments>http://www.vijedi.net/2007/wordpress-comment-response-time/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 23:04:53 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=89</guid>
		<description><![CDATA[Because spammer suck, and spam assassin is a product, not a person, comments only get posted after they go through moderation. Of course, that means that I have to know someone&#8217;s posted a comment. This used to work great, but when I switched to having mail running on a separate machine, wordpress stopped telling me ]]></description>
			<content:encoded><![CDATA[<p>Because spammer suck, and spam assassin is a product, not a person, comments only get posted after they go through moderation.  Of course, that means that I have to know someone&#8217;s posted a comment.  This used to work great, but  when I switched to having mail running on a separate machine, wordpress stopped telling me that a comment has been posted.  Until now.</p>
<p>It turns out that a few months ago, no doubt in a moment of &#8220;why the fuck is this running?&#8221; I turned off the postfix service.  Oops.  Turned it back on and watched the stream of emails show up in my inbox.  Without fail, comment response and moderation time should be a lot better now.  </p>
<p>This is why I don&#8217;t maintain production systems.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2007/wordpress-comment-response-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync and SVN: A poor man&#8217;s distributed version control</title>
		<link>http://www.vijedi.net/2007/rsync-and-svn-a-poor-mans-distributed-version-control/</link>
		<comments>http://www.vijedi.net/2007/rsync-and-svn-a-poor-mans-distributed-version-control/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 10:08:40 +0000</pubDate>
		<dc:creator>tejus</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.vijedi.net/wordpress/?p=84</guid>
		<description><![CDATA[I probably have too many computers. Often, this leads me to need some version of some source code on one box, that only exists on another. I used to check into a temporary branch, then check out from that branch, but that often leads to unpleasant merge problems. Another thing I&#8217;ve tried is just using ]]></description>
			<content:encoded><![CDATA[<p>I probably have too many computers.  Often, this leads me to need some version of some source code on one box, that only exists on another.  I used to check into a temporary branch, then check out from that branch, but that often leads to unpleasant merge problems.  Another thing I&#8217;ve tried is just using scp to transfer files, but that can be time consuming with a slow connection or a lot of source.  I can&#8217;t believe it took me this long to think of it, but the most sensible solution is to use rsync.  </p>
<p>To pull the files from the computer with current source to older source navigate to your source directory and type:<br />
<code>rsync -avuz new.source.machine:workspacedir/sourcedir . </code> (don&#8217;t forget the .)</p>
<p>To put new changes back, it&#8217;s just:<br />
<code>rsync -avuz . new.source.machine:workspacedir/sourcedir</code> </p>
<p>You also might want to add the <code>--delete</code> option if you&#8217;ve been doing a lot of refactoring.  </p>
<p>Another thing I ran into is that Eclipse doesn&#8217;t really like adding new projects directly to the workspace.  The work around I&#8217;ve found is to make sure the project exists within Eclipse on the machine you want to work on before attempting to rsync.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.vijedi.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.vijedi.net/2007/rsync-and-svn-a-poor-mans-distributed-version-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
