본문 바로가기

컴퓨터 이야기55

새로운 HDD 또는 SSD ubuntu22.04에 Btrfs 로 포멧 및 마운트 방법 1. HDD 또는 SSD 확인아래 명령어로 새로운 HDD 및 SSD 가 인식되었는지 확인한다.$ sudo fdisk -l예를 들어 /dev/sdb 와 같이 새로운 디바이스가 보여야 한다. 2. 파티션 생성fdisk 명령어를 사용하여 새로운 파티션을 생성해야한다.25년 01월 시점 대부분 GPT 파티션 시스템을 사용할테니 해당 내용을 기준으로 생성한다.$ sudo fdisk /dev/sdb'g'를 입력하여 empty GPT 파티션 테이블 생성'n'(새 파티션 생성) → 'p'(주 파티션 선택) → 전체 디스크 사용시 나머지 옵션은 기본값 사용 → 'w'(변경사항 저장 및 종료)3. Btrfs로 포멧새로 파티션을 생성했으면 /dev/sdb1 이 생겼을 것이다.아래 명령어로 포멧을 진행한다$ sudo mkfs.. 2025. 1. 10.
VMware ESXi 7.x 방화벽 규칙 추가 방법 ESXi 의 경우 GUI 로 다 될것 같으면서도방화벽 규칙 추가의 경우에는 기존 rule 을 start / stop 하는것 외에는 rule 추가는 제한 되어 있다. 이전 방법으로는ESXi 6.x 버전에서는 편집 권한을 추가(# chmod 644 ...)하고 방화벽 규칙 자체를 수정(# vi ...)하면 되었었다.firewall rule path : /etc/vmware/firewall/service.xml 하지만, ESX 7.x 부터는편집 권한 추가 및 vi editor를 사용하여 file 자체 편집이 불가능하다. 자료를 조사해보니,service.xml 파일과 동일한 형식으로/etc/vmware/firewall/ 디렉터리에 rule 을 추가하면 가능한것으로 확인 된다. 내가 작업한 command 는 다음.. 2024. 12. 25.
docker container IP 확인 방법 docker 이것저것 네트워크 연결하다보면docker container 의 IP를 확인할 필요가 있을때가 있음 portainer 같은것을 셋팅해 놓았다면 필요없겠지만,command로만 확인이 필요할때가 있음. 아래 명령어를 사용하면 console에서 확인 가능함.$ docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name container_name 글자 대신에,본인의 container 의 이름을 써서 실행하면 확인할 수 있음 2024. 12. 18.
Docker - portainer 연동 관련 아래 링크를 참조하면 됨. 링크 : https://lemariva.com/blog/2019/10/portainer-managing-docker-engine-remotely Portainer: Managing Docker Engines remotely over TCP socket (TLS)This tutorial is about managing a Docker Engine remotely using Portainer connected to the protected Docker daemon socket (TCP:2376). By default, you manage Docker through a non-networked UNIX socket. But, if you want the Docker Engine to.. 2024. 7. 18.
PowerPC(ppc64le) AI 개발환경 구축 참고자료 (conda 기반) 링크 : IBM Watson Machine Learning Community Edition (WML-CE) and Open Cognitive Environment (Open-CE) — MIT Satori User Documentation documentation (mit-satori.github.io) IBM Watson Machine Learning Community Edition (WML-CE) and Open Cognitive Environment (Open-CE) — MIT Satori User Documentatio© Copyright 2024, MIT Satori Project.mit-satori.github.io 2024. 5. 8.
CUDA 설치 관련 CUDA 설치 CUDA 설치를 위해서는 CUDA 관련 검색어를 기반으로 검색하게 되는데, CUDA 옛날 버전을 설치하고 싶을때 의외로 접근성이 좋지 않음. CUDA archive 에 접속하면, 버전별로 다운로드가 가능함. CUDA - archive : https://developer.nvidia.com/cuda-toolkit-archive CUDA Toolkit Archive Previous releases of the CUDA Toolkit, GPU Computing SDK, documentation and developer drivers can be found using the links below. Please select the release you want from the list below, .. 2024. 1. 23.
반응형