How Can I Install Sqlite3 On Rooted Nexusone Runs Gingerbread
I am rooted my nexus one which runs Gingerbread. But like the following post, I can't find sqlite3 and would like to install sqlite3 on Nexus One: Why do I get a 'sqlite3: not foun
Solution 1:
Use the following commands sequence. Before entering "su" command unlock your device to see dialog for granting access
$ adb push sqlite3 /sdcard/
$ adb shell
$ su
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# dd if=/sdcard/sqlite3 of=/system/bin/sqlite3
# chmod 4755 /system/bin/sqlite3
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
Solution 2:
$ cd ~/NexusOne/SuperOneClickv1.7-ShortFuse
$ adb push sqlite3 /sdcard/
$ adb shell
$ su
# cp /sdcard/sqlite3 /usr/bin
Post a Comment for "How Can I Install Sqlite3 On Rooted Nexusone Runs Gingerbread"