관리자 권한으로 Powershell 실행하시길 바랍니다.SSHFS로 마운트 (WSL 사용)Windows의 net use가 SSH 키를 직접 지원하지 않으므로 WSL을 사용하여 SSHFS로 마운트하는 것이 더 확실한 방법입니다.1. WSL(Windows Subsystem for Linux) 설치wsl --install -d Ubuntu#(이미 설치되어 있다면 생략)이미 설치 되어 있다면 로그인 된 화면이 보입니다.설치를 진행한다면 사용할 계정 정보를 요구 하므로 자신이 기억하기 쉬운 것으로 입력합니다.1.1. WSL에서 SSHFS 설치sudo apt update && sudo apt -y upgrade && sudo apt install --reinstall fuse && sudo apt install -..
Server/Linux

* 2024/11/08 일 기준으로 작성 되었습니다.* 환경은 CentOS 7, MSSQL 2008 입니다. FreeTDS가 OpenSSL을 사용하는 경우도 있고 GnuTLS를 사용하는 경우도 있어서 오류 확인 및 설정 확인 내용을 포함하여 작성 되었습니다. tsql 명령으로 테스트시 Error 20002 (severity 9): Adaptive Server connection failed 오류 발생locale is "en_US.UTF-8"locale charset is "UTF-8"using default charset "UTF-8"Error 20002 (severity 9): Adaptive Server connection failedThere was a problem connecti..
service docker stop systemctl disable docker apt-get purge -y docker-engine docker docker.io docker-ce docker-ce-cli apt-get autoremove -y --purge docker-engine docker docker.io docker-ce #도커 관련 직접 삭제 # ubuntu # snap remove docker #find / -name "*docker*" -exec `rm -rf` {} + rm -rf /var/lib/docker /etc/docker rm /etc/apparmor.d/docker groupdel docker rm -rf /var/run/docker.sock
# 방법 1 apt install trash-cli trash-list trash-resotre # 방법 2 #add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" #apt-get update apt-get install testdisk 1. 파티션 선택 2. 파티션 종류 선택 3. 분석 4. image.dd 생성 5. testdisk image.dd 실행 How to Install TestDisk on Linux and Recover Deleted Files | DigitalOcean How to Install TestDisk on Linux and Recover Deleted Files | Digita..

1. apt-add-repository 가 없는 경우 설치 sudo apt -y install software-properties-common dirmngr apt-transport-https lsb-release ca-certificates 2. apt repository 등록 ( source list ) 출처 : Linux Software Repository for Microsoft Products | Microsoft Docs curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc sudo apt-add-repository https://packages.micro..
# 최신 버전은 grafana 와 연동시 문제가 될 수 있습니다. grafana 연동에 필요한 경우 5.0 혹은 5.4 버전 이용이 필요합니다. ( 2022-03-30 기준 ) # Server base : ubuntu 20.04 with docker ver : 6.0 출처 : 5 Installation from containers (zabbix.com) docker network create --subnet 172.20.0.0/16 --ip-range 172.20.240.0/20 zabbix-net docker run --name mysql-server -t \ -e MYSQL_DATABASE="zabbix" \ -e MYSQL_USER="user" \ -e MYSQL_PASSWORD="password"..