본문 바로가기

전체보기

(72)
Ubuntu, Kubernetes dashboard 정리 kubernetes 20.04 참고글: https://github.com/kubernetes/dashboard GitHub - kubernetes/dashboard: General-purpose web UI for Kubernetes clusters General-purpose web UI for Kubernetes clusters. Contribute to kubernetes/dashboard development by creating an account on GitHub. github.com https://github.com/kubernetes/dashboard/blob/master/docs/user/access-control/creating-sample-user.md GitHub - kubernet..
잡다한 팁 윈도우 설치 중 "네크워크에 연결" 건너뛰는 방법 #CMD 창 (Shift + F10)OOBE\BYPASSNROhttps://companysoso.com/%EC%9C%88%EB%8F%84%EC%9A%B011-%EC%84%A4%EC%B9%98-%EC%A4%91-%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%EC%97%90-%EC%97%B0%EA%B2%B0%EC%97%90%EC%84%9C-%EB%A8%B9%ED%86%B5%EB%90%A0-%EB%95%8C-%ED%95%B4/#google_vignette 윈도우11 설치 중 '네트워크에 연결'에서 먹통될 때 해결방법 사용설명서얼마 전 친구가 노트북을 새로 구입하고 윈도우11 설치를 하는데 중간에 문제가 생겼다고 연락이 왔다. 사실 나도 윈도..
Ubuntu, Kubernetes Metallb 설치 정리 2개의 ubuntu system으로 구성된 kubernetes cluster의 master node에 설치 1. Enable strict ARP mode kubectl get configmap kube-proxy -n kube-system -o yaml | \ sed -e "s/strictARP: false/strictARP: true/" | \ kubectl apply -f - -n kube-system 2. Install metallab by Manifest kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.7/config/manifests/metallb-native.yaml 3. namespace 확인 kubectl g..
Ubuntu, Kubernetes Cluster 구성 정리 Ubuntu system 두 대를 활용해서 Kubernetes Cluster 구성 Kubernetes, containerd, calico 로 구성 1. 호스트 등록 (master node에서만 수행) /etc/hosts 에 내부 ip주소와 username 입력 # sudo nano /etc/hosts 192.168.1.173 master 192.168.1.174 worker1 2. swap off (모든 node에서 수행) sudo swapoff -a sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab 3. kernel modul load 저장 (모든 node에서 수행) sudo tee /etc/modules-load.d/containerd.conf unable t..
Ubuntu, 마우스 드래그 이상, display_server_not_supported 에러 정리 Ubuntu 22.04 Ubuntu 환경에서 언제부터인가 마우스 사용이 불편해짐 코드나 텍스트를 드래그 하면 실시간 드래그된 영역 표시가 아닌 클릭 버튼을 떼면 드래그 영역이 표시가 됨 은근 불편 또한 anydesk 를 셋업해서 접속하려니 display_server_not_supported 에러가 발생 두 문제를 함께 정리하는 이유는 xorg 세팅을 변경하자 둘 다 해결 참고 글 https://medium.com/@Dylan.Wang/how-to-fix-anydesk-of-display-server-not-supported-error-for-ubuntu-22-04-c98c44de89c0 How to Fix AnyDesk of Display_Server_Not_Supported Error for Ubunt..
Survival analysis 좋은 글 https://k-d-w.org/#posts Sebastian Pölsterl Post-Doctoral Researcher k-d-w.org http://www.sthda.com/english/wiki/cox-proportional-hazards-model Cox Proportional-Hazards Model - Easy Guides - Wiki - STHDA Statistical tools for data analysis and visualization www.sthda.com https://humboldt-wi.github.io/blog/research/information_systems_1920/group2_survivalanalysis/ Deep Learning for Survival Analy..
Ubuntu, ROCm, AMD GPU, Docker, Tensorflow, 환경에서 JAX 세팅 정리 Ubuntu 22.04 Radeon RX 6800 google-research에서 공개한 maxim 모델을 구동하려니 Tensorflow 기반의 JAX라는 GPU에 dependent한 연산 라이브러리 환경이 필요했다. Docker 기반 ROCm에 동작하는 JAX 환경 구축 정리 도커와 ROCm이 설치된 것을 가정 ROCm 개발자들이 도커에서 JAX를 build를 업데이트 하고 command을 안내하였지만 그대로 돌리면 build가 완료되지 않는다.(https://github.com/ROCmSoftwarePlatform/jax/tree/main/build/rocm) 디버깅 내용을 정리 1. git clone git clone https://github.com/ROCmSoftwarePlatform/jax.g..
Pytorch distributed launch watchdog timeout 에러 해결 [E ProcessGroupNCCL.cpp:587] [Rank 3] Watchdog caught collective operation timeout: WorkNCCL(OpType=ALLREDUCE, Timeout(ms)=1800000) ran for 1803170 milliseconds before timing out Ubuntu 20.04 BSRGAN, HAT 모델 학습 중 확인 https://github.com/cszn/BSRGAN GitHub - cszn/BSRGAN: Designing a Practical Degradation Model for Deep Blind Image Super-Resolution (ICCV, 2021) (PyTorch) - We Designing a Practical De..