학습/시스템
[리눅스] sudo 명령어 사용을 위한 wheel group에 사용자 추가
son1004007
2024. 11. 6. 16:57
[root@localhost ksson]# grep wheel /etc/group
wheel:x:10:
[root@localhost ksson]# usermod -G wheel ksson
[root@localhost ksson]# grep wheel /etc/group
wheel:x:10:ksson
[root@localhost ksson]#