■ 작업순서 # step01. 신규 그룹 생성 CMD] groupadd -g 2025 uenters # step02. 신규 계정 생성 CMD] useradd -d /home/uenter -m uenter -u 2025 -g uenters -s /bin/bash# step03. 비번(password) 등록 CMD] passwd uenterUenters123! # step04. sudo 명령어 사용 설정CMD] vi /etc/sudoers------------ADD-----------uenter ALL=(ALL) ALL#uenter ALL=(ALL) NOPASSWD: ALL...Defaults timestamp_timeout=1200...%wheel ALL=(ALL) ALL-------..