<?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>Tuts4Tech &#187; copy</title>
	<atom:link href="http://tuts4tech.net/tag/copy/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Sun, 18 Jul 2010 01:41:08 +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>Grabbing and Sending files and folders over SSH</title>
		<link>http://tuts4tech.net/2009/08/15/grabbing-and-sending-files-and-folders-over-ssh/</link>
		<comments>http://tuts4tech.net/2009/08/15/grabbing-and-sending-files-and-folders-over-ssh/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 22:54:33 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[grab]]></category>
		<category><![CDATA[pscp]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[sending]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshfs]]></category>
		<category><![CDATA[transfer]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=556</guid>
		<description><![CDATA[SCP allows you to transfer files over ssh between computers Copying to remote machines To copy a file to a remote machine run the following scp ~/file/to/be/transfered username@hostname:~/destinationfolder If you want to copy a directory you would use -r which would look like this scp -r /folder/to/be/transfered username@hostname:/path/to/destination and if you want to specify a [...]]]></description>
			<content:encoded><![CDATA[<p>SCP allows you to transfer files over ssh between computers</p>
<h3>Copying to remote machines</h3>
<p>To copy a file to a remote machine run the following
<pre class="brush: plain;">scp ~/file/to/be/transfered username@hostname:~/destinationfolder</pre>
<p>
If you want to copy a directory you would use -r which would look like this
<pre class="brush: plain;">scp -r  /folder/to/be/transfered username@hostname:/path/to/destination</pre>
<p>
and if you want to specify a SSH port use -P which would look like this
<pre class="brush: plain;">scp -P port-here /file/to/be/transfered username@hostname:/path/to/destination</pre>
<p></p>
<h3>Grabbing from remote machines</h3>
<p>To grab a file from a remote machine you would run the following
<pre class="brush: plain;">scp username@hostname:~/path/to/file/you/want /path/where/you/want/to/save/the/file</pre>
<p>
If you wanted a folder you would use -r which would look like this
<pre class="brush: plain;">scp -r username@hostname:~/path/to/folder/you/want /path/where/you/want/to/save/the/folder</pre>
<p>
and if you wanted to specify a SSH port use -P which would look like this
<pre class="brush: plain;">scp -P port-here username@hostname:~/path/to/file/you/want /path/to/destination</pre>
<p></p>
<h3>Mounting folders over SSH</h3>
<p>Using SSHFS we can mount folders over ssh. To get started you'll need to installl sshfs
<pre class="brush: plain;">apt-get install sshfs</pre>
<p>
Create a dir to mount the files too and give your user ownership over it
<pre class="brush: plain;">mkdir /media/sshmount
chown username /media/sshmount</pre>
<p>
Then add your user to fuse group
<pre class="brush: plain;">adduser username fuse</pre>
<p>
You should be then able to mount using the following command
<pre class="brush: plain;">sshfs username@hostname:/path/to/folder/you/want/to/mount /media/sshmount</pre>
<p></p>
<h3>For Windows Users</h3>
<p>If your on windows and you want to send or grab files over ssh you can using <a href="http://the.earth.li/~sgtatham/putty/latest/x86/pscp.exe">pscp</a><br />
To send a file you would run the following
<pre class="brush: plain;">pscp C:\file\to\be\transfered username@hostname:/path/to/destination</pre>
<p>
To grab a file you would run the following
<pre class="brush: plain;">pscp username@hostname:~/path/to/file/you/want C:\path\where\you\want\the\file\saved</pre>
<p>When using pscp the -r switch will work for folders and -P will also work for port</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/08/15/grabbing-and-sending-files-and-folders-over-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Move the Users and Program Files Directories To A Different Partition</title>
		<link>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/</link>
		<comments>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:28:48 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[mlink]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[program files]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=519</guid>
		<description><![CDATA[After installing windows 7 you will be greeted with a user creation prompt press shift+f10 and you should get a cmd window up like in the image below Copy the Users Profiles, Program Files And ProgramData Folders onto the Partition you want to use robocopy &#34;C:\Users&#34; &#34;D:\Users&#34; /E /COPYALL /XJ robocopy &#34;C:\Program Files&#34; &#34;D:\Program Files&#34; [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>After installing windows 7 you will be greeted with a user creation prompt press shift+f10 and you should get a cmd window up like in the image below<img class="aligncenter size-full wp-image-520" title="cmduser" src="http://tuts4tech.net/wp-content/uploads/2009/08/cmduser.png" alt="cmduser" width="500" height="374" /></li>
<li>Copy the Users Profiles, Program Files And ProgramData Folders onto the Partition you want to use
<pre class="brush: plain;">robocopy &quot;C:\Users&quot; &quot;D:\Users&quot; /E /COPYALL /XJ
robocopy &quot;C:\Program Files&quot; &quot;D:\Program Files&quot; /E /COPYALL /XJ
robocopy &quot;C:\ProgramData&quot; &quot;D:\ProgramData&quot; /E /COPYALL /XJ</pre>
</li>
<li>Delete the old folders and create links<br />
For Program Files:</p>
<pre class="brush: plain;">rmdir &quot;C:\Program Files&quot; /S /Q
mklink /J &quot;C:\Program Files&quot; &quot;D:\Program Files&quot;</pre>
<p>For the User Profiles:</p>
<pre class="brush: plain;">rmdir &quot;C:\users&quot; /S /Q
mklink /J &quot;C:\users&quot; &quot;D:\users&quot;</pre>
<p>and lastly ProgramData:</p>
<pre class="brush: plain;">rmdir &quot;C:\ProgramData&quot; /S /Q
mklink /J &quot;C:\ProgramData &quot;D:\ProgramData&quot;</pre>
<p><strong>If you have any permissions issues while deleting C:\ProgramData don't worry about them just try to delete it and make the links again after first reboot </strong></li>
<li>Now open regedit simply by typing regedit on the cmd window</li>
<li>To change the program files path navigate to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion and edit the ProgramFilesDir and CommonFilesDir as needed<br />
<img class="aligncenter size-full wp-image-529" title="regeditproc" src="http://tuts4tech.net/tutorials/win7moveusersprogs/win7progpath.jpg" alt="regeditproc" width="500" height="212" /></li>
<li>For the user profiles you'll need to go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList and again edit the paths as needed<br />
<img class="aligncenter size-full wp-image-528" title="regeditprof" src="http://tuts4tech.net/tutorials/win7moveusersprogs/win7userpath.jpg" alt="regeditprof" width="500" height="183" /></li>
<li>Exit Regedit and the cmd window</li>
<li>Continue to create your user</li>
<li>Reboot your machine and you should be good to go</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/feed/</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>Windows Keyboard Shortcuts</title>
		<link>http://tuts4tech.net/2009/07/06/windows-keyboard-shortcuts/</link>
		<comments>http://tuts4tech.net/2009/07/06/windows-keyboard-shortcuts/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 22:46:19 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[faster]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[paste]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[windows key]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=441</guid>
		<description><![CDATA[Key Command Windows Key Or Ctrl+ESC Opens The Start Menu Windows key + L Locks Computer Windows Key + M Minimizes All Windows Windows Key + R Opens Run Windows Key + Pause Opens System Properties Ctrl + Alt+ Del Opens Windows Task Manager Ctrl + A Select All Ctrl + C Copy to the [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tr>
<td>Key</td>
<td>Command</td>
</tr>
<tr>
<td>Windows Key Or Ctrl+ESC</td>
<td>Opens The Start Menu</td>
</tr>
<tr>
<td>Windows key + L</td>
<td>Locks Computer</td>
</tr>
<tr>
<td>Windows Key + M</td>
<td>Minimizes All Windows</td>
</tr>
<tr>
<td>Windows Key + R</td>
<td>Opens Run</td>
</tr>
<tr>
<td>Windows Key + Pause</td>
<td>Opens System Properties</td>
</tr>
<tr>
<td>Ctrl + Alt+ Del</td>
<td>Opens Windows Task Manager</td>
</tr>
<tr>
<td>Ctrl + A</td>
<td>Select All</td>
</tr>
<tr>
<td>Ctrl + C</td>
<td>Copy to the Clipboard</td>
</tr>
<tr>
<td>Ctrl + D</td>
<td>Unselect all</td>
</tr>
<tr>
<td>Ctrl + V</td>
<td>Paste from the clipboard</td>
</tr>
<tr>
<td>Ctrl + x</td>
<td>Cuts to the clipboard</td>
</tr>
<tr>
<td>Ctrl + Y</td>
<td>Redo</td>
</tr>
<tr>
<td>Ctrl + Z</td>
<td>Undo</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/06/windows-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
