Ubuntu doesn't recognize my Galaxy 9 phone
It was working fine a few days ago then all of a sudden. Nothing.I'll plug it in phone says allow access, yes and it will show SD card and Phone but try open SD card and I get libmtp error can not get object handles.
drivers
add a comment |
It was working fine a few days ago then all of a sudden. Nothing.I'll plug it in phone says allow access, yes and it will show SD card and Phone but try open SD card and I get libmtp error can not get object handles.
drivers
1
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
1
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
18.04 is current version.
– laneq
Jan 13 at 21:28
add a comment |
It was working fine a few days ago then all of a sudden. Nothing.I'll plug it in phone says allow access, yes and it will show SD card and Phone but try open SD card and I get libmtp error can not get object handles.
drivers
It was working fine a few days ago then all of a sudden. Nothing.I'll plug it in phone says allow access, yes and it will show SD card and Phone but try open SD card and I get libmtp error can not get object handles.
drivers
drivers
asked Jan 13 at 20:33
laneqlaneq
61
61
1
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
1
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
18.04 is current version.
– laneq
Jan 13 at 21:28
add a comment |
1
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
1
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
18.04 is current version.
– laneq
Jan 13 at 21:28
1
1
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
1
1
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
18.04 is current version.
– laneq
Jan 13 at 21:28
18.04 is current version.
– laneq
Jan 13 at 21:28
add a comment |
2 Answers
2
active
oldest
votes
I had a similar problem but with Samsung S6 Edge. I used Android File Transfer for linux and it worked! Worked fantastically actually! In a nutshell,... "It just works!"
You will have to download and build it from Github:
https://github.com/whoozle/android-file-transfer-linux
Just to add to the limited instructions on the "how to build page" on Github for the less technical, also google's your friend if the instructions underneath aren't clear enough;
~$ sudo apt-get install build-essential cmake libqt4-dev
ninja-build libfuse-dev libreadline-dev- Find a path in your pc where you want to keep the source code for
AFTL - Clone AFTL to that location then as the instructions on the github page says...
~$ mkdir build
~$ cd build
~$ cmake ..
- A little bit of a modification here to build things much faster!
~$ make -j<number of cores you have>
. So in my case with an i7
cpu it s~$ make -j8
~$ cd qt
~$ ./android-file-transfer
- In many computers it will give you some pop-up error saying that
there is already some other process or rather using MTP or busy or
something similar. It will give you the option to kill them by
pressing "abort". DO THAT! It will kill those useless non-function
processes. Then you will get AFTL running showing you all the
folders on your phone. - Have fun!
add a comment |
This is a big fat band-aid NOT a solution ... install an FTP Server app
on your android ... I tend to use the one from "The Olive Tree" ... launch that app and enable the ftp server ... go to ubuntu open up Files (file manager) and hit + Locations
on left column then enter the ftp address as shown on your phone similar to
ftp://192.168.1.102:2221 # <-- your IP may be different
now you are connected and can transfer files between phone <--> ubuntu
Android 7 <--> ubuntu {16.04...19.04}
I personally find ubuntu a very nice distro however its Android connectivity is extremely poor and has been since the beginning may years ago ... I tend to use pre-release editions so when things like this fail I chalk it up to me compiling/installing too many rogue repos ... hence this work around as I really hope someone pipes in with a real solution
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1109458%2fubuntu-doesnt-recognize-my-galaxy-9-phone%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had a similar problem but with Samsung S6 Edge. I used Android File Transfer for linux and it worked! Worked fantastically actually! In a nutshell,... "It just works!"
You will have to download and build it from Github:
https://github.com/whoozle/android-file-transfer-linux
Just to add to the limited instructions on the "how to build page" on Github for the less technical, also google's your friend if the instructions underneath aren't clear enough;
~$ sudo apt-get install build-essential cmake libqt4-dev
ninja-build libfuse-dev libreadline-dev- Find a path in your pc where you want to keep the source code for
AFTL - Clone AFTL to that location then as the instructions on the github page says...
~$ mkdir build
~$ cd build
~$ cmake ..
- A little bit of a modification here to build things much faster!
~$ make -j<number of cores you have>
. So in my case with an i7
cpu it s~$ make -j8
~$ cd qt
~$ ./android-file-transfer
- In many computers it will give you some pop-up error saying that
there is already some other process or rather using MTP or busy or
something similar. It will give you the option to kill them by
pressing "abort". DO THAT! It will kill those useless non-function
processes. Then you will get AFTL running showing you all the
folders on your phone. - Have fun!
add a comment |
I had a similar problem but with Samsung S6 Edge. I used Android File Transfer for linux and it worked! Worked fantastically actually! In a nutshell,... "It just works!"
You will have to download and build it from Github:
https://github.com/whoozle/android-file-transfer-linux
Just to add to the limited instructions on the "how to build page" on Github for the less technical, also google's your friend if the instructions underneath aren't clear enough;
~$ sudo apt-get install build-essential cmake libqt4-dev
ninja-build libfuse-dev libreadline-dev- Find a path in your pc where you want to keep the source code for
AFTL - Clone AFTL to that location then as the instructions on the github page says...
~$ mkdir build
~$ cd build
~$ cmake ..
- A little bit of a modification here to build things much faster!
~$ make -j<number of cores you have>
. So in my case with an i7
cpu it s~$ make -j8
~$ cd qt
~$ ./android-file-transfer
- In many computers it will give you some pop-up error saying that
there is already some other process or rather using MTP or busy or
something similar. It will give you the option to kill them by
pressing "abort". DO THAT! It will kill those useless non-function
processes. Then you will get AFTL running showing you all the
folders on your phone. - Have fun!
add a comment |
I had a similar problem but with Samsung S6 Edge. I used Android File Transfer for linux and it worked! Worked fantastically actually! In a nutshell,... "It just works!"
You will have to download and build it from Github:
https://github.com/whoozle/android-file-transfer-linux
Just to add to the limited instructions on the "how to build page" on Github for the less technical, also google's your friend if the instructions underneath aren't clear enough;
~$ sudo apt-get install build-essential cmake libqt4-dev
ninja-build libfuse-dev libreadline-dev- Find a path in your pc where you want to keep the source code for
AFTL - Clone AFTL to that location then as the instructions on the github page says...
~$ mkdir build
~$ cd build
~$ cmake ..
- A little bit of a modification here to build things much faster!
~$ make -j<number of cores you have>
. So in my case with an i7
cpu it s~$ make -j8
~$ cd qt
~$ ./android-file-transfer
- In many computers it will give you some pop-up error saying that
there is already some other process or rather using MTP or busy or
something similar. It will give you the option to kill them by
pressing "abort". DO THAT! It will kill those useless non-function
processes. Then you will get AFTL running showing you all the
folders on your phone. - Have fun!
I had a similar problem but with Samsung S6 Edge. I used Android File Transfer for linux and it worked! Worked fantastically actually! In a nutshell,... "It just works!"
You will have to download and build it from Github:
https://github.com/whoozle/android-file-transfer-linux
Just to add to the limited instructions on the "how to build page" on Github for the less technical, also google's your friend if the instructions underneath aren't clear enough;
~$ sudo apt-get install build-essential cmake libqt4-dev
ninja-build libfuse-dev libreadline-dev- Find a path in your pc where you want to keep the source code for
AFTL - Clone AFTL to that location then as the instructions on the github page says...
~$ mkdir build
~$ cd build
~$ cmake ..
- A little bit of a modification here to build things much faster!
~$ make -j<number of cores you have>
. So in my case with an i7
cpu it s~$ make -j8
~$ cd qt
~$ ./android-file-transfer
- In many computers it will give you some pop-up error saying that
there is already some other process or rather using MTP or busy or
something similar. It will give you the option to kill them by
pressing "abort". DO THAT! It will kill those useless non-function
processes. Then you will get AFTL running showing you all the
folders on your phone. - Have fun!
answered Jan 22 at 0:41
DanglingPointerDanglingPointer
401212
401212
add a comment |
add a comment |
This is a big fat band-aid NOT a solution ... install an FTP Server app
on your android ... I tend to use the one from "The Olive Tree" ... launch that app and enable the ftp server ... go to ubuntu open up Files (file manager) and hit + Locations
on left column then enter the ftp address as shown on your phone similar to
ftp://192.168.1.102:2221 # <-- your IP may be different
now you are connected and can transfer files between phone <--> ubuntu
Android 7 <--> ubuntu {16.04...19.04}
I personally find ubuntu a very nice distro however its Android connectivity is extremely poor and has been since the beginning may years ago ... I tend to use pre-release editions so when things like this fail I chalk it up to me compiling/installing too many rogue repos ... hence this work around as I really hope someone pipes in with a real solution
add a comment |
This is a big fat band-aid NOT a solution ... install an FTP Server app
on your android ... I tend to use the one from "The Olive Tree" ... launch that app and enable the ftp server ... go to ubuntu open up Files (file manager) and hit + Locations
on left column then enter the ftp address as shown on your phone similar to
ftp://192.168.1.102:2221 # <-- your IP may be different
now you are connected and can transfer files between phone <--> ubuntu
Android 7 <--> ubuntu {16.04...19.04}
I personally find ubuntu a very nice distro however its Android connectivity is extremely poor and has been since the beginning may years ago ... I tend to use pre-release editions so when things like this fail I chalk it up to me compiling/installing too many rogue repos ... hence this work around as I really hope someone pipes in with a real solution
add a comment |
This is a big fat band-aid NOT a solution ... install an FTP Server app
on your android ... I tend to use the one from "The Olive Tree" ... launch that app and enable the ftp server ... go to ubuntu open up Files (file manager) and hit + Locations
on left column then enter the ftp address as shown on your phone similar to
ftp://192.168.1.102:2221 # <-- your IP may be different
now you are connected and can transfer files between phone <--> ubuntu
Android 7 <--> ubuntu {16.04...19.04}
I personally find ubuntu a very nice distro however its Android connectivity is extremely poor and has been since the beginning may years ago ... I tend to use pre-release editions so when things like this fail I chalk it up to me compiling/installing too many rogue repos ... hence this work around as I really hope someone pipes in with a real solution
This is a big fat band-aid NOT a solution ... install an FTP Server app
on your android ... I tend to use the one from "The Olive Tree" ... launch that app and enable the ftp server ... go to ubuntu open up Files (file manager) and hit + Locations
on left column then enter the ftp address as shown on your phone similar to
ftp://192.168.1.102:2221 # <-- your IP may be different
now you are connected and can transfer files between phone <--> ubuntu
Android 7 <--> ubuntu {16.04...19.04}
I personally find ubuntu a very nice distro however its Android connectivity is extremely poor and has been since the beginning may years ago ... I tend to use pre-release editions so when things like this fail I chalk it up to me compiling/installing too many rogue repos ... hence this work around as I really hope someone pipes in with a real solution
edited Jan 13 at 21:51
answered Jan 13 at 21:15
Scott StenslandScott Stensland
4,89742242
4,89742242
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1109458%2fubuntu-doesnt-recognize-my-galaxy-9-phone%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Hello and welcome to Askubuntu! Please edit your question and include the error so that we can help you. Thanks!
– mchid
Jan 13 at 20:43
1
Always mention what version of ubuntu ... especially on anything IO related
– Scott Stensland
Jan 13 at 20:48
18.04 is current version.
– laneq
Jan 13 at 21:28