Linux 계정 UID, GID 변경
안녕하세요! 오늘은 리눅스 계정의 UID와 GID를 변경해 보도록 하겠습니다. 계정 생성 테스트 계정을 추가하였고 test의 uid와 gid는 모두 1001입니다. 계정 생성 시 별도의 지정이 없었기 때문에 1001으로 생성되었습니다. uid 변경 [root@localhost ~]# usermod -u 3000 test [root@localhost ~]# id test uid=3000(test) gid=1001(test) groups=1001(test) usermod 명령어로 uid를 변경하였습니다. gid 변경 [root@localhost ~]# gruopmod -g 3000 test [root@localhost ~]# id test uid=3000(test) gid=3000(test) groups=1..