Ish: /dev/stdin, stdout, stderr are missing

Created on 14 Oct 2020  路  1Comment  路  Source: ish-app/ish

In a fresh installation of iSH, the special files stdin, stdout and stderr are missing under /dev. Running something like echo hello > /dev/stderr in the shell doesn't produce any output, instead it simply creates a regular file at /dev/stderr and writes the output into it.

Most helpful comment

As a workaround, manually running ln -s /proc/self/fd/0 /dev/stdin (and the same for 1/stdout and 2/stderr) seems to work.

>All comments

As a workaround, manually running ln -s /proc/self/fd/0 /dev/stdin (and the same for 1/stdout and 2/stderr) seems to work.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

AlZeck picture AlZeck  路  3Comments

travis-mark picture travis-mark  路  5Comments

tommythorn picture tommythorn  路  4Comments

wsjyhaozi picture wsjyhaozi  路  4Comments

ghanan94 picture ghanan94  路  6Comments