Score:0

I have the adb and fastboot binaries in usr/bin and in bin and I want to delete all of platform-tools to start from 0

in flag
yop

I have had installed in my ubuntu 20 the android-tools-adb android-tools-fastboot from the package. I found out that they were outdated , so I have try to download the latest one from Android. I delte the tools but when I was trying to connect a device through adb devices it was still connecting to it. So I delete with rm -rf the adb and the fastboot from usr/bin Then I did this:

`#!/bin/bash

wget https://dl.google.com/android/repository/platform-tools-latest-linux.zip
unzip \platform-tools-latest-linux.zip
sudo cp platform-tools/adb /usr/bin/adb
sudo cp platform-tools/fastboot /usr/bin/fastboot`

After that the phone was not connecting through adb cause it says that it was measing usr/bin/adb so I install the adb with this command:

cd platform-tools sudo install adb /usr/bin/adb sudo install fastboot /usr/bin/fastboot

And then I could use it.

Now I dont know if all the other files from the extract of the platform-tools are also installed or not?

this is what I get from terminal:

noax@noax:~$ echo $PATH

/home/noax/platform-tools:/home/noax/.local/bin:/home/noax/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

noax@noax:~$ which -a adb /home/noax/platform-tools/adb /usr/bin/adb/bin/adb

noax@noax:~$ which -a fastboot

/home/noax/platform-tools/fastboot /usr/bin/fastboot /bin/fastboot

noax@noax:~$

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.