1 / 39

사용자 관리

7 장. 사용자 관리. 학습 내용. 사용자 정보를 저장하는 파일 사용자 관리 명령어 그룹 관리 및 명령어 솔라리스에 미리 정의된 사용자와 그룹 사용자에 관련된 추가 파일. 사용자 정보를 저장하는 파일. /etc/passwd 파일 사용자에 관련된 기본 정보 저장 /etc/shadow 파일 사용자의 패스워드에 관련된 정보 저장 /etc/group 파일 사용자가 소속된 그룹에 관련된 정보 저장. 사용자 정보를 저장하는 파일. /etc/passwd 파일. 사용자 정보를 저장하는 파일.

Télécharger la présentation

사용자 관리

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 7장 사용자 관리 뇌를 자극하는 Solaris Bible

  2. 학습 내용 • 사용자 정보를 저장하는 파일 • 사용자 관리 명령어 • 그룹 관리 및 명령어 • 솔라리스에 미리 정의된 사용자와 그룹 • 사용자에 관련된 추가 파일 뇌를 자극하는 Solaris Bible

  3. 사용자 정보를 저장하는 파일 • /etc/passwd 파일 • 사용자에 관련된 기본 정보 저장 • /etc/shadow 파일 • 사용자의 패스워드에 관련된 정보 저장 • /etc/group 파일 • 사용자가 소속된 그룹에 관련된 정보 저장 뇌를 자극하는 Solaris Bible

  4. 사용자 정보를 저장하는 파일 • /etc/passwd 파일 뇌를 자극하는 Solaris Bible

  5. 사용자 정보를 저장하는 파일 • /etc/shadow 파일 뇌를 자극하는 Solaris Bible

  6. 사용자 정보를 저장하는 파일 • /etc/group 파일 뇌를 자극하는 Solaris Bible

  7. 사용자 관리 명령어 • useradd (USER ADDition) • 새로운 사용자를 시스템에 추가 • 실행 형식 • useradd [-c comment] [-d home_directory] [-e expire] [-f inactive] [-g group] [-G group,[groups]] [-m [-k skel_directory]] [-s shell_directory] [-u UID [-o]] usernamd • useradd –D [-b base_directory] [-e expire] [-f inactive] [-g group] 뇌를 자극하는 Solaris Bible

  8. 사용자 관리 명령어 • useradd (USER ADDition) 뇌를 자극하는 Solaris Bible

  9. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  10. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  11. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  12. 사용자 관리 명령어 • useradd (USER ADDition) 뇌를 자극하는 Solaris Bible

  13. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  14. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  15. 사용자 관리 명령어 • useradd 뇌를 자극하는 Solaris Bible

  16. 사용자 관리 명령어 • passwd (PASSWorD) • 자신 또는 다른 사용자의 패스워드를 만들거나 변경 • 다른 사용자의 패스워드를 변경하는 것은 root 사용자만 가능 • 실행 형식 • passwd [-e] [-g] [-h] [-l|-d] [-f] [-n min] [-w warn] [-x max] [username] 뇌를 자극하는 Solaris Bible

  17. 사용자 관리 명령어 • passwd (PASSWorD) 뇌를 자극하는 Solaris Bible

  18. 사용자 관리 명령어 • passwd (PASSWorD) 뇌를 자극하는 Solaris Bible

  19. 사용자 관리 명령어 • usermod (USER MODification) • 기존 사용자의 정보를 변경 • 실행 형식 • usermod [-c comment] [-d home_directory] [-e expire] [-f inactive] [-g group] [-G group,[groups]] [-l newloginname] [-m] [-s shell_directory] [-u UID [-o]] usernamd 뇌를 자극하는 Solaris Bible

  20. 사용자 관리 명령어 • usermod (USER MODification) 뇌를 자극하는 Solaris Bible

  21. 사용자 관리 명령어 • usermod (USER MODification) 뇌를 자극하는 Solaris Bible

  22. 사용자 관리 명령어 • pwconv (PassWord CONVersion) • 사용자 정보를 저장하는 /etc/passwd 파일을 기준으로 사용자 패스워드를 저장하는 /etc/shadow 파일의 내용을 변경 • /etc/passwd 파일의 백업 파일인 /etc/opasswd 파일을 업데이트 • /etc/shadow 파일의 백업 파일인 /etc/oshadow 파일을 업데이트 • 실행 형식 • pwconv 뇌를 자극하는 Solaris Bible

  23. 사용자 관리 명령어 • pwconv (PassWord CONVersion) 뇌를 자극하는 Solaris Bible

  24. 사용자 관리 명령어 • pwconv (PassWord CONVersion) 뇌를 자극하는 Solaris Bible

  25. 사용자 관리 명령어 • userdel (USER DELetion) • 기존 사용자의 정보 삭제 • 실행 형식 • userdel [-r] usernamd 뇌를 자극하는 Solaris Bible

  26. 사용자 관리 명령어 • userdel (USER DELetion) 뇌를 자극하는 Solaris Bible

  27. 사용자 관리 명령어 • edquota (EDit QUOTA) • 사용자가 쓸 수 있는 하드 디스크의 최대치를 EDITOR 변수로 지정된 에디터를 사용하여 설정 • 실행 형식 • edquota [-p proto_username] username [usernames] • edquota –ttime 뇌를 자극하는 Solaris Bible

  28. 사용자 관리 명령어 • edquota (EDit QUOTA) 설정값을 변경 뇌를 자극하는 Solaris Bible

  29. 그룹 관리 및 명령어 • groupadd (GROUP ADDition) • 새로운 그룹을 추가 • 실행 형식 • groupadd [-g GID -o]] groupname 뇌를 자극하는 Solaris Bible

  30. 그룹 관리 및 명령어 • groupmod (GROUP MODification) • 기존의 그룹 정보 변경 • 실행 형식 • groupmod [-g GID -o]] [-n newgroupname] groupname 뇌를 자극하는 Solaris Bible

  31. 그룹 관리 및 명령어 • groupdel (GROUP DELetion) • 기존 그룹 삭제 • 실행 형식 • groupdel groupname 뇌를 자극하는 Solaris Bible

  32. 그룹 관리 및 명령어 • groups (GROUPS) • 사용자가 소속된 모든 그룹 이름 출력 • 실행 형식 • groups [usernames] 뇌를 자극하는 Solaris Bible

  33. 솔라리스에 미리 정의된 사용자와 그룹 • 중요한 사용자 뇌를 자극하는 Solaris Bible

  34. 솔라리스에 미리 정의된 사용자와 그룹 • 중요한그룹 뇌를 자극하는 Solaris Bible

  35. 사용자에 관련된 추가 파일 • 초기화 파일과 템플릿 파일 • /etc/skel 디렉토리에 셸 초기화 파일의 템플릿이 저장 • root 사용자가 /etc/skel 디렉토리에 추가하거나 변경한 셸 초기화 파일은 새로운 사용자가 추가될 때 해당 사용자의 홈 디렉토리로 복사 • /etc/default/passwd • 시스템에 정의된 모든 사용자에게 기본으로 사용된 패스워드 에이징 설정 파일 • /etc/shadow 파일에 설정된 값이 우선 적용 • /etc/default/login • 사용자 로그인에 관련된 설정 파일 뇌를 자극하는 Solaris Bible

  36. 사용자에 관련된 추가 파일 • /etc/default/passwd 뇌를 자극하는 Solaris Bible

  37. 사용자에 관련된 추가 파일 • /etc/default/passwd 뇌를 자극하는 Solaris Bible

  38. 사용자에 관련된 추가 파일 • /etc/default/login 뇌를 자극하는 Solaris Bible

  39. 이것만은 알고 갑시다. • 사용자와 그룹의 정보를 저장하는 파일과 명령어 뇌를 자극하는 Solaris Bible

More Related