I transferred fotos etc from Android 11 (Samsung S10e) to Ubuntu via USB; then, after completion, tried to unmount (I think) which then stalled (if I remember correctly) then pulled the plug and since then I can't properly mount/connect via USB again as before. - Of the USB connection options presented to me by Android, I can now only connect via "Transferring images" (also known perhaps as "PTP via USB turned on") instead of "Transferring files" (which worked before).
How to fix / reset the connection so that also the other connection mode ("Transferring files") will work again as before?
- I already rebooted both the phone and the laptop: no change.
/var/crash
contains _usr_libexec_gvfsd-mtp.1000.crash
adb-tools
? https://askubuntu.com/questions/1363298/adb-command-not-found-after-installed-it/1363318#1363318 – CrazyTux Oct 08 '21 at 08:16/run/user/1000/gvfs$ ls
stays blank, as if it were still waiting for the info to come through; if I then unplug the phone, it saysls: cannot access 'mtp:host=SAMSUNG_SAMSUNG_Android_R38MB............
– nutty about natty Oct 08 '21 at 08:23adb
is the right tool for that aka Android Debug Bridge, check out this topic it might be helpful https://developer.android.com/studio/command-line/adb – CrazyTux Oct 08 '21 at 08:25apt install android-tools-adb
(did not worked for me), i installedadb
with downloading the zip file like the answer i posted, the link to the zip file in my answer is the official link from the SDK Platform tools website like here https://developer.android.com/studio/releases/platform-tools, here is the best guide i found for adb: https://www.xda-developers.com/install-adb-windows-macos-linux/ – CrazyTux Oct 08 '21 at 08:37sudo apt-get install android-tools-adb
vs.sudo apt-get install adb
– nutty about natty Oct 08 '21 at 08:40