본문 바로가기

컴퓨터

(69)
Logitech keyboard, ubuntu, fn key 모드 변경 logitech 무선 키보드를 사용시,F1~F12 버튼이 기존 맵핑된 기능으로 연결되고fn 와 함께 눌러줘야 여느 키보드 처럼 동작하는 문제예시 - F5번 키를 누르면 새로고침이 되지 않고 바탕화면으로 빠짐 Solution:키보드의 ESC 키와 FN 키를 함께 누르면 모드가 변경됨
Ubuntu, AMD GPU, Ollama, open-webui setting Prerequisite - ROCm 6.3.0 이상 세팅 - AMD GPU 사용 참고https://youtu.be/Wjrdr0NU4Sk?si=gDCpm9T4ylqlqeax AMD GPU 용 Ollma를 세팅한 후 open-webui 로 chatgpt 처럼 사용 docker-compose.yml 생성 services: open-webui: image: 'ghcr.io/open-webui/open-webui:main' restart: always environment: OLLAMA_BASE_URL: "http://ollama:11434" #   compose up sudo docker compose up http://localhost:30000 으로 접속, 계정 생성  모델 추가..
Rustdesk 사용하기(relay server, ubuntu) https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/ Docker :: Documentation for RustDeskDocker Here is another good tutorial: Building Your Own Remote Desktop Solution: RustDesk Self-Hosted on Cloud with Docker (Hetzner) Install your own server with Docker Requirements You need to have Docker/Podman installed to run a rustdesk-server as a Docrustdesk.com  서버 세팅서버 port 열기  hbbr - 신..
하드 디스크 병목으로 인한 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..
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 ..
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/..