본문 바로가기

전체 글

(69)
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..
잡다한 팁 우분투 cpu 전원모드 설정 gui https://github.com/vagnum08/cpupower-gui GitHub - vagnum08/cpupower-gui: cpupower-gui is a graphical program that is used to change the scaling frequency limits of the c cpupower-gui is a graphical program that is used to change the scaling frequency limits of the cpu, similar to cpupower. - GitHub - vagnum08/cpupower-gui: cpupower-gui is a graphical program that i... github...
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..