 
    
<?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>sharing Archives - Complete, Concrete, Concise</title>
	<atom:link href="https://complete-concrete-concise.com/tag/sharing/feed/" rel="self" type="application/rss+xml" />
	<link>https://complete-concrete-concise.com/tag/sharing/</link>
	<description>Practical Information Without The Bloat</description>
	<lastBuildDate>Thu, 26 Apr 2012 07:00:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>Ubuntu 12.04 &#8211; Enabling Shared Folders Under VirtualBox</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-enabling-shared-folders-under-virtualbox/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Thu, 26 Apr 2012 07:00:00 +0000</pubDate>
				<category><![CDATA[Ubuntu 12.04]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[enable shared folder]]></category>
		<category><![CDATA[enable shared folders]]></category>
		<category><![CDATA[enabling]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[how to share folder]]></category>
		<category><![CDATA[shared folders]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[ubuntu 12.04]]></category>
		<category><![CDATA[virtualbox]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=1749</guid>

					<description><![CDATA[<p>These instructions are for Ubuntu 12.04 running under VirtualBox 4.1.12 on Windows 7 with SP1. They should be the same for other version combinations, but no guarantee is made. It shouldn&#8217;t matter on which host VirtualBox is running, but I don&#8217;t run it on anything other than Windows. I have not tried sharing folders on [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-enabling-shared-folders-under-virtualbox/">Ubuntu 12.04 &#8211; Enabling Shared Folders Under VirtualBox</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>These instructions are for Ubuntu 12.04 running under VirtualBox 4.1.12 on Windows 7 with SP1. They should be the same for other version combinations, but no guarantee is made.</p>
<p>It shouldn&#8217;t matter on which host VirtualBox is running, but I don&#8217;t run it on anything other than Windows.</p>
<p>I have not tried sharing folders on other Linux distros, so these instructions may or may not work with them.</p>
<p>Assumes you have installed VirtualBox Guest Additions on Ubuntu 12.04. Instructions to do so can be found <a href="//complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-installing-virtualbox-guest-additions">here</a>.</p>
<div class="c2">
<p>If you have already enabled folder sharing and want instructions on how to add a shared folder to Ubuntu, instructions can be found <a href="//complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox">here</a>.</p>
</div>
</div>
<p>Shared folders allow you to easily share large files or large amounts of data between the host OS and the guest OS. In my case, I share code so I can test my code on both Windows and Linux.</p>
<h1>Enabling Shared Folders</h1>
<p><strong>1) Open</strong> a terminal (<code>Ctrl+Alt+T</code> &#8211; detailed instructions can be found <a href="//complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-how-to-get-a-command-line-shell-or-terminal">here</a>).</p>
<p><strong>2) Enter</strong> the following command: </p>
<pre><code>sudo usermod -a -G vboxsf  &lt;&lt;username&gt;&gt;</code></pre>
<div class="c3">
<p><code>&lt;&lt;username&gt;&gt;</code> is your username. Your username precedes the <span class="i1">@</span> symbol at the start of the command line.</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-enabling-shared-folders-under-virtualbox-1.png" alt="" border="0" class="centered" /></p>
<p>In my case, my username is <code>richard</code>.</p>
</div>
<p><strong>3) Enter</strong> your password when prompted. <strong>Press</strong> <u>Enter</u> when you have finished entering your password:</p>
<div class="c2">
<p><strong>Note:</strong> for security reasons, Linux does not echo back your password &#8211; not even characters like # or * &#8211; so it looks like nothing is happening. This is normal.</p>
</div>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-enabling-shared-folders-under-virtualbox-2.png" alt="" border="0" class="centered" /></p>
<p><strong>4) Shut down</strong> or <strong>restart</strong> the machine. The changes will not take effect until the machine is restarted.</p>
<div class="c2">
<h1>Understanding the Command</h1>
<p><strong>sudo</strong> temporarily raises your privilege level to super-user status (if you enter the correct password)</p>
<p><strong>usermod</strong> modifies the user account</p>
<p><strong>-a</strong> instructs <u>usermod</u> to add the user to the specified group</p>
<p><strong>-G</strong> tells <u>usermod</u> that a group or list of groups follows</p>
<p><strong>vboxsf</strong> is the name of the group to which shared folders belong</p>
<p><strong>&lt;&lt;username&gt;&gt;</strong> is the name of the user to add to the specified group</p>
</div>
<h1>Accessing Shared Folders</h1>
<div class="c1">
<p>Assumes you are using the Unity interface.</p>
</div>
<p>Shared folders are found in the <span class="i1">/media</span> folder.</p>
<p><strong>1) Click</strong> on the <u>Home Folders</u> icon on the Unity Launcher:</p>
<p><img fetchpriority="high" decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-enabling-shared-folders-under-virtualbox-3.jpg" width="480" height="215" alt="" border="0" class="centered" /></p>
<p><strong>2) Click</strong> on <u>File System</u> then <strong>double-click</strong> on the <u>media</u> folder:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-enabling-shared-folders-under-virtualbox-41.png" alt="" border="0" class="centered" /></p>
<p>The shared folders will be found inside. Shared folders are prefixed with <code>sf_</code>. For example, if you shared a folder called <code>my_code</code>, then it will appear as <code>sf_my_code</code> in the <u>media</u> folder.</p>
<p>Whenever you share a new folder, you need to restart the machine for Ubuntu to pick it up.</p>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-enabling-shared-folders-under-virtualbox/">Ubuntu 12.04 &#8211; Enabling Shared Folders Under VirtualBox</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
