Ubuntu can't see my Android phone!

192

I am using Android 4.0.4 with Sony experia.This solution work out for me.

Open a terminal in ubuntu 12.04

then

sudo add-apt-repository ppa:langdalepl/gvfs-mtp
sudo apt-get update

then open software update and install available updates. Then restart the system and after restart your Android phone internal data storage will be listed in the devices automatically.

You can find out detailed information on this link

Share:
192

Related videos on Youtube

Sesuraj
Author by

Sesuraj

Updated on September 18, 2022

Comments

  • Sesuraj
    Sesuraj over 1 year

    I am getting this error on oAuth login using Facebook.

    var dd = OAuthWebSecurity.VerifyAuthentication();
    

    My code is

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
             var  dd = OAuthWebSecurity.VerifyAuthentication();
             if (dd.IsSuccessful == true)
             {
                 Response.Write("Login Sucess : " + dd.UserName + ", " + dd.ProviderUserId + ", " + dd.Provider);
                 //Do something here like store this information in a database or in the session to remember the active login
              }
         }
     }
    
    • Suvarna Pattayil
      Suvarna Pattayil about 11 years
      I have same issue with my phone. But I discovered that it was one particular port that wouldn't mount the phone as memory device (charge it though). However, it worked well with another port on my laptop. I haven't been able to isolate the exact issue though.
    • Sukupa91
      Sukupa91 over 10 years
      I was facing the same issue , with my xperia neo and I just booted into windows explored sdcard after connecting and then restart and boot into Ubuntu ,and it will work fine for sure.
  • Nemo
    Nemo about 11 years
    Thanks for taking the time to reply. I didn't have high expectations for an answer but I thought I should try anyway. Maby someday I'll make it work.