<?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>Herbert Mühlburger&#039;s Blog &#187; Operating system</title>
	<atom:link href="http://blog.muehlburger.at/tag/operating-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.muehlburger.at</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 08:17:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>HowTo set up the Android SDK on Ubuntu for HTC Phones</title>
		<link>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/</link>
		<comments>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 18:19:18 +0000</pubDate>
		<dc:creator>Herbert Mühlburger</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Android SDK]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[HTC Corporation]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.muehlburger.at/?p=1241</guid>
		<description><![CDATA[In this post I will explain how I set up the Android SDK on Ubuntu for my HTC Desire. I first followed the steps for Ubuntu as described in Setting up a Device for Development: With an Android-powered device, you can develop and debug your Android applications just as you would on the emulator. Before you [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div class="wp-caption alignright" style="width: 132px"><a href="http://www.crunchbase.com/company/htc"><img title="Image representing HTC as depicted in CrunchBase" src="http://www.crunchbase.com/assets/images/resized/0001/9198/19198v2-max-450x450.png" alt="Image representing HTC as depicted in CrunchBase" width="122" height="71" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
</div>
<p>In this post I will explain how I set up the <a class="zem_slink" title="Android SDK" rel="homepage" href="http://developer.android.com/sdk/index.html">Android SDK</a> on Ubuntu for my <a title="HTC Desire" href="http://www.htc.com/de/product/desire/overview.html" target="_blank">HTC Desire</a>.</p>
<p>I first followed the steps for Ubuntu as described in <a title="Setting up a Device for Development" href="http://developer.android.com/guide/developing/device.html#setting-up" target="_blank">Setting up a Device for Development</a>:</p>
<blockquote><p>With an Android-powered device, you can develop and debug your Android applications just as you would on the emulator. Before you can start, there are just a few things to do:</p>
<ol>
<li>Declare your application as &#8220;debuggable&#8221; in your Android Manifest.In Eclipse, you can do this from the <strong>Application</strong> tab when viewing the Manifest (on the right side, set <strong>Debuggable</strong> to <em>true</em>). Otherwise, in the <code>AndroidManifest.xml</code> file, add <code>android:debuggable="true"</code> to the <code>&lt;application&gt;</code> element.</li>
<li>Turn on &#8220;USB Debugging&#8221; on your device.On the device, go to the home screen, press <strong>MENU</strong>, select <strong>Applications</strong> &gt; <strong>Development</strong>, then enable <strong>USB debugging</strong>.</li>
<li>Setup your system to detect your device.
<ul>
<li>If you&#8217;re developing on <a class="zem_slink" title="Ubuntu (operating system)" rel="homepage" href="http://www.ubuntu.com/">Ubuntu Linux</a>, you need to add a rules file that contains a USB configuration for each type of device you want to use for development. Each device manufacturer uses a different vendor ID. The example rules files below show how to add an entry for a single vendor ID (the HTC vendor ID). In order to support more devices, you will need additional lines of the same format that provide a different value for the <code>SYSFS{idVendor}</code> property. For other IDs, see the table of <a href="http://developer.android.com/guide/developing/device.html#VendorIds">USB Vendor IDs</a>, below.
<ol>
<li>Log in as root and create this file: <code>/etc/udev/rules.d/51-android.rules</code>.For Gusty/Hardy/Maverick Meerkat, edit the file to read:<br />
<code>SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"</code></p>
<p>For Dapper, edit the file to read:<br />
<code>SUBSYSTEM=="usb_device", SYSFS{idVendor}=="0bb4", MODE="0666"</code></li>
<li>Now execute:<br />
<code>chmod a+r /etc/udev/rules.d/51-android.rules</code></li>
</ol>
</li>
</ul>
</li>
</ol>
<p>You can verify that your device is connected by executing <code>adb devices</code> from your SDK <code>platform-tools/</code> directory. If connected, you&#8217;ll see the device name listed as a &#8220;device.&#8221;</p></blockquote>
<p>When I executed <strong><em>adb devices</em></strong> the name of my HTC Desire just looked like &#8220;??????????&#8221;. After executing <strong><em>reload udev</em></strong> then disconnecting and connecting my phone again, everything looked fine. Now I could see the name of my HTC Desire after running <em><strong>adb devices</strong></em>.</p>
<p>Maybe this post helps you in setting up your Android SDK on Ubuntu. If it does please drop me a comment below.</p>
<p>(Thanks to the post of <a title="it-slav.net" href="http://www.it-slav.net/blogs/2010/05/01/hint-howto-get-android-sdk-working-on-ubuntu/" target="_blank">it-slav.net</a>)</p>
<h3 class="zemanta-related-title">Related articles</h3>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://sichent.wordpress.com/2010/11/04/install-android-sdk-and-ndk/">Install Android SDK and NDK</a> (sichent.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://techblissonline.com/android-3-sdk-download/">Download Android 3.0 SDK</a> (techblissonline.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.howtoforge.com/setting-up-an-android-app-build-environment-with-eclipse-android-sdk-phonegap-ubuntu-10.10">Setting Up An Android App Build Environment With Eclipse, Android SDK, PhoneGap (Ubuntu 10.10)</a> (howtoforge.com)</li>
<li class="zemanta-article-ul-li"><a href="http://techblissonline.com/download-android-sdk-install-and-develop/">Download Android SDK, Install and Develop Android Apps</a> (techblissonline.com)</li>
</ul>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=ca4aa06d-094b-478c-b803-969bea0f697f" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install Broadcom Wireless Device on HP Mini 5101 running Ubuntu Jaunty</title>
		<link>http://blog.muehlburger.at/2009/09/25/howto-install-broadcom-wireless-device-on-hp-mini-5101-running-ubuntu-jaunty/</link>
		<comments>http://blog.muehlburger.at/2009/09/25/howto-install-broadcom-wireless-device-on-hp-mini-5101-running-ubuntu-jaunty/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 17:31:37 +0000</pubDate>
		<dc:creator>Herbert Mühlburger</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Distributions]]></category>
		<category><![CDATA[Hewlett-Packard]]></category>
		<category><![CDATA[HP Mini 5101]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[SUSE Linux]]></category>
		<category><![CDATA[SUSE Linux Enterprise Desktop]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.muehlburger.at/?p=537</guid>
		<description><![CDATA[Yesterday I received my new HP Mini 5101 running Suse Linux Enterprise Desktop 11 (SLED 11). Due to the fact, that i do not like working with Suse I installed Ubuntu 9.04 but there were some problems regarding the wireless chipset (Broadcom 5343) and the Ethernet adapter (Marvel 436c). After installation the wireless and the [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp mceIEcenter">
<dl id="attachment_538" class="wp-caption aligncenter" style="width: 440px;">
<dt class="wp-caption-dt"><img class="size-large wp-image-538" title="HP Mini 5101" src="http://blog.muehlburger.at/wp-content/uploads/2009/09/hp-mini-copyright-hp-430x343.jpg" alt="HP Mini 5101" width="430" height="343" /></dt>
</dl>
</div>
<p>Yesterday I received my new <strong><a class="zem_slink" title="Hewlett-Packard" rel="homepage" href="http://www.hp.com">HP</a> Mini 5101</strong> running <a class="zem_slink" title="SUSE Linux Enterprise Desktop" rel="wikipedia" href="http://en.wikipedia.org/wiki/SUSE_Linux_Enterprise_Desktop">Suse Linux Enterprise Desktop</a> 11 (SLED 11). Due to the fact, that i do not like working with Suse I installed <a title="Ubuntu 9.04" href="http://www.ubuntu.com/" target="_blank">Ubuntu 9.04</a> but there were some problems regarding the wireless chipset (<a class="zem_slink" title="Broadcom" rel="homepage" href="http://www.broadcom.com/">Broadcom</a> 5343) and the <a class="zem_slink" title="Ethernet" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ethernet">Ethernet</a> adapter (Marvel 436c).</p>
<p>After installation the wireless and the ethernet devices were not working. The problem was that I needed to install proprietary drivers which were not included in Ubuntu due to licence issues.  Probably you don&#8217;t have internet connection as I didn&#8217;t have. I had to download the packages on another computer and transfer them via a <a class="zem_slink" title="Universal Serial Bus" rel="wikipedia" href="http://en.wikipedia.org/wiki/Universal_Serial_Bus">USB</a> stick to my <strong>HP Mini 5101</strong>:</p>
<p>The packages to install are the following:</p>
<ol>
<li><a title="linux-image-2.6.28-15-generic" href="http://packages.ubuntu.com/jaunty-updates/linux-image-2.6.28-15-generic" target="_blank">linux-image-2.6.28-15-generic</a></li>
<li><a title="http://packages.ubuntu.com/jaunty-updates/linux-backports-modules-2.6.28-15-generic" href="http://packages.ubuntu.com/jaunty-updates/linux-backports-modules-2.6.28-15-generic" target="_blank">linux-backports-modules-2.6.28-15-generic</a></li>
<li><a title="linux-backports-modules-jaunty-generic" href="http://packages.ubuntu.com/jaunty-updates/linux-backports-modules-jaunty-generic" target="_blank">linux-backports-modules-jaunty-generic</a></li>
<li><a title="linux-backports-modules-jaunty" href="http://packages.ubuntu.com/jaunty-updates/linux-backports-modules-jaunty" target="_blank">linux-backports-modules-jaunty</a></li>
<li><a title="linux-restricted-modules-common" href="http://packages.ubuntu.com/jaunty/misc/linux-restricted-modules-common" target="_blank">linux-restricted-modules-common</a></li>
<li><a title="linux-restricted-modules-2.6.28-15-generic" href="http://packages.ubuntu.com/jaunty/i386/linux-restricted-modules-2.6.28-15-generic" target="_blank">linux-restricted-modules-2.6.28-15-generic</a></li>
</ol>
<p>After downloading, installing and rebooting my system the proprietary drivers could be activated in <em>System -&gt; Administration -&gt; Hardware Drivers</em> and everything worked fine.</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/linux-tips/how-to-install-skype-ubnutu.html?utm_source=subscriber&amp;utm_medium=rss&amp;utm_campaign=rss">How to Install Skype in Ubuntu</a> (techie-buzz.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.makeuseof.com/tag/how-to-create-an-ubuntu-installation-usb-on-the-mac/">How To Create An Ubuntu Installation USB On The Mac</a> (makeuseof.com)</li>
<li class="zemanta-article-ul-li"><a href="http://maketecheasier.com/install-and-use-ubuntu-netbook-remix/2009/09/22">How to Install and Use Ubuntu Netbook Remix</a> (maketecheasier.com)</li>
</ul>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/6e2eff7c-cbe3-4151-b337-bbaf7e48b234/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=6e2eff7c-cbe3-4151-b337-bbaf7e48b234" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.muehlburger.at/2009/09/25/howto-install-broadcom-wireless-device-on-hp-mini-5101-running-ubuntu-jaunty/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

