Quote:
Originally Posted by nixontankgirl
I will do as you say..... Though I must admit that in a fit of despair I gave up and uninstalled Linux deploy. I will try again later and get back to you.....
|
*Open the SuperSu application by tapping on its icon.
*Make sure you have enabled 'SuperSu Pro' as per my instructions.
*If there is this option, 'Multi-User Policy' tick 'All users can request Super User
You are installing to an external partitioned sdcard? If so, is your first a MS FAT partition? Second partition linux ext2, 3 or 4 format?
Size of each?
***It may be best if you install linux to your primary
storage 'sdcard' before trying an external sdcard. At least if installing to the sdcard works, then any problems you have installing to an external sdcard indicates something isn't right with the card...***
Can you copy to, edit and delete files on the first partition of the external sdcard?
If everything is right with the external sdcard there's a script below to mount both partitions at boot time:
Note that in the script your device external sdcard may be different than mount "/dev/block/mmcblk0p2". You can check by executing this command in an android terminal after typing "su" <enter> .
'cat /proc/partitions'
<enter>
root@localhost:/# cat /proc/partitions
major minor #blocks name
253 0 98304 zram0
253 1 98304 zram1
179 0 15558144 mmcblk0
179 1 1048576 mmcblk0p1
179 2 14508032 mmcblk0p2 My external sdcard, "sdcard1_real"
179 8 31260672 mmcblk1
179 9 3072 mmcblk1p1
179 10 2048 mmcblk1p2
179 11 2048 mmcblk1p3
179 12 4096 mmcblk1p4
179 13 2048 mmcblk1p5
179 14 12288 mmcblk1p6
179 15 8192 mmcblk1p7
259 0 1048576 mmcblk1p8
259 1 524288 mmcblk1p9
259 2 29623808 mmcblk1p10
Here's the file content for the script. Using an android file manager create an empty file.
Copy/paste the text starting with "#!" and save the file as "userinit.sh" Copy the file to /data/local .
#!/system/bin/sh
REALMNT=/mnt/fuse/sdcard1_real
if ! [ -d "$REALMNT" ]; then
mkdir "$REALMNT" || exit 1
fi
mount -t ext3 /dev/block/mmcblk0p2 "$REALMNT"
sdcard "$REALMNT" /storage/sdcard1 1023 1023 &
Let me know the results...