neta cohen
neta cohen

Reputation: 167

allow computer to access files on the phone from the computer

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....

Upvotes: 1

Views: 576

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93708

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

Upvotes: 2

Related Questions