네임스페이스에서 실제 PID 1을 PID 1로 사용

네임스페이스에서 실제 PID 1을 PID 1로 사용

Linux PID 네임스페이스의 경우 실제 PID 1 프로세스(동일한 실행 파일 아님)가 있습니까?반품PID 네임스페이스에서 PID 1로 작동하시겠습니까?

답변1

보지 못함 man 7 pid_namespaces:

The namespace init process
  The first process created in a new namespace (i.e., the process created
  using clone(2) with the CLONE_NEWPID flag, or the first  child  created
  by  a  process  after a call to unshare(2) using the CLONE_NEWPID flag)
  has the PID 1, and  is  the  "init"  process  for  the  namespace  (see
  init(1)).

새 pid 네임스페이스의 프로세스는 항상 새 프로세스에서 생성되므로 기존 프로세스를 새 pid 네임스페이스의 프로세스로 pid = 1만들 수 없습니다 .init

관련 정보