<?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>Make Tech Easier&#187; copy files</title>
	<atom:link href="http://maketecheasier.com/tag/copy-files/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 25 May 2012 21:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To Take Secure Remote Backups Using SSH</title>
		<link>http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16</link>
		<comments>http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16#comments</comments>
		<pubDate>Fri, 16 Apr 2010 12:00:48 +0000</pubDate>
		<dc:creator>Sharninder</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copy files]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=14511</guid>
		<description><![CDATA[A couple of weeks back Damien posted an excellent tutorial on securing your internet connection using SSH. In his post, he explains what SSH is as well as the SSH Tunneling method that he uses to secure the internet traffic. Today, I&#8217;ll be taking you through another tutorial that involves... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16&amp;title=How+To+Take+Secure+Remote+Backups+Using+SSH&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16">How To Take Secure Remote Backups Using SSH</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-14515" title="SSH Secure Shell" src="http://imagecdn.maketecheasier.com/2010/04/ssh-padlock.jpg" alt="ssh-padlock" width="240" height="160" />A couple of weeks back Damien posted an excellent tutorial on <a href="http://maketecheasier.com/secure-internet-connection-via-ssh/2010/03/25">securing your internet connection</a> using SSH. In his post, he explains what SSH is as well as the SSH Tunneling method that he uses to secure the internet traffic.</p>
<p>Today, I&#8217;ll be taking you through another tutorial that involves using SSH to take backups of your remote servers.<br />
<span id="more-14511"></span><br />
As you guys might be aware that I also run a website called <a href="http://geekyninja.com/" target="_blank">Geeky Ninja</a> which is hosted by the nice folks over at Dreamhost on a Linux server.</p>
<p>Even though Dreamhost keeps a backup of my site, as a webmaster I&#8217;m a little paranoid about backups and worry about losing my data all the time. That is why I also backup my site to a remote location occasionally. And this is where SSH comes in.</p>
<p>As you guy probably know that SSH is a secure encrypted protocol to communicate between two machines. Since SSH is not a text based protocol like telnet, it is possible to transfer actually binary files using this protocol and SCP is the utility that accomplishes this task on Unix/Linux based systems. SCP encrypts the files given to it using the SSH protocol and copies it to the remote destination that the user specifies.</p>
<h3>Getting Started</h3>
<p>First of all you need to make sure that the remote system that you want to copy the data from has ssh installed and running. In my case, that&#8217;s the remote webserver hosted at Dreamhost.</p>
<p>Login to the remote system and issue the &#8220;<em>pwd</em>&#8221; command to see your current directory.</p>
<p><img class="aligncenter size-full wp-image-14518" title="scp" src="http://imagecdn.maketecheasier.com/2010/04/scp-001.png" alt="scp-001" width="240" height="120" /></p>
<p>Note down the path that <em>pwd</em> prints. Now, from your local system issue the following scp command.</p>
<p><img class="aligncenter size-full wp-image-14519" title="SCP - Secure Copy" src="http://imagecdn.maketecheasier.com/2010/04/scp-002.png" alt="scp-002" width="500" height="113" /></p>
<p>Replace:<br />
<em>username</em> with your real username on the remote system,<br />
<em>Remote_IP</em> with the IP Address/Name of the remote system,<br />
<em>Remote_directory</em> with the output of the pwd command from above and<br />
<em>backup_directory</em> with the name of the directory on your local system where you want to store the backups.</p>
<p>That&#8217;s it. This command will copy all the files and directories under the <em>remote_directory</em> to the <em>backup_directory</em> on your local system.</p>
<h3>Backing Up in Windows</h3>
<p>The above instructions will work well for Unix/Linux based machines, but what if you use Windows as your desktop and want to make a backup of your data from the remote machine to your windows desktop ?</p>
<p>Well, in that case you can just use the excellent utility, <a href="http://winscp.net/eng/index.php">WinSCP</a> which is a graphical SCP client for Windows</p>
<p><img class="aligncenter size-full wp-image-14521" title="WinSCP" src="http://imagecdn.maketecheasier.com/2010/04/scp-003.png" alt="WinSCP" width="500" height="278" /></p>
<p>WinSCP gives you the familiar Explorer like interface with full support for drag and drop. Just browse through the directory you want to backup on the right pane and drag it over to the left pane and say GoodBye to text only unsecure FTP sessions.</p>
<p>How do you guys backup your remote servers ? Let us know in the comments.</p>
<p>Image Credit: <a href="http://www.flickr.com/photos/carbonnyc/" target="_blank">Carbonnyc</a><br />
<!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/make-incremental-backups-with-rsync/2010/08/25' title='How to Make Incremental Backups With Rsync'>How to Make Incremental Backups With Rsync</a></li>
<li><a href='http://maketecheasier.com/easier-way-to-generate-publicprivate-ssh-key-linux/2011/11/17' title='An Easier Way to Generate A Public/Private SSH Key Via a GUI [Linux]'>An Easier Way to Generate A Public/Private SSH Key Via a GUI [Linux]</a></li>
<li><a href='http://maketecheasier.com/generate-public-private-ssh-key/2011/11/10' title='How to Generate A Public/Private SSH Key [Linux]'>How to Generate A Public/Private SSH Key [Linux]</a></li>
<li><a href='http://maketecheasier.com/remotely-control-ktorrent/2011/02/23' title='How to Remotely Control KTorrent'>How to Remotely Control KTorrent</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16&amp;title=How+To+Take+Secure+Remote+Backups+Using+SSH&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16">How To Take Secure Remote Backups Using SSH</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/secure-remote-backups-using-ssh/2010/04/16/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Many Ways to Copy, Move, Rename, and Archive in KDE 4</title>
		<link>http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12</link>
		<comments>http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12#comments</comments>
		<pubDate>Mon, 12 Oct 2009 12:36:10 +0000</pubDate>
		<dc:creator>Tavis J. Hampton</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[copy files]]></category>
		<category><![CDATA[dolphin]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[move files]]></category>
		<category><![CDATA[rename files]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=7705</guid>
		<description><![CDATA[In my last post, I covered some of the features in Dolphin that I find particularly useful. In this post, you will learn about some very basic features that everyone uses, but you may not know all of the various easy methods of accomplishing them. In KDE, there are several... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12&amp;title=The+Many+Ways+to+Copy%2C+Move%2C+Rename%2C+and+Archive+in+KDE+4&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12">The Many Ways to Copy, Move, Rename, and Archive in KDE 4</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-7708" src="http://imagecdn.maketecheasier.com/2009/10/kde4-edit-copy.jpg" alt="edit-copy" width="128" height="128" />In my last post, I covered some of the <a href="http://maketecheasier.com/master-dolphin-in-kde-4/2009/10/05">features in Dolphin</a> that I find particularly useful. In this post, you will learn about some very basic features that everyone uses, but you may not know all of the various easy methods of accomplishing them. In KDE, there are several ways to copy, move, rename, and archive files. Let&#8217;s take a look at a few them.<span id="more-7705"></span></p>
<h3>Copy/Move</h3>
<p>KDE is a typical graphical interface, and lends itself to dragging and dropping.  If you want to copy or move a file quickly, just drag it from one folder to another. With Dolphin, press F3 to bring up a split window, Control-N to open a whole new window, or Control-T to open a new tab. You can also drag files to any point in Dolphin&#8217;s breadcrumbs, to a folder on the Places panel, or to a <a href="http://maketecheasier.com/get-the-most-out-of-kde4s-folderview-widget/2009/05/08">Folderview</a> on your desktop.You can also drag images from your web browser to a folder, if your browser supports it (both Konqueror and the latest Firefox do).</p>
<p><img class="alignnone size-full wp-image-7710" src="http://imagecdn.maketecheasier.com/2009/10/kde4-drag-menu.jpg" alt="drag-menu" width="312" height="174" /></p>
<p>When you let go of the button after dragging, KDE gives you an options window: <em>Move here</em>, <em>Copy here</em>, <em>Link here</em>, <em>Cancel</em>.  You will also notice shortcut keys listed beside each.  If you hold the shortcut key while dragging a file, it will automatically choose the corresponding action.  &#8220;<em>Link here</em>&#8221; creates a symbollic link to your file, rather than copying or moving it.</p>
<p>Another way to copy or move is to use shortcut keys. Simply select the files you want to copy and press <em>Control-C</em>, or select the files you want to move and press <em>Control-X</em>. Then, paste them in the new location, just like pasting text in a word processor, by pressing <em>Control-V</em>.</p>
<p>Another feature that many found useful in KDE 3 is the &#8220;Copy to&#8230;&#8221; context menu.  To enable this:</p>
<p>1. Click &#8220;Settings&#8221; and &#8220;Configure Dolphin&#8221;<br />
2. Click &#8220;General&#8221;<br />
3. Click &#8220;Context Menu&#8221;<br />
4. Check &#8220;Show &#8216;Copy To&#8217; and &#8216;Move To&#8217; commands.</p>
<p>Now, when you right click on a file, you will notice the &#8220;Copy To&#8221; option in the menu. Navigate through the menu to the place where you want to copy the file and click &#8220;copy here&#8221;. The same method will work for &#8220;Move To&#8221;.</p>
<h3>Rename</h3>
<p>There are three easy ways to rename a file:</p>
<p>1. Select the file and then click &#8220;File&#8221; and &#8220;Rename&#8230;&#8221;.<br />
2. Right click on the file and click &#8220;Rename&#8230;&#8221;<br />
3. Selet the file and press F2.</p>
<h3>Batch Rename</h3>
<p>There are times when you might need to rename multiple files at once. KDE makes it easy.</p>
<p><img class="alignnone size-full wp-image-7711" src="http://imagecdn.maketecheasier.com/2009/10/kde4-batch-rename.jpg" alt="batch-rename" width="501" height="275" /></p>
<p>1. Select all the files you want to rename.<br />
2. Press F2.<br />
3. It will ask for a new name:  &#8220;New name # (# will be replaced by ascending numbers).<br />
4. Leave the &#8220;#&#8221; and enter the prefix you want for each filename.</p>
<h3>Archives</h3>
<p>To create an archive in KDE:</p>
<p>1. Select the files you want to archive.<br />
2. Right click and click &#8220;Compress&#8221;.<br />
3. Select the type of archive:  ZIP, RAR, or  ZIP/TAR</p>
<p><img class="size-full wp-image-7712 alignnone" src="http://imagecdn.maketecheasier.com/2009/10/kde4-extract.jpg" alt="extract" width="449" height="366" /></p>
<p>By default, when you click on an archive, Dolphin will open it in Ark archive manager. In previous versions of KDE, you could navigate into the archive as if it were a folder. To enable this feature:</p>
<p>1. Click &#8220;Settings&#8221; and &#8220;Configure Dolphin&#8221;.<br />
2. Click &#8220;Navigation&#8221;.<br />
3. Check &#8220;Open archives as folder&#8221;.</p>
<p>To extract an archive:</p>
<p>Right click and click either &#8220;<em>Extract Archive Here &#8211; Autodetect Subfolder</em>, <em>Extract Archive To</em>, or <em>Extract Archive Here</em>.&#8221;</p>
<p>The &#8220;autodetect subfolder&#8221; will create a subfolder for the archive if one is not already present inside of it.  This will keep your archived files from mixing in with your other files.</p>
<p>As you can see, KDE makes it easy to manipulate your files, and there are many methods to get work done. If there are any methods that I missed, feel free to add them to the comments section.</p>
<p><!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/kde46-review-full-of-awesomeness/2011/02/02' title='KDE 4.6 Review: It’s Full Of Awesomeness'>KDE 4.6 Review: It’s Full Of Awesomeness</a></li>
<li><a href='http://maketecheasier.com/configuring-places-bookmarks-and-locations-in-kde/2010/12/15' title='Configuring Places, Bookmarks, and Locations in KDE'>Configuring Places, Bookmarks, and Locations in KDE</a></li>
<li><a href='http://maketecheasier.com/kde-4-4-preview/2010/01/18' title='A Preview of KDE 4.4'>A Preview of KDE 4.4</a></li>
<li><a href='http://maketecheasier.com/master-dolphin-in-kde-4/2009/10/05' title='Master Dolphin in KDE 4'>Master Dolphin in KDE 4</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12&amp;title=The+Many+Ways+to+Copy%2C+Move%2C+Rename%2C+and+Archive+in+KDE+4&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12">The Many Ways to Copy, Move, Rename, and Archive in KDE 4</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/the-many-ways-to-copy-move-rename-and-archive-in-kde-4/2009/10/12/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Moving Data From The Old Mac To The New</title>
		<link>http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10</link>
		<comments>http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10#comments</comments>
		<pubDate>Sat, 10 Jan 2009 23:21:17 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[copy files]]></category>
		<category><![CDATA[files migration]]></category>
		<category><![CDATA[synchronization]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=1960</guid>
		<description><![CDATA[We all know that Apple is one of the companies which (in)famous for their hobby to constantly release mouth-watering products. Those fanboy whose will strength is not that strong would always be tempted to constantly replace their belongings with the latest breeds. The problem is, when you switch your machine(s),... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10&amp;title=Moving+Data+From+The+Old+Mac+To+The+New&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10">Moving Data From The Old Mac To The New</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1962" src="http://imagecdn.maketecheasier.com/2009/1/moving-mac-data.jpg" alt="moving-mac-data" width="500" height="323" /></p>
<p>We all know that Apple is one of the companies which (in)famous for their hobby to constantly release mouth-watering products. Those fanboy whose will strength is not that strong would always be tempted to constantly replace their belongings with the latest breeds.</p>
<p>The problem is, when you switch your machine(s), you also have to move your datas along. And as surprisingly as it seems, most people don&#8217;t know how to migrate their datas &#8211; properly &#8211; from the old Mac to the new.</p>
<p><span id="more-1960"></span>Recently I got an opportunity to switch from my old iBook to a newer MacBook. And as one of those unfortunate soul who feel that they have to do everything on their own, I tried to find my way out of this problem. Here are my findings.</p>
<h3>The easy way</h3>
<p>The first time you start your Mac, you will have the opportunity to migrate your datas. Take it. This step and the help from the technical assistant at the Apple Store will make your life so much easier.</p>
<p>But just in case you missed the shot, you still can use the help from the Migration Assistant application (<em>Applications-&gt;Utilities-&gt;Migration Assistant</em>). Just open the app and follow the steps. Basically it will ask you where will you move your datas to/from (moving them to another Mac or getting them from another Mac or disk), then it will also ask how will you transfer your data, either through Firewire cable &#8211; which port is missing from the new MacBook, through wireless connection, or LAN.</p>
<p><img class="alignnone size-full wp-image-1963" src="http://imagecdn.maketecheasier.com/2009/1/migration-assistant.jpg" alt="migration-assistant" width="500" height="355" /></p>
<p>If you have an external hard drive and Mac OS X 10.5 on both computer, the migration process will also be a snap. Just use the Time Machine (<em>Applications-&gt;Time Machine</em>) to back up the datas from the old machine to the external hard drive, and restore the datas using the new Mac.</p>
<p><img class="alignnone size-full wp-image-1964" src="http://imagecdn.maketecheasier.com/2009/1/time-machine.jpg" alt="time-machine" width="500" height="333" /></p>
<h3>The Manual Way</h3>
<p>But if the easiest method failed, in my case because no matter what I do the old iBook won&#8217;t connect to the MacBook, there is still the manual way. Less comfortable, I know, but you have to do what you have to do.</p>
<p>So, beside the obvious &#8211; your documents and such (inside your Documents &#8211; Movies &#8211; Music &#8211; Pictures folder), you will want to move your <em>Applications</em> and <em>Libraries</em> folders because there lie all of your unseen datas &#8211; user accounts, all kinds of settings, and such. Be careful not to replace your newer apps with the olds as every Mac is preinstalled with loads of ready to use apps.</p>
<p>There are two Library folders. One is under your home folder (~/Library) and the other one is under your Hard Drive folder (/Library).</p>
<p><img class="alignnone size-full wp-image-1965" src="http://imagecdn.maketecheasier.com/2009/1/two-libraries.jpg" alt="two-libraries" width="453" height="248" /></p>
<p>Please bear in mind that not every application and setting can be moved just by dragging and dropping. You&#8217;ll get more incompatibility if you move your datas between different version of Mac OS (Panther to Leopard for example). I found out that it would be better to use synchronization app to &#8216;back up&#8217; your data to new location.</p>
<p>In my case, I also use external hard drive (a.k.a iPod classic) as a mediator since my old Mac kept its vow of silence and wouldn&#8217;t talk to the new. Maybe it&#8217;s jealous? :) So the process of moving my data looks like this: iBook &#8211;&gt; external hard drive &#8211;&gt; MacBook. It was not a smooth process and I only get about 70% right. But it still better than nothing.</p>
<p>Some applications need special attention and you have to actively looking for answer to your problem on the net. For example, you need to press <em>T</em> button when you open iPhoto for the first time in order to enable you to choose the photo library, or to use the &#8216;Consolidate Library&#8217; command in iTunes for more or less the same goal. Read more about it <a href="http://support.apple.com/kb/HT1449?viewlocale=en_US" target="_blank">here</a>. You also have to authorize your new machine to be able to open your iTunes Music Store purchases.</p>
<p>Now my new Mac is mostly up and running (while still waiting for the updates download process to finish and trying to find out the way to fix some minor things). I hope this short rambling could help other unfortunate souls out there.</p>
<p>If you have other tips or stories you want to share about migrating your old Mac to new, use the comments below.</p>
<p><!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/schedule-backup-and-synchronization-tasks-in-windows/2012/05/22' title='How To Schedule Backup And Synchronization Tasks In Windows'>How To Schedule Backup And Synchronization Tasks In Windows</a></li>
<li><a href='http://maketecheasier.com/bodega-a-great-alternative-to-mac-app-store/2012/05/21' title='Bodega &#8211; A Great Alternative to Mac App Store'>Bodega &#8211; A Great Alternative to Mac App Store</a></li>
<li><a href='http://maketecheasier.com/4-photography-apps-for-busy-photographers-mac/2012/05/19' title='4 Photography Apps For Busy Photographers [Mac]'>4 Photography Apps For Busy Photographers [Mac]</a></li>
<li><a href='http://maketecheasier.com/a-comprehensive-guide-to-itunes-u-ios/2012/05/17' title='A Comprehensive Guide to iTunes U [iOS]'>A Comprehensive Guide to iTunes U [iOS]</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10&amp;title=Moving+Data+From+The+Old+Mac+To+The+New&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10">Moving Data From The Old Mac To The New</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/moving-data-from-the-old-mac-to-the-new/2009/01/10/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Copy Files To/From Your iPhone</title>
		<link>http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05</link>
		<comments>http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05#comments</comments>
		<pubDate>Fri, 05 Sep 2008 02:30:27 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[copy files]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[portable hard disk]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=806</guid>
		<description><![CDATA[While you can use your iPod as a portable hard disk, Apple does not allow you to transfer files to/from your iPhone. Although there are several apps that allows you to copy files, they are no free solutions. If you have jailbroken your iPhone, you can customize it to connect... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05&amp;title=How+to+Copy+Files+To%2FFrom+Your+iPhone&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05">How to Copy Files To/From Your iPhone</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-817" title="iphone-copy1" src="http://imagecdn.maketecheasier.com/2008/09/iphone-copy1.jpg" alt="iphone-copy" width="580" height="250" /></p>
<p>While you can use your iPod as a portable hard disk, Apple does not allow you to transfer files to/from your iPhone. Although there are several apps that allows you to copy files, they are no free solutions. If you have <a href="http://maketecheasier.com/how-to-use-quickpwn-to-jailbreak-your-iphoneipod-touch-easily/2008/09/03" target="_blank">jailbroken</a> your iPhone, you can customize it to connect to the desktop and copy files to/from your iPhone.</p>
<p><span id="more-806"></span>For those who have not jailbreak their iPhone, here is a tutorial on <a href="http://maketecheasier.com/how-to-use-quickpwn-to-jailbreak-your-iphoneipod-touch-easily/2008/09/03" target="_blank">jailbreaking your iPhone the easy way</a>.</p>
<p><strong>For Mac users:</strong></p>
<p>In Mac, you can make use of <a href="http://en.wikipedia.org/wiki/Apple_Filing_Protocol" target="_blank">AFP</a> to access iPhone/iPod Touch via the Finder.</p>
<p>To do this, you have to first install Netatalk via Cydia.</p>
<p>On your jailbroken iPhone, go to <em>Cydia</em>. At the bottom, go to <em>Sections</em>. Navigate to <em>Networking -&gt; Netatalk</em>. Click install on the top-right corner of the screen.</p>
<p>Once you have installed Netatalk, on your Mac desktop, open up Finder, you should find your iPhone entry on the left pane, under the &#8216;<em>Shared</em>&#8216; section. Click on it. You should see a blank screen with a &#8216;<em>Connect As</em>&#8216; on top of the screen.</p>
<p><img class="alignnone size-full wp-image-807" title="afp-1" src="http://imagecdn.maketecheasier.com/2008/09/afp-1.jpg" alt="" width="580" height="336" /></p>
<p>Click on the &#8216;<em>Connect As</em>&#8216; and enter the following:</p>
<p>Name: <em>mobile</em><br />
Password:<em> alpine</em></p>
<p><img class="alignnone size-full wp-image-808" title="afp-password" src="http://imagecdn.maketecheasier.com/2008/09/afp-password.jpg" alt="" width="431" height="250" /></p>
<p>For some reason that you can&#8217;t find the entry in the <em>Shared</em> section, you can go to <em>Go -&gt; Connect to Server</em>. Under the server address field, enter <em>afp://your-iphone-ip-address</em>. Mine is 192.168.0.102, so I entered afp://192.168.0.102. (You can find your iPhone IP address on <em>Settings-&gt;Wi-Fi-&gt;Your network connection</em>)</p>
<p><img class="alignnone size-full wp-image-809" title="afpconnectserver" src="http://imagecdn.maketecheasier.com/2008/09/afpconnectserver.jpg" alt="" width="489" height="254" /></p>
<p>The <em>Connecting to Server</em> window should open up, and then ask for your user name and password.</p>
<p>Fill in the above login credential.</p>
<p>That&#8217;s it! You can now access the iPhone straight from Finder!</p>
<p>Most of your personal files will be in <em>private/var/root/Library</em> or <em>private/var/root/Media</em>. And of course installing applications is as easy as dragging the .app into your <em>/Applications</em> folder!</p>
<p><strong>For Windows users:</strong></p>
<p><a href="http://code.google.com/p/iphonebrowser/" target="_blank">iPhoneBrowser</a> is a windows based file browser for your iPhone. It features drag and drop uploading to our phone, automatic and manual backups of files on your phone, previews of text and picture files and very cool icons.</p>
<p>Download <em><span style="white-space: nowrap;">SetupiPhoneBrowser.1.7.exe</span></em> from <a href="http://code.google.com/p/iphonebrowser/downloads/list" target="_blank">http://code.google.com/p/iphonebrowser/downloads/list</a></p>
<p>Run the installer on your Windows XP (May not work well on Vista).</p>
<p>Upgrade your iTunes to 7.7.1 (it works on iTunes 7.7 as well).</p>
<p>Open the iPhoneBrowser and connect your iPhone to the computer via the USB cable. The iPhoneBrowser should detect the iPhone and show the file structure on its screen.</p>
<p><img class="alignnone size-full wp-image-810" title="iphone-browser" src="http://imagecdn.maketecheasier.com/2008/09/iphone-browser.jpg" alt="" width="580" height="483" /></p>
<p>You can now drag and drop files to the iPhone.</p>
<p><strong>For Linux users or any other platforms:</strong></p>
<p>In any platforms, as long as you have a FTP program, you can easily transfer files to/from the iPhone via <a href="http://en.wikipedia.org/wiki/Openssh" target="_blank">OpenSSH</a>.</p>
<p>On you iPhone, go to <em>Cydia.</em> Tap on <em>Section</em> on the bottom pane and scroll to <em>Networking-&gt;OpenSSH</em>. Tap on the <em>Install</em> button to install it.</p>
<p>On your desktop, open up your FTP program (it doesn&#8217;t matter which one you use. For me, I used <a href="http://filezilla-project.org/" target="_blank"><em>Filezilla</em></a> because it is free and easy to use).</p>
<p>On <em>Filezilla</em>, go to <em>File-&gt;Site Manager</em></p>
<p>On the left, click <em>New Site</em></p>
<p>Rename the site to &#8216;<em>iPhone</em>&#8216;</p>
<p>On the right, enter the following:</p>
<p class="codeblock">Host: <em>Your iPhone IP address</em><br />
Servertype: <em>SFTP &#8211; SSH File Transfer Protocol</em><br />
Logontype: <em>Normal</em><br />
User: <em>root</em><br />
Password: <em>alpine</em></p>
<p>Click &#8216;<em>Connect</em>&#8216;</p>
<p><img class="alignnone size-full wp-image-812" title="openssh-ftp1" src="http://imagecdn.maketecheasier.com/2008/09/openssh-ftp1.jpg" alt="" width="580" height="457" /></p>
<p>You will be shown a confirmation message asking if you will accept key exchange / connection with the device with the iPhone’s address. You’ll need to click <em>OK</em> for it to connect.</p>
<p><img class="alignnone size-full wp-image-813" title="openssh-challenge" src="http://imagecdn.maketecheasier.com/2008/09/openssh-challenge.jpg" alt="" width="541" height="223" /></p>
<p>Connected mode:</p>
<p><img class="alignnone size-full wp-image-814" title="openssh-filezilla" src="http://imagecdn.maketecheasier.com/2008/09/openssh-filezilla.jpg" alt="" width="580" height="390" /></p>
<p>Once connected, you will see the familiar Explorer-like navigation structure. Simply drag and drop the files to and forth the iPhone.</p>
<p><!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/6-ios-apps-for-getting-in-shape/2012/03/22' title='6 iOS Apps For Getting In Shape'>6 iOS Apps For Getting In Shape</a></li>
<li><a href='http://maketecheasier.com/forecast-for-iphone-foursquare-check-in-ahead-of-time/2012/01/28' title='Forecast for iPhone: Foursquare Check-In Ahead of Time'>Forecast for iPhone: Foursquare Check-In Ahead of Time</a></li>
<li><a href='http://maketecheasier.com/sync-rhythmbox-with-ios4-0/2010/08/11' title='[Snippet] How to Sync Rhythmbox With iOS4.0'>[Snippet] How to Sync Rhythmbox With iOS4.0</a></li>
<li><a href='http://maketecheasier.com/sync-iphone-with-rhythmbox/2010/02/13' title='Sync your iPhone Music Libary With Rhythmbox in Ubuntu Karmic (No Jailbreaking Required)'>Sync your iPhone Music Libary With Rhythmbox in Ubuntu Karmic (No Jailbreaking Required)</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05&amp;title=How+to+Copy+Files+To%2FFrom+Your+iPhone&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05">How to Copy Files To/From Your iPhone</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: cdn.maketecheasier.com

Served from: maketecheasier.com @ 2012-05-25 15:37:19 -->
