본문 바로가기

ubuntu14

하드 디스크 병목으로 인한 CPU 사용량 저하 확인 환경CPU: Intel i9 11900GPU: NVIDIA 3090 24GBMemory: 64GBOS: Ubuntu 22.04Python: Python 3.9  Pytorch Dataloader를 사용하여 batch 로 inference 결과별 이미지 저장을 하던 중 CPU 사용률이 하락하는 현상Jupyter, Nvidia 세팅 등을 확인한 결과 하드디스크 병목(쓰기)으로 인한 CPU 강제 휴무 상태로 확인  하드 디스크를 iostat으로 확인한 결과,하드 디스크(가장 하단) 의 %util (가장 우측 칼럼)의 수치가 100에 근접하거나 초과하는 것을 확인또한, 가장 상단의 %iowait 수치와 %idle 수치를 통해서도 확인 iostat 설치 및 모니터링 command1. iostat 설치 sudo a.. 2024. 5. 23.
Yolov9 Jupyter에서 돌려보기 환경CPU: AMD 5900xGPU: AMD RX 7900xtx 24GBMemory: 128GBOS: Ubuntu 20.04GPU Driver: ROCm 6.0.2Python: Python 3.9 공식 문서https://docs.ultralytics.com/models/yolov9/#conclusion YOLOv9Discover YOLOv9, the latest addition to the real-time object detection arsenal, leveraging Programmable Gradient Information and GELAN architecture for unparalleled performance.docs.ultralytics.com  1. Install Ultralytics .. 2024. 5. 15.
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.. 2023. 8. 5.
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 2023. 8. 5.
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.. 2023. 1. 23.
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.. 2022. 12. 31.