BackEnd/Linux (2) 썸네일형 리스트형 [#Linux] yum lock 오류 해결 방법 Another app is currently holding the yum lock; waiting for it to exit . . . 오류 해결 방법 yum 을 이용해 작업을 하는 도중 Stop 후 다시 yum 을 사용하게 되면 아래와 같은 오류가 발생할 가능성이 있습니다. 해결방법 1) 작업 목록 확인: ps -ef | grep yum 2) 목록에서 죽이기: $ sudo kill -9 3567 Linux 기초 명령어 find / cat / grep / whereis / which 명령어 find 명령어 find 검색조건에 맞는 파일을 지정한 위치에서 찾는 것을 말한다. -name: 파일 이름으로 검색 -type: 파일 타입은 ~다. -user: 로그인 아이디 소유주 대상(root, centos) ex: -user centos -perm: 지정한 접근 권한과 일치하는 파일 검색 -exec: 명령어를 수행하라는 뜻 -exec cp {} ; #echo "명령어 옵션 확인" find -help #echo "/usr directory에서 ls라는 이름을 가진 파일을 찾기" find /usr -name ls find /usr -name service find . -type f -name 'servic*' -print #echo "현재 directory에서 파일을 찾는데, 비어있는 모든 이름.. 이전 1 다음