<?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>IV Needle &#187; ubuntu</title>
	<atom:link href="http://www.ivneedle.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ivneedle.com</link>
	<description>Injecting Tech into the Vein</description>
	<lastBuildDate>Fri, 06 Aug 2010 15:38:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Share a folder over VirtualBox with a Windows Host and Ubuntu VM</title>
		<link>http://www.ivneedle.com/2010/03/share-a-folder-over-virtualbox-with-a-windows-host-and-ubuntu-vm/</link>
		<comments>http://www.ivneedle.com/2010/03/share-a-folder-over-virtualbox-with-a-windows-host-and-ubuntu-vm/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 19:16:31 +0000</pubDate>
		<dc:creator>Heavymeddler</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[shared folder]]></category>
		<category><![CDATA[symbolic link]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.ivneedle.com/?p=215</guid>
		<description><![CDATA[I ran into some issues while attempting to share a folder from Windows to Ubuntu over VirtualBox. Here are the steps I followed to get this to work: Create a folder in Windows to share (or use one that already exists... your choice) Start the Ubuntu virtual machine On the virtual machine windows, click on [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into some issues while attempting to share a folder from Windows to Ubuntu over VirtualBox. Here are the steps I followed to get this to work:</p>
<ul>
<li>Create a folder in Windows to share (or use one that already exists... your choice)</li>
<li>Start the Ubuntu virtual machine</li>
<li>On the virtual machine windows, click on Devices&gt;Shared Folder...<a href="http://www.ivneedle.com/wp-content/uploads/2010/03/Shared_Folders.png"><img class="size-medium wp-image-216 aligncenter" title="Shared Folders" src="http://www.ivneedle.com/wp-content/uploads/2010/03/Shared_Folders-300x217.png" alt="" width="300" height="217" /></a></li>
<li>Click on the "Add Shared Folders (Ins)" button</li>
<li>Browse to the Windows folder you are planning to shared, name it, and click OK to save</li>
<li>Click OK to close the Shared Folders window</li>
<li>Open the terminal on the Ubuntu VM</li>
<li>Create a directory to mount the share to:</li>
<pre>sudo mkdir /mnt/win_share</pre>
<li>Mount the share to the directory:</li>
<pre>sudo mount.vboxsf Share /mnt/win_share</pre>
</ul>
<p>Add a file to directory and check to see if it shows on both machines. If you'd like to add a link to the share on your desktop, run the the following command in the terminal:</p>
<pre style="padding-left: 30px;">ln -s /mnt/win_share/ /home/&lt;user&gt;/Desktop/Share</pre>
<p>There should now be a link on your Ubuntu Desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivneedle.com/2010/03/share-a-folder-over-virtualbox-with-a-windows-host-and-ubuntu-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting my Bluetooth mouse to work with Ubuntu</title>
		<link>http://www.ivneedle.com/2009/09/getting-my-bluetooth-mouse-to-work-with-ubuntu/</link>
		<comments>http://www.ivneedle.com/2009/09/getting-my-bluetooth-mouse-to-work-with-ubuntu/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 19:48:17 +0000</pubDate>
		<dc:creator>Heavymeddler</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[microsoft 5000]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ivneedle.com/?p=155</guid>
		<description><![CDATA[I have a Microsoft 5000 Bluetooth Mouse. Unfortunately it has been a total headache to get it to work with Ubuntu and stay working. Below are the steps I have taken to remedy the issue: Turn on your mouse and make it discoverable Open a terminal and enter the command: hcitool scan It should return [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_168" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-168 " title="Bluetooth Mouse From Hell" src="http://www.ivneedle.com/wp-content/uploads/2009/09/mouse-300x216.jpg" alt="Microsoft Bluetooth Mouse 5000" width="300" height="216" /><p class="wp-caption-text">Bluetooth Mouse From Hell</p></div>
<p>I have a Microsoft 5000 Bluetooth Mouse. Unfortunately it has been a total headache to get it to work with Ubuntu and stay working. Below are the steps I have taken to remedy the issue:</p>
<ol>
<li>Turn on your mouse and make it discoverable</li>
<li>Open a terminal and enter the command: <code>hcitool scan</code></li>
<li>It should return a list of bluetooth devices in range (mine returned something like: <code>00:1D:D8:92:FE:45     Microsoft Bluetooth Notebook Mouse 5000</code>)</li>
<li>Enter: <code>sudo gedit /etc/bluetooth/hcid.conf</code></li>
<li>Add the following entry to the file (remember the name is the same returned in the previous step):<br />
<code>device HardwareAddressHere {<br />
name “Microsoft Bluetooth Notebook Mouse 5000”;<br />
}</code></li>
<li>Run the command: <code>sudo /etc/init.d/bluetooth restart</code></li>
<li>Verify that you get a message indicating that stopping and starting bluetooth is OK</li>
<li>Run the command: <code>sudo apt-get install bluez-compat</code></li>
<li>With your mouse still in discovery mode, run the command: <code>sudo hidd --search</code></li>
<li>Your mouse should now be paired and working. (this includes after reboot, it should automatically pair)</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.ivneedle.com/2009/09/getting-my-bluetooth-mouse-to-work-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Ubuntu on Dell Mini 10 in HD (1366&#215;768)</title>
		<link>http://www.ivneedle.com/2009/09/run-ubuntu-on-dell-mini-10-in-hd-1366x768/</link>
		<comments>http://www.ivneedle.com/2009/09/run-ubuntu-on-dell-mini-10-in-hd-1366x768/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 16:09:38 +0000</pubDate>
		<dc:creator>Heavymeddler</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[high definition]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ivneedle.com/?p=150</guid>
		<description><![CDATA[I found a link on moko's blog that showed how you run Ubuntu Jaunty in 1024x576 on a Dell Mini 10. However, I have the Mini 10 with the HD screen (1366x768) which required a few additional steps to get it work right. Here is the entire process First, create the file: /etc/apt/sources.list.d/ubuntu-mobile.list Add the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_172" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-172" title="Dell Mini 10" src="http://www.ivneedle.com/wp-content/uploads/2009/09/mini10-300x238.jpg" alt="Dell Mini 10" width="300" height="238" /><p class="wp-caption-text">One Gig Wonder</p></div>
<p>I found a link on <a href="http://mok0.wordpress.com/2009/05/25/ubuntu-on-the-dell-mini-10-2/" target="_blank">moko's blog</a> that showed how you run Ubuntu Jaunty in 1024x576 on a Dell Mini 10. However, I have the Mini 10 with the HD screen (1366x768) which required a few additional steps to get it work right. Here is the entire process</p>
<p style="padding-left: 30px;">First, create the file: <code>/etc/apt/sources.list.d/ubuntu-mobile.list</code></p>
<p style="padding-left: 30px;">Add the following content and save (these entries will change depending on the version of Ubuntu):</p>
<p style="padding-left: 60px;"><code>deb http://ppa.launchpad.net/ubuntu-mobile/ppa/ubuntu jaunty main<br />
deb-src http://ppa.launchpad.net/ubuntu-mobile/ppa/ubuntu jaunty main</code></p>
<p style="padding-left: 30px;">Open a terminal and run the following two commands:</p>
<p style="padding-left: 60px;"><code>sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6598A30<br />
sudo apt-get update<br />
sudo apt-get install psb-kernel-source psb-kernel-headers</code></p>
<p style="padding-left: 30px;">Restart your machine and open the terminal again. Enter the command:</p>
<p style="padding-left: 60px;"><code>sudo apt-get install xserver-xorg-video-psb</code></p>
<p style="padding-left: 30px;">Restart your machine again. You should now have 1366x768 resolution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivneedle.com/2009/09/run-ubuntu-on-dell-mini-10-in-hd-1366x768/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
