Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试通过 adb 将一些 sqlite3 命令运行到 Nexus Player 中,但它找不到该sqlite3命令。
sqlite3
这在 Android TV 版本上不可用吗?有没有一个可以从中提取的位置?
我通过将 sqlite3 二进制文件推送到 nexus 播放器来解决这个问题。请记住:华硕的 Nexus Player 是 x86 设备,因此您应该获得 x86 二进制文件。
推过去
adb push X:\sqlite3 /data/local/tmp
推送后,导航到您将二进制文件推送到的路径
adb shell cd /data/tmp/local
在适当的目录下,设置权限
chmod +x ./sqlite3
然后你可以运行它
./sqlite3 <path-to-your-sqlite-db>