Home > Software design >  allow computer to access files on the phone from the computer
allow computer to access files on the phone from the computer

Time:12-02

I want to access my phone data from the computer and for this I have to allow the computer to do it from the phone. The problem is that the phone's screen doesn't work, so is there any way to allow the computer to access the phone's data from my computer?

Oh, and if it matters, I'm using ubuntu and android....

CodePudding user response:

You can use adb if the phone has USB debugging turned on. adb is a program that allows you to access a connected android device. just use adb shell to get an interactive shell on the device, or adb shell command to run a command. To push files to the device use adb push, and to pull them from the device use adb pull

  • Related