博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小米、MIUI、sqlite3: not found--miui安装sqlite3
阅读量:5085 次
发布时间:2019-06-13

本文共 918 字,大约阅读时间需要 3 分钟。

以下为miui安装sqlite3的教程:

1.从AVD中将sqlite3导入到PC的D:\android目录下(AVD的版本需要和手机操作系统的版本相同)。

#adb pull system/xbin/sqlite3 D:\android

 

2.将D:\android\sqlite3复制到sd卡中。

 

3.打开手机,关闭USB数据存储(如果不关闭USB数据存储,则在命令行下无法访问到SD卡中的数据)。

 

4.将/system处于挂载状态,使可读写。

#adb shell #su #mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

 

5.将sd卡的sqlite3拷贝到system/xbin下。

#adb shell #su #cat /mnt/sdcard/sqlite3 > /system/xbin/sqlite3

 

6.给sqlite赋予权限。

#adb shell #su #cd system/xbin #chmod 4755 sqlite3

 

7.验证是否成功。

shell@android:/system/xbin # sqlite3sqlite3SQLite version 3.7.11 2012-03-20 11:35:50Enter ".help" for instructionsEnter SQL statements terminated with a ";"

 

参考网址:

------------------------------------------------------------------------------------------------------

C:\Users\Jason>adb devices

List of devices attached
217f1db5 device
emulator-5554 device

adb -s emulator-5554 shell

转载于:https://www.cnblogs.com/chinahnzhou/p/miui_install_sqlite3.html

你可能感兴趣的文章
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>
LinkedList源码分析
查看>>
TF-IDF原理
查看>>