Saat kita menggunakan useradd
, apa perbedaan antara -d
dan -m
? Karena definisi keduanya terdengar mirip, yang bertanggung jawab untuk membuat direktori home.
Jawaban yang Diterima:
2 opsi tidak terlalu mirip, tetapi mereka dapat bekerja bersama. Jika Anda melihat halaman manual useradd
Anda akan menemukan yang berikut:
-d, --home-dir HOME_DIR
The new user will be created using HOME_DIR as the value for the user's login
directory. The default is to append the LOGIN name to BASE_DIR and use that as the
login directory name. The directory HOME_DIR does not have to exist but will not be
created if it is missing.
-m, --create-home
Create the user's home directory if it does not exist. The files and directories
contained in the skeleton directory (which can be defined with the -k option) will be
copied to the home directory.
By default, if this option is not specified and CREATE_HOME is not enabled, no home
directories are created.
-d
opsi hanya untuk mengatur di mana direktori home dari pengguna yang dibuat akan tetapi tidak akan membuatnya jika tidak ada. Sedangkan -m
opsi akan membuat direktori home yang disetel oleh -d
jika tidak ada.