윈도우에 Docker Desktop 설치 후 도커 컨테이너를 실행하기 위해 image를 docker 명령으로 받으면 C드라이브의 용량을 차지함.큰 용량의 이미지 사용을 위해 D드라이브 설치가 필요했음. Docker Desktop 설치파일 다운로드https://www.docker.com/products/docker-desktop/ Docker Desktop: The #1 Containerization Tool for Developers | DockerDocker Desktop is collaborative containerization software for developers. Get started and download Docker Desktop today on Mac, Windows, or Linux..
반응형
Tools
사전 작업 : docker 설치https://www.docker.com/products/docker-desktop/ Docker Desktop: The #1 Containerization Tool for Developers | DockerDocker Desktop is collaborative containerization software for developers. Get started and download Docker Desktop today on Mac, Windows, or Linux.www.docker.com openstreetmap-tile-server 설치 가이드 : https://hub.docker.com/r/overv/openstreetmap-tile-server https://hu..
유용한 Json 관련 사이트 추천https://tool-zip.com/tool/jsonFormatter Tool ZIPA collection of useful toolstool-zip.com Json Fomatterjson 포멧으로 정렬해줌 Json Compressor반대로 정렬된 json을 한줄로 압축해줌. (공백 제거 안됨) Json AnalyzerJson 값, 길이 등 분석해줌. 그외 다양한 툴들도 많음! 끝.
아래 처럼 MobaXterm으로 ssh 접속시 로컬에 패스워드를 저장하고 저장된 패스워드가 뭔지 확인하거나 삭제하고 싶을 경우. 1. Settings > Configuration 2. General > MobaXterm passwords management Show Passwords, Delete selected 로 저장된 비밀번호를 확인하거나 삭제할 수 있음. 참고로컬에 패스워드 저장되는 파일{user home}\AppData\Roaming\MobaXterm\MobaXterm.ini Thank you!
노트패드로 로그 정리할 때 유용하게 사용했던 정규식. 전방 탐색특정 텍스트 앞의 모든 문자 탐색.+(?={yourword}) 예시1. 'example'이라는 텍스트 전방 탐색.+(?=example) 2. 정규식 표현에 사용되는 문자를 포함 하는 경우 전방 탐색 (ex. IP).+(?=127\.0\.0\.1) 후방 탐색특정 텍스트 뒤의 모든 문자 탐색(? 예시1. 'example'이라는 텍스트 후방 탐색(? 2. 뒤에 N글자 제외한 텍스트 후방 탐색 (ex. 2024xxxx 후방 탐색)(? 특정 단어 포함하지 않는 줄 전체 탐색.+(?={yourword}) 예시1. 'example'이라는 단어가 포함되지 않은 라인 전체 탐색.+(?=example) 끝.
유용한 Base64 인코딩 사이트https://tool-zip.com/tool/base64encoder Tool ZIPA collection of useful toolstool-zip.com 간편하게 웹상에서 Base64 인코딩을 실행 할 수 있음. 디코딩 사이트, Base128 도 있음. Base64 디코딩 사이트https://tool-zip.com/tool/base64decoder Tool ZIPA collection of useful toolstool-zip.com Base128 인코딩 사이트https://tool-zip.com/tool/base128encoder Tool ZIPA collection of useful toolstool-zip.com 끝.
Error대용량 파일 git push 시 아래와 같은 에러 발생git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags origin main:mainPOST git-receive-pack (chunked)remote: error: Trace: aeceddb3b4c7c5142e1618a5f8b26bfa13a3980ad802b5ffa38c6dc7995b1df5 remote: error: See https://gh.io/lfs for more information. remote: error: File yolov9/runs/train/exp10/weights/last.pt is 1..
파일 용량문제로 푸시에러가 발생하여 커밋을 되돌려야하는 상황 발생 git reset 명령어로 커밋 취소 가능 직전 커밋 되돌리기git reset --soft HEAD^ 푸시 사라짐. Thank you!
반응형