<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Installing an Android in Linux (Ubuntu) in Discussions &amp; Feedback</title>
    <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857728#M61588</link>
    <description>&lt;P&gt;Or if you're slightly more geeky and slightly diverging away the subject: &lt;A target="_blank" href="http://therockncoder.blogspot.co.uk/2013/06/using-virtualbox-android-emulator.html"&gt;put an android emulator on your pc using virtual box&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The article is a little old but it seems that Genymotion is a simpler, faster way to emulate Android for development.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 08 Mar 2015 19:12:04 GMT</pubDate>
    <dc:creator>sheepdog</dc:creator>
    <dc:date>2015-03-08T19:12:04Z</dc:date>
    <item>
      <title>Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857712#M61584</link>
      <description>&lt;DIV class="post-text"&gt;&lt;P&gt;The first thing you need to do is make sure USB Debugging is enabled on your device. Go to the Settings and look for Developer Options. If you can't see it, scroll down to About.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Press the text where is states the version of Android up to 7 times. A message should appear to say Developer Mode is now enabled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go back into the menu and select Developer Options and enable USB debugging. Otherwise the device will not be recognised when you plug in the USB cord.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next within Linux you need to bring up a Terminal (Command line).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You don't need any special drivers -- all you need is to make your device known. A few simple steps can accomplish this when your device is connected via USB:&lt;/P&gt;&lt;PRE&gt;sudo lsusb
[...]
Bus 002 Device 054: ID 18d1:4e22 Google Inc. Nexus S (debug)&lt;/PRE&gt;&lt;P&gt;See the two hex values separated by a colon: 18d1:4e22 This is the manufacturerID:deviceID you need to tell the system to handle. So as root:&lt;/P&gt;&lt;PRE&gt;sudo su -
cd /etc/udev/rules.d
vi 51-android.rules&lt;/PRE&gt;&lt;P&gt;In this file, add a line (you can use the editor of your choice, of course -- my example uses vi)&lt;/P&gt;&lt;PRE&gt;# MyDeviceName
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4e22", MODE="0666" GROUP="androiddev", SYMLINK+="android%n"&lt;/PRE&gt;&lt;P&gt;This example uses the values from above lsusb output -- you need to replace them by yours. Now, to let your changes take effect:&lt;/P&gt;&lt;PRE&gt;sudo service udev reload&lt;/PRE&gt;&lt;P&gt;Final step: Disconnect your device, and reconnect it. It should be recognized now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These instructions are generic and should work across a host of distributions. What should happen is, your mobile should be usable as a drive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For software updates this will depend on your handset.&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 16:13:44 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857712#M61584</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T16:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857714#M61585</link>
      <description>&lt;P&gt;On a sidenote:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For people using an iDevice you can try the below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libimobiledevice&lt;/P&gt;&lt;P&gt;There’s a piece of software available for Linux called libimobiledevice. This library – as the name implies – tells the computer how to communicate with iOS devices, like the iPhone and iPad.&lt;/P&gt;&lt;P&gt;If you’re running the most recent release of your favorite Linux distribution then libimobiledevice is most likely already installed. If you’re unsure whether you do actually have it installed or you know you don’t, you can install it easily with your respective package manager.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ubuntu&lt;/STRONG&gt; users would input the following command into Terminal:&amp;nbsp;sudo apt-get install libimobiledevice&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Fedora&lt;/STRONG&gt; users should use:&amp;nbsp;sudo yum install libimobiledevice.&lt;/P&gt;&lt;P&gt;If the package is already installed, the command will tell you so and exit. You can search “libimobiledevice” in your respective package manager for other Linux distributions.&lt;/P&gt;&lt;P&gt;Connect It!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 16:26:15 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857714#M61585</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T16:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857715#M61586</link>
      <description>Just one thing&lt;BR /&gt;"Press the text where is states the version of Android up to 7 times. A message should appear to say Developer Mode is now enabled."&lt;BR /&gt;&lt;BR /&gt;Multi tapping "android version" will bring up the easter egg, developer mode is enabled by tapping "build number"</description>
      <pubDate>Sun, 08 Mar 2015 16:57:02 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857715#M61586</guid>
      <dc:creator>viridis</dc:creator>
      <dc:date>2015-03-08T16:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857724#M61587</link>
      <description>&lt;P&gt;Yes thank Viridis, I couldn't quite word that part properly.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 18:36:12 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857724#M61587</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T18:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857728#M61588</link>
      <description>&lt;P&gt;Or if you're slightly more geeky and slightly diverging away the subject: &lt;A target="_blank" href="http://therockncoder.blogspot.co.uk/2013/06/using-virtualbox-android-emulator.html"&gt;put an android emulator on your pc using virtual box&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The article is a little old but it seems that Genymotion is a simpler, faster way to emulate Android for development.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 19:12:04 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857728#M61588</guid>
      <dc:creator>sheepdog</dc:creator>
      <dc:date>2015-03-08T19:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857729#M61589</link>
      <description>&lt;P&gt;Cool info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Although that does go beyond the scope of the original topic, that's useful to know. Now the big thing unless somebody knows would be connecting an Android handset to Mac OS X.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 19:16:37 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857729#M61589</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T19:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857732#M61591</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="https://www.android.com/filetransfer/"&gt;https://www.android.com/filetransfer/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 19:34:02 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857732#M61591</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T19:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857747#M61594</link>
      <description>&lt;a href="https://community.o2.co.uk/t5/user/viewprofilepage/user-id/25387"&gt;@anticpated&lt;/a&gt; all gobbdy **bleep** to me</description>
      <pubDate>Sun, 08 Mar 2015 20:49:13 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857747#M61594</guid>
      <dc:creator>blissgirl</dc:creator>
      <dc:date>2015-03-08T20:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857765#M61602</link>
      <description>&lt;P&gt;Well....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To keep the topic on track.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a guide on how to use your Android Tablet/Phone with a Linux.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fedora and Ubuntu although are both Linux are different types of distributions. Fedora is based on Red-Hat and Ubuntu is based n Debian which means slightly variations in commands and operating kernels. However they are the same in principle.Lets leave that point at that and not overall complicate things. Anybody who is using either of their products or indeed FreeBSD or any other Unix-like OS will be aware of this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The whole point of this post was to demonstrate that is possible with a minimum of fuss to install your Android or indeed Apple based device within Linux. This does mean you still have a 3rd option and aren't confined to one of two operating systems to use your phone/tablet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If security concerns you then one of those networking based operating systems should suffice and most stuff is free apart from enterprise licenses. Whilst not bulletproof, out of the box you are secured by default with no need for 3rd party software.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway just installing some Windows 7 Updates......not fun.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 23:18:32 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857765#M61602</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-08T23:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857794#M61614</link>
      <description>&lt;P&gt;Lovely to see more guides &lt;a href="https://community.o2.co.uk/t5/user/viewprofilepage/user-id/25387"&gt;@anticpated&lt;/a&gt;&amp;nbsp;, great job&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2015 09:22:35 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/857794#M61614</guid>
      <dc:creator>Toby</dc:creator>
      <dc:date>2015-03-09T09:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Android in Linux (Ubuntu)</title>
      <link>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/858004#M61672</link>
      <description>&lt;P&gt;I wish I could be more comprehensive with some screenshots and what not.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2015 20:15:57 GMT</pubDate>
      <guid>https://community.o2.co.uk/t5/Discussions-Feedback/Installing-an-Android-in-Linux-Ubuntu/m-p/858004#M61672</guid>
      <dc:creator>anticpated</dc:creator>
      <dc:date>2015-03-09T20:15:57Z</dc:date>
    </item>
  </channel>
</rss>

