질문:

질문:

나는 다음을 수행했습니다.

useradd -d /home/iauser -m -s /bin/bash -c "IA User" iauser

다음 오류가 발생했습니다.

UX: useradd: ERROR: Create home directory failed. Operation not applicable

passwd에 항목을 생성합니다.

iauser:x:101:10:User:/home/iauser:/bin/bash 

/homeSolaris에서는 자동 설치 프로그램에서 사용하기 때문에 사용할 수 없습니다 .

질문:

나는 이것을 할 수 있습니까?

userdel iauser 

아니요디렉터리를 삭제하시겠습니까 /home?

답변1

userdel에 옵션을 제공 하지 않으면 -r홈 디렉터리를 삭제하면 안 됩니다.

SYNOPSIS
     userdel [-r] login
...    
OPTIONS
     The following options are supported:

     -r       Remove the user's home directory from  the  system.
              This  directory  must  exist.  The files and direc-
              tories under the home directory will no  longer  be
              accessible  following  successful  execution of the
              command.

-r옵션은 대괄호 안에 표시되어 선택적 플래그임을 나타냅니다.

Oracle 매뉴얼 페이지 섹션 1M: 시스템 관리 명령: userdel

답변2

귀하의 질문에 답변이 있을 것 같습니다(또는 편집되었습니까?).

/home은 일반적으로 자동 마운트되므로 디렉터리를 생성할 수 없습니다.

관련 정보