문제 상세보기
문제 정보

문제 ID: 691518

카테고리: 리눅스마스터 1급

강의: 미분류

키워드: 없음

문제
다음의 시스템보안을 위한 점검방법이 순서대로 알맞게 나열된 것은?
정답을 선택하세요
1 # find / -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \;# find / -type f \( -perm -2 -o -perm -20 \) -exec ls -lg {} \;# find / -ctime -20 -type f -exec ls -l {} \;
2 # find / -type f \( -perm -002000 -o -perm -001000 \) -exec ls -lg {} \;# find / -type f \( -perm -2 -o -perm -20 \) -exec ls -lg {} \;# find / -ntime -20 -type f -exec ls -l {} \;
3 # find / -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \;# find / -type f \( -perm -1 -o -perm -10 \) -exec ls -lg {} \;# find / -ctime -20 -type f -exec ls -l {} \;
4 # find / -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \;# find / -type f \( -perm -2 -o -perm -20 \) -exec ls -lg {} \;# find / -ntime -20 -type f -exec ls -l {} \;
단일 문제
정답
1번 : # find / -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \;# find / -type f \( -perm -2 -o -perm -20 \) -exec ls -lg {} \;# find / -ctime -20 -type f -exec ls -l {} \;
해설

이 문제의 정답은 1번입니다. 리눅스마스터 1급 영역에서 자주 출제되는 유형으로, 각 보기를 비교하며 핵심 개념을 정리해 두면 유사 문제에 충분히 대비할 수 있습니다. 상세 해설은 순차적으로 보강하고 있습니다.