Advertisement
fuser-invent

Nexus 7 2013 - adb shell mount

May 26th, 2015
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. *Nothing is mounted on emmc and the devices is only running off tmp mounts in the ram.
  2.  
  3. Bricked
  4.  
  5. E:\android_development\sdk\platform-tools>adb shell mount
  6. rootfs on / type rootfs (rw)
  7. tmpfs on /dev type tmpfs (rw,seclabel,nosuid,relatime,mode=755)
  8. devpts on /dev/pts type devpts (rw,seclabel,relatime,mode=600)
  9. proc on /proc type proc (rw,relatime)
  10. sysfs on /sys type sysfs (rw,seclabel,relatime)
  11. selinuxfs on /sys/fs/selinux type selinuxfs (rw,relatime)
  12. tmpfs on /tmp type tmpfs (rw,seclabel,relatime,size=1758184k)
  13.  
  14. Working
  15.  
  16. E:\android_development\sdk\platform-tools>adb shell mount
  17. rootfs on / type rootfs (rw)
  18. tmpfs on /dev type tmpfs (rw,seclabel,nosuid,relatime,mode=755)
  19. devpts on /dev/pts type devpts (rw,seclabel,relatime,mode=600)
  20. proc on /proc type proc (rw,relatime)
  21. sysfs on /sys type sysfs (rw,seclabel,relatime)
  22. selinuxfs on /sys/fs/selinux type selinuxfs (rw,relatime)
  23. tmpfs on /tmp type tmpfs (rw,seclabel,relatime)
  24. /dev/block/mmcblk0p30 on /data type ext4 (rw,seclabel,relatime,data=ordered)
  25. /dev/block/mmcblk0p30 on /sdcard type ext4 (rw,seclabel,relatime,data=ordered)
  26. /dev/block/mmcblk0p23 on /cache type ext4 (rw,seclabel,relatime,data=ordered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement