質問:

質問:

私は次のことをしました。

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

おすすめ記事