Difference between revisions of "About the Android Filesystem"

From Tech
Jump to navigationJump to search
(Created page with "=See Also= * Android * Rooting Android * Backup Android phone")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
=Misc File Permissions=
  +
<nowiki>
  +
root@android:/ # ls -ald sdcard
  +
lrwxrwxrwx root root 2012-12-23 21:15 sdcard -> /storage/emulated/legacy
  +
  +
root@android:/sdcard # ls -al
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Alarms
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Android
  +
drwxrwxr-x root sdcard_rw 2012-12-23 18:17 DCIM
  +
drwxrwxr-x root sdcard_rw 2012-12-23 16:22 Download
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Movies
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Music
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Notifications
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:33 Pictures
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Podcasts
  +
drwxrwxr-x root sdcard_rw 2012-12-23 13:30 Ringtones
  +
-rw-rw-r-- root sdcard_rw 863436 2012-12-23 16:31 busybox-stericson
  +
drwxrwxr-x root sdcard_rw 2012-12-23 18:56 osmand
  +
-rw-rw-r-- root sdcard_rw 77352 2012-12-23 16:31 toolbox-stericson
  +
</nowiki>
  +
  +
=Misc Apps=
  +
==DigiSSHD / SSH Server==
  +
[https://play.google.com/store/apps/details?id=org.digimead.digi.ctrl.sshd play store], after activating, can copy files to android device using:
  +
sftp -P 2222 android@nexus-joostje.fritz.box:/sdcard/Music
  +
  +
==Not used any more==
  +
Dropbear ssh II authorized_keys file: <tt>/data/data/me.shkschneider.dropbearserver2/app_data/authorized_keys</tt>
  +
 
=See Also=
 
=See Also=
 
* [[Android]]
 
* [[Android]]

Latest revision as of 15:27, 22 June 2013

Misc File Permissions

root@android:/ # ls -ald sdcard                                                                                                                                      
lrwxrwxrwx root     root              2012-12-23 21:15 sdcard -> /storage/emulated/legacy

root@android:/sdcard # ls -al
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Alarms
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Android
drwxrwxr-x root     sdcard_rw          2012-12-23 18:17 DCIM
drwxrwxr-x root     sdcard_rw          2012-12-23 16:22 Download
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Movies
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Music
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Notifications
drwxrwxr-x root     sdcard_rw          2012-12-23 13:33 Pictures
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Podcasts
drwxrwxr-x root     sdcard_rw          2012-12-23 13:30 Ringtones
-rw-rw-r-- root     sdcard_rw   863436 2012-12-23 16:31 busybox-stericson
drwxrwxr-x root     sdcard_rw          2012-12-23 18:56 osmand
-rw-rw-r-- root     sdcard_rw    77352 2012-12-23 16:31 toolbox-stericson

Misc Apps

DigiSSHD / SSH Server

play store, after activating, can copy files to android device using:

sftp -P 2222  android@nexus-joostje.fritz.box:/sdcard/Music

Not used any more

Dropbear ssh II authorized_keys file: /data/data/me.shkschneider.dropbearserver2/app_data/authorized_keys

See Also