Differences between revisions 7 and 10 (spanning 3 versions)
Revision 7 as of 2013-02-24 10:22:04
Size: 764
Editor: SamatJain
Comment: Linux filesystem on SD card
Revision 10 as of 2017-10-27 07:31:21
Size: 946
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
== Features I want in my next Android device == == Android device encryption tips ==
Line 11: Line 11:
 * Native, hardware Theora/VP8 decoding. Current devices can do H.264 baseline profile decoding. [[http://forum.xda-developers.com/showthread.php?t=2484380|[Q] mount cryptfs? - xda-developers]]
Line 13: Line 13:
== Backup == In recovery, unlock an encrypted partition with:
Line 15: Line 15:
 * Export tracks from OSMTracker, Google My Tracks
 * Export data from Mileage
 * Export settings from K9 Mail
 * Export data for Key Ring
 * Backup passwords from Secrets
 * Backup private/public key from ConnectBot
 * Backup database for My Coffee Card
{{{#!highlight sh numbers=off
setprop ro.crypto.state encrypted
vdc cryptfs checkpw 'your passphrase here'
mount -o rw /dev/block/dm-0 /data
}}}

Make sure to unmount /data.

Logs are in /dev/log/system and/ or (in a second shell) /dev/log/main.

== External links ==

 * [[https://stumbles.id.au/configuring-android-k-9-mail-from-the-command-line.html|Configuring Android K-9 Mail from the command line]]

Linux filesystem on SD card

Support for ext4 formatted external sd cards describes writing an init.d script that:

mount -o rw,UID=1000 -t ext4 /dev/block/mmcblk1p1 /storage/extSdCard

Android device encryption tips

[Q] mount cryptfs? - xda-developers

In recovery, unlock an encrypted partition with:

setprop ro.crypto.state encrypted
vdc cryptfs checkpw 'your passphrase here'
mount -o rw /dev/block/dm-0 /data

Make sure to unmount /data.

Logs are in /dev/log/system and/ or (in a second shell) /dev/log/main.

SamatsWiki: Android (last edited 2017-10-27 07:31:21 by SamatJain)