1 . adduser : 계정생성시 비밀번호 까지 입력받으며 기본정보를 바로 입력. 홈 디렉토리 또한 자동으로 생성.
root# adduser tomcat Adding user `tomcat' ... Adding new group `tomcat' (1002) ... Adding new user `tomcat' (1002) with group `tomcat' ... Creating home directory `/home/tomcat' ... Copying files from `/etc/skel' ... Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully Changing the user information for tomcat Enter the new value, or press ENTER for the default Full Name []: Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] Y
2. useradd : 순수계정만 생성되며 홈디렉토리, 비밀번호 설정은 별도로 필요.
3. usermod : 계정의 Group, 홈디렉토리 등을 핸들링.
root# usermod -aG sudo tomcat
usermod -aG sudo