what does "bash:no job control in this shell” mean?

后端 未结 4 1137
感情败类
感情败类 2020-12-07 14:02

I think it\'s related to the parent process creating new subprocess and does not have tty. Can anyone explain the detail under the hood? i.e. the related working model of ba

4条回答
  •  旧巷少年郎
    2020-12-07 14:22

    I ran into a problem on my own embedded system and I got rid of the "no job control" error by running the getty process with "setsid", which according to its manpage starts a process with a new session id.

    Regards, Heiko

提交回复
热议问题