본문 바로가기

전체 글

(77)
Ubuntu, system program problem detected 알림 끄기 Ubuntu 사용 중 아래와 같이 problem report 알림을 끄고자 할 경우 아래의 방법 중 하나를 사용. 1. crash 리스트 삭제 sudo rm /var/crash/* 2. 서비스 종료 sudo systemctl disable apport #재시작 #sudo systemctl enable apport 출처 https://askubuntu.com/questions/1160113/system-program-problem-detected System program problem detected? I keep getting, since several days, "System program problem detected" error message: I always clicked on Report pr..
sudo apt update NO_PUBKEY 에러 sudo apt update 를 입력했을때 아래와 같이 NO_PUBKEY warning 출력 시 아래 command 입력. 키는 출력된 warning 에서 확인되는 NO_PUBKEY B53DC80D13EDEF05 이다. sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 키 출처 https://askubuntu.com/questions/13065/how-do-i-fix-the-gpg-error-no-pubkey
kubernetes, helm, gpu monitoring 명령어 정리 gpu operator helm repository helm repo add nvidia https://helm.ngc.nvidia.com/nvidia \ && helm repo update helm install gpu operator helm install --wait --generate-name \ -n gpu-operator --create-namespace nvidia/gpu-operator --set driver.enabled=false helm delete gpu operator helm ls -n gpu-operator helm delete -n gpu-operator gpu-operator-1675669830 helm custom gpu monitor https://grafana.com/..
Ubuntu, kubernetes, nvidia gpu monitoring 정리 Ubuntu 20.04 containerd 를 kubernetes cri로 사용 helm, prometheus, grafana 사용 1. nvidia-container-toolkit 설치 (master node, worker node 모두 작업) distribution=$(. /etc/os-release;echo $ID$VERSION_ID) curl -s -L https://nvidia.github.io/libnvidia-container/gpgkey | sudo apt-key add - curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.list | sudo tee /etc/apt/sources..
Ubuntu, Uxplay 사용 screen mirroring 정리 Ubuntu 20.04 Iphone SE2, MacBook Pro에서 테스트 참고한 글: https://github.com/antimof/UxPlay GitHub - antimof/UxPlay: AirPlay Unix mirroring server AirPlay Unix mirroring server. Contribute to antimof/UxPlay development by creating an account on GitHub. github.com https://www.initpals.com/linux/screen-mirror-ipad-or-iphone-screen-airplay-with-linux-desktop/ Screen Mirror iPad or iPhone Screen (AirPlay) W..
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..