June 30, 2023
ADB is "android debug bridge" and is a swiss army knife capable of all kinds of things.
/u1/home/tom/Android/SdkAfter some poking around, I find:
/u1/home/tom/Android/Sdk/platform-tools/adbSince I intend to use it now and then, I do this:
cd /u1/home/tom/Android/Sdk/platform-tools/adb cp adb /home/tom/binI'll note in passing that the Android studio SDK manager tells me I have three SDK platforms installed:
Just typing "adb" tells me this is version 1.0.41 (version 34.0.3-10161052).
Just typing "adb" (or "adb help") also gives me a bunch of help.
I had already turned on developer options on my phone.
adb devicesThis shows me a device, presumably the Pixel 6.
adb shellThis gives me an interactive shell, and looks like a linux system. I can use df, ls, pwd, cd, mount, even uname -a.
Other exciting possibilities:
Adventures in Computing / tom@mmto.org