2024/12 13

Dockerfile 만들기

Dockerfile을 이용하면 images를 만들 수 있다.새로운 이미지를 만들거나 기존 이미지를 가져와 원하는 세팅값을 저장후 docker bulid하여 원하는 상태를 바로 images로 로드할 수 있다.Dockerfile은 이름 그대로 Dockerfile을 생성후 그안에 원하는 옵션을 넣어주면 된다.RUN : Shell Script 또는 명령을 실행FROM : Docker Base Image (기반이 되는 이미지, : 형식으로 설정)CMD : 컨테이너가 실행되었을 때 명령이 실행EXPOSE : 호스트와 연결할 포트 번호를 설정한다.ENV : 환경변수 설정ADD : 파일 / 디렉터리 추가COPY : 파일 복사ENTRYPOINT : 컨테이너가 시작되었을 때 스크립트 실행VOLUME : 볼륨 마운트USER..

Backend/도커 2024.12.30

remote: Support for password authentication was removed on August 13, 2021.remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of

비밀번호를 통한 인증은 이제 git에서 안된다고 한다.github ㅡ> Settings ㅡ> developer settings ㅡ> Personal access tokens ㅡ> Generate new token ㅡ> 권한 설정 후 토큰생성 ㅡ> 절대나가지말고 토큰 기록(1번밖에 못봄)그 이후 원래 과정으로 돌아가서 git push 이후 나오는 id, pw입력창에서 id는 그대로 적으면 되고 pw에 토큰을 넣어주면 된다.

에러모음 2024.12.30

pytorch docker + jupyter notebook

1.pytorch docker 파일 다운로드https://hub.docker.com/r/pytorch/pytorch https://hub.docker.com/r/pytorch/pytorch hub.docker.com 2.pytorch image에 jupyter 다운 후 commitpytorch 이미지파일로 컨테이너 생성 후 컨테이너에 접속하여 pip install jupyter.그 후 exit로 나온 뒤 commit.이런식으로 뒤에 -jupyter라고 추가하여 저장하면 편하다.그 후 기존의 이미지는 삭제해준다.3.새 이미지 파일로 컨테이너 생성후 접속docker run -itd --name 원하는이름 -v 마운트할경우입력 -p 8888:8888 --gpus all --restart=always pytor..

Backend/도커 2024.12.30

윈도우 원격데스크톱,RDP, 더블모니터, 작업표시줄 설정

윈도우 원격데스크톱(RDP) 연결시 디스플레이탭에서 모든 모니터을 원격 세션에 사용을 체크하면 원격사용에서도 더블모니터 사용이 가능하고전체 화면을 사용할 때 연결 표시줄 표시를 체크 해제하면 원격환경에서 마우스를 상단에 갖다대도 연결표시줄이 나타나지않는다. 연결표시줄 표시 단축키는 crtl + alt + home

잡다한것들 2024.12.27

Stable Diffusion : ComfyUI 설치 및 실습

https://github.com/comfyanonymous/ComfyUI GitHub - comfyanonymous/ComfyUI: The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interfaceThe most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface. - comfyanonymous/ComfyUIgithub.com 여기 접속 후 releases 들어가서 windows_portable 다운로드. 그 후 확장성을 위해 ComfyUI manager까지 설치한다.https://github.c..

프로젝트실습 2024.12.19

윈도우 원격데스크톱 포트번호 변경, rdp 포트번호 변경

윈도우 원격데스크톱(rdp)의 포트번호 3389는 매우 유명해서 해킹의 위험이 크다. 그래서 포트번호를 변경하려고 한다.1.실행(Win+R) - regedit(레지스트리 편집기) 실행2.컴퓨터\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp해당경로의 PortNumber 더블클릭3.Port번호를 10진수 체크 후 원하는 값으로 변경4.포트번호 바뀐것 확인5.실행(Win+R) - services.msc(서비스) 실행6.Remote Desktop Services 서비스 우킬릭 후 다시시작7.실행(Win+R) -cmd(명령 프롬프트) 실행 후 netstat -ano | findstr xxxxx(변경한포트..

설치및설정 2024.12.19