Size: 274
Comment: Backup strategy
|
← Revision 10 as of 2017-10-27 07:31:21 ⇥
Size: 946
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
== Features I want in my next Android device == | == Linux filesystem on SD card == |
Line 3: | Line 3: |
Native, hardware Theora decoding. Current devices can do H.264 baseline profile decoding. | [[http://forum.powerampapp.com/index.php?/topic/4365-support-for-ext4-formatted-external-sd-cards/|Support for ext4 formatted external sd cards]] describes writing an init.d script that: |
Line 5: | Line 5: |
== Backup == | {{{#!highlight sh numbers=off mount -o rw,UID=1000 -t ext4 /dev/block/mmcblk1p1 /storage/extSdCard }}} |
Line 7: | Line 9: |
* Export tracks from OSMTracker, Google My Tracks * Export data from Mileage * Export settings from K9 Mail |
== Android device encryption tips == [[http://forum.xda-developers.com/showthread.php?t=2484380|[Q] mount cryptfs? - xda-developers]] In recovery, unlock an encrypted partition with: {{{#!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.