요약find / -user [사용자] -type d이슈도커 이미지를 만드는 과정에서 특정 사용자 소유의 폴더를 찾아 권한을 변경해야하는 작업이 필요했다.해결# 루트 "/" 경로에서 "haproxy" 사용자 소유의 디렉토리 검색 find / -user haproxy -type d # 소유자 변경 find / -user haproxy -exec chown new-user '{}' \;참고https://server-talk.tistory.com/20https://stackoverflow.com/questions/22462124/find-command-in-bash-script-resulting-in-no-such-file-or-directory-error-only
Loading Comments...