• 3 Posts
  • 66 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle


















  • I think it’s Android itself. I can only do symlinks in the /data partition not /storage/emulated according to this. And I tried it and it seems to be true.

    ` ~ $ pwd

    /data/data/com.termux/files/home

    ~ $ touch ok

    ~ $ ln ok ok.ok

    ln: failed to create hard link ‘ok.ok’ => ‘ok’: Permission denied

    ~ $ ln ok -s ok.ok

    ~ $ ls

    ok ok.ok

    ~ $ cd /storage/emulated/0

    …/emulated/0 $ touch ok

    …/emulated/0 $ ln ok -s ok.ok

    ln: failed to create symbolic link ‘ok.ok’: Permission denied

    `