nice list of open source alt software

http://prism-break.org/

create a new mysql db & user and grant privs

mysql> create database wombat; Query OK, 1 row affected (0.00 sec) mysql> grant all privileges on wombat.* to wombat@localhost identified by 'wombat'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)

remount android rootfs writable so you can enable sftp-server

to install ssh server on android https://play.google.com/store/apps/details?id=me.shkschneider.dropbears… first you need remount / as writable then manually create the the /usr/libexec directory and link /system/xbin/sftp-server. clean up by making / read only again. root@android:/data/local # cat /proc/mounts rootfs / rootfs ro,relatime 0 0 tmpfs /dev tmpfs rw,nosuid,relatime,mode=755 0 0 .. snip …