https://dianakang.tistory.com/63 [Microsoft Azure AutoML 핸즈온] Azure Machine Learning에서 자동화된 기계 학습 사용 안녕하세요. 오늘은 Azure Machine Learning로 자동화된 기계 학습(Auto ML)을 사용하는 방법에 대해 알아보겠습니다. 아래의 문서를 참고하여 작성하였습니다. https://docs.microsoft.com/ko-kr/learn/paths/cr.. dianakang.tistory.com
LINUX locate, find + exec 옵션과 file 명령어
·
System Engineering/리눅스, 라즈베리파이
검색 locate - 명령어 형식 : locate 파일명 - 목록 데이터베이스를 주기적으로 갱신해줘야 함 - 이름을 기반으로 검색 locate 사용을 위한 데이터베이스 목록 패키지 다운로드 # sudo yum -y install mlocate locate 데이터베이스 업데이트 # updatedb locate 명령어 사용 # locate fileA 결과) /root/fileA /root/hard_fileA /root/soft_fileA 최상위 디렉토리 하단에 위치한 이름에 file 이라는 단어가 들어가는 모든 파일 중 30k 이상 50k 이하 파일을 검색 # find / -name "*file*" -size +30k -size -50k 최상위 디렉토리 하단에 위치한 이름에 file 이라는 단어가 들어가는 ..
nginx 멀티 도메인
·
System Engineering
https://scshim.tistory.com/303 [Nginx] 멀티 도메인 지원하기 멀티 도메인 지원하기 하나의 서버에서 여러 개의 도메인을 지원해야하는 경우가 있다. 예를 들어 홈페이지, 관리자페이지를 서로 다른 도메인으로, 하나의 서버에서 지원하는 경우가 있을 것 scshim.tistory.com https://livlikwav.github.io/study/NGINX-inside/#%EA%B2%B0%EB%A1%A0 NGINX 내부 구조 이해하기: 동시 연결 수와 이벤트 주도 설계 Apache와 NGINX의 차이, concurrent connections를 위한 event-driven architecture와 non-blocking I/O livlikwav.github.io https://don..