<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Just need a folder of my own, that's all!</title>
	<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all/</link>
	<description>Comments on Ask MetaFilter post Just need a folder of my own, that's all!</description>
	<pubDate>Tue, 02 Sep 2008 05:11:56 -0800</pubDate>
	<lastBuildDate>Tue, 02 Sep 2008 05:11:56 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Just need a folder of my own, that&apos;s all!</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all</link>	
		<description>Would anyone care to comment on the most practical way, given access to a command line Fedora box, I can obtain a copy of a folder and its contents?   &lt;br /&gt;&lt;br /&gt; The box is connected to the net but I don&apos;t know enough Unix to, for example, get a tar of the folder and have the machine email me a copy. Although thinking about it, the folder is probably just a little too big for that. I have SSH and physical access but FTP isn&apos;t working, which is the whole problem in a nutshell, really. If anyone is interested in 10 minutes&apos; brainstorming feel free to mefi mail me!</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.100682</guid>
		<pubDate>Tue, 02 Sep 2008 05:04:10 -0800</pubDate>
		<dc:creator>dance</dc:creator>
		
			<category>linux</category>
		
			<category>unix</category>
		
			<category>fedora</category>
		
			<category>ssh</category>
		
			<category>ftp</category>
		
			<category>sendmail</category>
		
	</item> <item>
		<title>By: gregjones</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463131</link>	
		<description>if you have SSH, then you should have at least one of SCP or SFTP. If you&apos;re downloading to a windows machine, then WinSCP (also, confusingly, does SFTP) is really simple to use - you can download it as a standalone executable, so don&apos;t even need an install.&lt;br&gt;
&lt;br&gt;
If you&apos;re downloading to a linux machine, then:&lt;br&gt;
scp username@server.com:/path/to/file .&lt;br&gt;
&lt;br&gt;
will download the file.&lt;br&gt;
&lt;br&gt;
If you want to tar up the folder-contents, rather than downloading directly then:&lt;br&gt;
tar -zcf filename.tar.gz /path/to/folder&lt;br&gt;
&lt;br&gt;
will create a compressed archive for you (it will create the tar in whichever directory you run the command from).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463131</guid>
		<pubDate>Tue, 02 Sep 2008 05:11:56 -0800</pubDate>
		<dc:creator>gregjones</dc:creator>
	</item><item>
		<title>By: moift</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463133</link>	
		<description>Add -r to scp if you&apos;re targeting a folder.&lt;br&gt;
&lt;br&gt;
From the copied-to system:&lt;br&gt;
scp -r user@host:/path/to/file /local/destination&lt;br&gt;
&lt;br&gt;
or from the copied-from system:&lt;br&gt;
scp -r /path/to/file user@local_ip:/local/destination</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463133</guid>
		<pubDate>Tue, 02 Sep 2008 05:14:15 -0800</pubDate>
		<dc:creator>moift</dc:creator>
	</item><item>
		<title>By: ghost of a past number</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463143</link>	
		<description>If you can ssh  in,  you can then  (s)ftp out to some friendlier place you can upload your file to.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463143</guid>
		<pubDate>Tue, 02 Sep 2008 05:28:11 -0800</pubDate>
		<dc:creator>ghost of a past number</dc:creator>
	</item><item>
		<title>By: cmonkey</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463151</link>	
		<description>If you really want an email, this might work:&lt;br&gt;
&lt;br&gt;
&lt;tt&gt;ssh user@host -C &quot;tar -c /path/to/directory -f /path/to/tarred-directory &amp;amp;&amp;amp; metasend -f /path/to/tarred-directory -t recipient@address.com -s File -m application/x-tar -b &amp;amp;&amp;amp; rm /path/to/tarred-directory&quot;&lt;/tt&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463151</guid>
		<pubDate>Tue, 02 Sep 2008 05:45:24 -0800</pubDate>
		<dc:creator>cmonkey</dc:creator>
	</item><item>
		<title>By: beerbajay</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463167</link>	
		<description>If you are transferring to another *nix machine, scp from the command line is the easiest. If you need to transfer to windows, and your windows machine is nearby, consider using &lt;a href=&quot;http://winscp.net/eng/index.php&quot;&gt;winscp&lt;/a&gt; and initiating the transfer from the windows box.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463167</guid>
		<pubDate>Tue, 02 Sep 2008 05:57:51 -0800</pubDate>
		<dc:creator>beerbajay</dc:creator>
	</item><item>
		<title>By: katrielalex</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463186</link>	
		<description>If you have physical access, plug in a USB drive and copy the folder? Easy if it automagically mounts it, otherwise you have to rootle around in /dev to find it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463186</guid>
		<pubDate>Tue, 02 Sep 2008 06:34:08 -0800</pubDate>
		<dc:creator>katrielalex</dc:creator>
	</item><item>
		<title>By: dance</title>
		<link>http://ask.metafilter.com/100682/Just-need-a-folder-of-my-own-thats-all#1463197</link>	
		<description>Thanks a lot!! WinSCP did the job where so many other clients failed.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.100682-1463197</guid>
		<pubDate>Tue, 02 Sep 2008 06:47:32 -0800</pubDate>
		<dc:creator>dance</dc:creator>
	</item>
	</channel>
</rss>
