This repository has been archived by the owner on May 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
failed to run clear container standalone #158
Labels
Comments
proposed fix devimc/go@559e40c |
filed an issue in golang/go golang/go#20454 |
Seems like the easier way to go about this is to not support |
devimc
pushed a commit
to devimc/runtime
that referenced
this issue
May 24, 2017
With this patch a new pts will be created when the console provided as argument is /dev/ptmx. Runtime stdout and stdin will be forwarded to the master fd and then to the slave, something like this: /dev/pts/0 <--> master <--> /dev/pts/1 where pts 0 is assigned to the runtime and pts 1 is assigned to the container fixes clearcontainers#158 Signed-off-by: Julio Montes <[email protected]>
devimc
pushed a commit
to devimc/runtime
that referenced
this issue
May 25, 2017
With this patch a new pts will be created when the console provided as argument is /dev/ptmx. Runtime stdout and stdin will be forwarded to the master fd and then to the slave, something like this: ``` /dev/pts/0 <--> master <--> /dev/pts/1 ``` where pts 0 is assigned to the runtime and pts 1 is assigned to the container fixes clearcontainers#158 Signed-off-by: Julio Montes <[email protected]>
devimc
pushed a commit
to devimc/runtime
that referenced
this issue
May 25, 2017
With this patch a new pts will be created when the console provided as argument is /dev/ptmx. Runtime stdout and stdin will be forwarded to the master fd and then to the slave, something like this: ``` /dev/pts/0 <--> master <--> /dev/pts/1 ``` where pts 0 is assigned to the runtime and pts 1 is assigned to the container fixes clearcontainers#158 Signed-off-by: Julio Montes <[email protected]>
closing this issue because we can't support |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
command
current output:
expected output:
the issue is that terminal is already the controlling terminal of a different session group, to allow spawned process use assigned terminal we have to steal it form the session group (TIOCSCTTY with arg=1)
The text was updated successfully, but these errors were encountered: