I am trying to create symbolic links of /data/sdext2/app/* on /data/app.
This is what I did in adb shell
ln -sf /data/sdext2/app/* /data/app/
But it is telling "link failed No such file or directory".
Note that none of the partitions are of FAT32 format.
And without -f option it says "link failed File exists".
|
|
||||
|
|
|
ln only takes 2 arguments at most (not counting options), the ../* wildcard however expands to all filenames in the folder. Just do place an echo before ln to see what happens. Do it one by one this way:
or
EDIT Ok, this is how it works on my device:
|
|||||||||||
|