포트 80에서 실행 중인 웹 서버나 다른 서비스
sudo lsof -i :80
'test' 라는 이름의 디렉터리 검색
find / -name test -type d
'test' 라는 이름의 파일 검색
find / -name test -type f
test라는 이름을 가진 파일 중, '실행 파일'을 검색
which test
test로 '시작하는' 모든 파일 및 디렉토리를 검색
find / -name "test*"
최상위 경로 밑에 있는 test로 시작하는 모든 파일 및 디렉토리를 검색과 동시에 삭제
find / -name "test*" -exec rm {} \;
보기
cat /var/file.log
pid 확인
ps -ef | grep java
pid 종료
kill -9 [확인한pid값]
https://stackoverflow.com/questions/32360632/gradle-build-gets-stuck-at-executing-tasks-appgeneratedebugsources-appgen
sudo yum install -y libstdc++ zlib
출처
Linux - 리눅스 cd 명령어 사용법 [디렉토리 이동]
출처: https://backhero.tistory.com/17 [Back-End공부하는 Hero의 개발공부일기:티스토리]
[docker] 컨테이너(container) 실행(start) / 중지(stop) / 삭제(rm)
리눅스 파일 찾기 (파일 및 디렉토리 검색)
https://giron.tistory.com/68
https://code-algo.tistory.com/41
Back-end공부하는 Hero의 개발공부일기:티스토리