 
    
<?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>shared folders Archives - Complete, Concrete, Concise</title>
	<atom:link href="https://complete-concrete-concise.com/tag/shared-folders/feed/" rel="self" type="application/rss+xml" />
	<link>https://complete-concrete-concise.com/tag/shared-folders/</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>
		<item>
		<title>Ubuntu 12.04 &#8211; Adding a Shared Folder Under VirtualBox</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox/</link>
					<comments>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox/#comments</comments>
		
		<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[adding]]></category>
		<category><![CDATA[shared folders]]></category>
		<category><![CDATA[ubuntu 12.04]]></category>
		<category><![CDATA[virtualbox]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=1768</guid>

					<description><![CDATA[<p>This tutorial is for adding shared folders to Ubuntu 12.04 running under VirtualBox 4.1.12 on Windows 7 with SP 1. The instructions should be the same for the same for other version combinations, or even for different OSes on which VirtualBox runs, but no guarantee is made. Assumes you have enabled shared folders for Ubuntu [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox/">Ubuntu 12.04 &#8211; Adding a Shared Folder 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>This tutorial is for adding shared folders to Ubuntu 12.04 running under VirtualBox 4.1.12 on Windows 7 with SP 1.</p>
<p>The instructions should be the same for the same for other version combinations, or even for different OSes on which VirtualBox runs, but no guarantee is made.</p>
<div class="c2">
<p><strong>Assumes</strong> you have enabled shared folders for Ubuntu 12.04.</p>
<p>Instructions for enabling shared folders can be found <a href="//complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-enabling-shared-folders-under-virtualbox">here</a>.</p>
</div>
</div>
<div class="c2">
<p>Some images may be clicked for full-sized versions.</p>
</div>
<div class="c4">
<p><strong>NOTE: the virtual machine must be off (not running) for these instructions to work.</strong></p>
</div>
<p><strong>1) Start</strong> VirtualBox:</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-1-big.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-1-thumb.png" alt="" border="0" class="centered" /></a></p>
<p><strong>2) Right-click</strong> on the virtual machine you wish to add a shared folder. This will bring up a context menu. <strong>Left-click</strong> on <u>Settings…</u>: </p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-2-big.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-2-thumb.png" alt="" border="0" class="centered" /></a></a></p>
<p><strong>3) Left-click</strong> on <u>Shared Folders</u> in the left pane:</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-3-big.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-3-thumb.png" alt="" border="0" class="centered" /></a></p>
<p><strong>4) Left-click</strong> on the <u>Add Shared Folder</u> icon:</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-4-big.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-4-thumb.png" alt="" border="0" class="centered" /></a></p>
<p><strong>5) Select</strong> <u>Other…</u> from the <u>Folder Path:</u> dropdown box:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-5.png" alt="" border="0" class="centered" /></p>
<p><strong>6) Navigate</strong> through the <u>Directory Browser</u> until you find and <strong>select</strong> the folder you want to share. <strong>Click</strong> on <u>OK:</u></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-6.png" alt="" border="0" class="centered" /></p>
<p><strong>7) Click</strong> on the <u>Auto-mount</u> checkbox to enable it. Then <strong>click</strong> on <u>OK</u></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-7.png" alt="" border="0" class="centered" /></p>
<p><strong>8) Verify</strong> the folder has been added. <strong>Click</strong> on <u>OK</u>:</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-8-big.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-adding-a-shared-folder-under-virtualbox-8-thumb.png" alt="" border="0" class="centered" /></a></p>
<p>You can always add additional folders by clicking on the <u>Add Shared Folder</u> icon.</p>
<p>You can remove a shared folder by selecting it and then clicking on the <u>Remove Shared Folder</u> icon (this is the folder icon with the minus sign on it).</p>
<p>You can edit the shared folder by selecting it and then clicking on the <i>Edit Shared Folder</u> icon (this is the folder icon with the dot on it).</p>
<div class="c1">
<p>The next time you start your virtual machine, you will find the shared folder located in the <code>/media</code> folder. The shared folder will have the prefix <code>sf_</code>.</p>
</div>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox/">Ubuntu 12.04 &#8211; Adding a Shared Folder Under VirtualBox</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-adding-a-shared-folder-under-virtualbox/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
