Skip to content

Instantly share code, notes, and snippets.

@umjammer
Last active September 3, 2015 09:08
Show Gist options
  • Save umjammer/9800334 to your computer and use it in GitHub Desktop.
Save umjammer/9800334 to your computer and use it in GitHub Desktop.
get root for SO-03D
#・Titanium Backup がインストール済みで、同梱の sqlite3 を使う場合
$ adb shell
$ su -
% mount -o rw,remount /system /system
% dd if=/data/data/com.keramidas.TitaniumBackup/files/sqlite3 of=/system/bin/sqlite3
% chmod 4755 /system/bin/sqlite3
% sync
% mount -o ro,remount /system /system
#・テザリングの APN 固定制限を外す場合
% sqlite3 /data/data/com.android.providers.settings/databases/settings.db
sqlite> update secure set value = '0' where name = 'tether_dun_required';
sqlite> .quit
% sync
#・テザリングの 固定 APN を mpr2.bizho.net に変更する場合
% sqlite3 /data/data/com.android.providers.settings/databases/settings.db
sqlite> update secure set value = 'docomo tethering,mpr2.bizho.net,,,,,,,,,440,10,0,*' where name = 'tether_dun_apn';
sqlite> .quit
% sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment