본문 바로가기
728x90
반응형

ubuntu19

[NVIDIA] In use by another client(프로세스 충돌) ERR 로그# nvidia-smi --gpu-resetThe following GPUs could not be reset: GPU 00000000:B8:00.0: In use by another client1 device is currently being used by one or more other processes (e.g., Fabric Manager, CUDA application, graphics application such as an X server, or a monitoring application such as another instance of nvidia-smi). Please first kill all processes using this device and all compute .. 2024. 10. 18.
[Ubuntu] PostgreSQL 수동 설치 컴파일 등에 필요한 기본 패키지들은 구성이 되있다고 가정하고 진행하겠다.PostgreSQL 파일 설치wget http://ftp.postgresql.org/pub/source/v12.1/postgresql-12.1.tar.gztar zxvf postgresql-12.1.tar.gzcd postgresql-12.1mkdir -p /APP/postgresql/data소스 컴파일 및 설치./configure --prefix=/APP/postgresql --with-python --without-python --without-readlinemake && make installDatabase Cluster 생성cd /APP/postgresql/bin./initdb -E utf-8 /APP/postgresql/da.. 2024. 8. 28.
[Ubuntu]K8s를 위한 VM 환경 구성(Docker Install) 1. OS 설치 후 기본 설정아래 설정은 모든 노드들에서 작업한다.패키지 설치$ sudo apt -y update$ sudo passwd root$ su -# apt -y install openssh-server vim net-toolsssh 설정# vi /etc/ssh/sshd_config34 PermitRootLogin yes // yes로 변경58 PasswordAuthentication yes // 주석해제# systemctl restart sshdhttps://estar987.tistory.com/135 [Ubuntu] HPC 설정Ubuntu에서 HPC 세팅하기서버 구성 masterubuntu : 192.168.207.80 node01ubuntu : 192.168.207.81 node02ubun.. 2024. 8. 9.
[Ubuntu]OS161 install OS161 install1. 필요한 스크립트 다운로드wget https://people.ece.ubc.ca/~os161/download/cs161-ubuntu-darwin.sh2. 스크립트 수정cat cs161-ubuntu-darwin.sh#/bin/bashSYS161="sys161-2.0.3"BINUTILS161="binutils-2.24+os161-2.1"GCC161="gcc-4.8.3+os161-2.1"GDB161="gdb-7.8+os161-2.1"#MIRROR=""MIRROR="" //주소 설정#echo '*** Updating appliance ***'#update50echo '*** Installing Ubuntu packages ***' // 주석 해제sudo apt-get -.. 2024. 5. 25.
[Ubuntu] 외부망 안되는 Ubuntu Sever 에 패키지 설치하기 외부망 통신이 안되는 서버에 패키지 설치고객사의 보안 정책에 따라 인터넷 통신이 안되는 곳들이 있다. 이러한 경우 Rockylinux의 경우 yum[dnf] , Ubuntu의 경우 apt 명령어를 사용할 수 없다. 이럴 때도 패키지를 설치를 해야하기 때문에 테스트 서버에서 환경을 구축한 후 tar 파일로 묶어서 설치하는 방법을 설명하려고 한다.1. Test 서버에서 패키지 설치# cd /var/cache/apt/archives# apt-get install nfs-server# ls2. 추가된 패키지 목록 확인 후 tar 파일로 파일 묶기# tar -cvf package.tar ./*.deb3. 설치할 서버에 파일 보내기scp 명령어로 보내기usb 등 디스크 활용고객사에 서버에 업로드 부탁하기등...상황.. 2024. 5. 13.
리눅스 우분투 설치 후 기본 설정 패키지 설치 $ sudo apt -y update $ sudo passwd root $ su - # apt -y install openssh-server vim net-tools ssh 설정 root 계정으로 ssh 접속하기 위한 설정 # vi /etc/ssh/sshd_config 34 PermitRootLogin yes // yes로 변경 58 PasswordAuthentication yes // 주석해제 # systemctl restart sshd 2024. 4. 1.
728x90
반응형