리눅스 계정 변경 usermod

1 개요[ | ]

리눅스 계정 변경 usermod[1]
/usr/sbin/usermod
  • 사용자 계정을 변경하는 리눅스 명령어

2 예시: 홈디렉토리 변경[ | ]

root@mylinux:~# cat /etc/passwd | grep testuser
testuser:x:1002:1002::/home/testuser:/bin/bash
root@mylinux:~# usermod -d /tmp testuser
root@mylinux:~# cat /etc/passwd | grep testuser
testuser:x:1002:1002::/tmp:/bin/bash

3 예시: 코멘트 변경[ | ]

root@mylinux:~# cat /etc/passwd | grep testuser
testuser:x:1002:1002::/home/testuser:/bin/bash
root@mylinux:~# usermod -c '테스트용 계정' testuser
root@mylinux:~# cat /etc/passwd | grep testuser
testuser:x:1002:1002:테스트용 계정:/home/testuser:/bin/bash

4 같이 보기[ | ]

5 참고[ | ]

  1. modify a user account
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}