admin

WireGuard VPN 설치

1. debian 13에서 wireguard 설치 및 확인 apt update apt install wireguard qrencode -y modprobe wireguard lsmod | grep wireguard2. 서버 및 클라이언트 키 생성 umask 077 wg genkey | tee /etc/wireguard/server_private.key | wg pubkey > /etc/wireguard/server_public.key cat /etc/wireguard/server_private.key cat /etc/wireguard/server_public.key wg genkey | tee /etc/wireguard/client_private.key | wg pubkey > /etc/wireguard/client_public.key cat /etc/wireguard/client_private.key cat /etc/wireguard/client_public.key3. […]

WireGuard VPN 설치 더 읽기"

SiHAS 제품+Home Assistant 통합

1. SiHAS 앱에서 HA 활성화 해당 장치의 “설정 속성” > 장치 정보 > 로컬통신설정(ST/HA) > 활성화2. HACS에 SiHAS 레포지터리 설치 ■HACS > ⋮ > Custom repositories > Repository: https://github.com/cmsong-shina/sihas-canary Type: Integration ■”ADD” 버튼 클릭 정상적으로 추가되면 Custom component for SiHAS Wi-Fi device가 목록에 추가되어 있다.3. SiHAS 설치 HACS에서 아래를 설치 Custom component for SiHAS Wi-Fi

SiHAS 제품+Home Assistant 통합 더 읽기"

NFS Mount (Debian)

■서버 커널에 NFS 서버 지원 기능이 있는지 확인grep NFSD /boot/config-`uname -r`■NFS 서버 설치 apt -y install nfs-kernel-server rpcbind■rpcbindrpcbind는 기본적으로 127.0.0.1(localhost)에서만 NFS 연결 시도를 수신하도록 설정되어 있으므로, 로컬 네트워크에서의 연결을 허용하려면 /etc/default/rpcbind 파일을 편집하여 “OPTIONS” 줄을 주석 처리해야 합니다. 또한, /etc/hosts.allow 파일에서 rpcbind 포트로의 연결을 허용해야 한다. perl -pi -e ‘s/^OPTIONS/#OPTIONS/’ /etc/default/rpcbind echo “rpcbind: 192.168.1.” >>

NFS Mount (Debian) 더 읽기"

Visual Studio Offline 패키지 만들기

1. 아래 사이트에서 설치 프로그램 다운로드https://visualstudio.microsoft.com/ko/downloads/2. 다운로드 받은 VisualStudioSetup.exe를 아래와 같이 실행VisualStudioSetup.exe ^–layout C:\VS2026_Community_Offline_installer ^–lang ko-KR ^–add “Microsoft.VisualStudio.Component.CoreEditor” ^–add “Microsoft.VisualStudio.Workload.CoreEditor” ^–add “Microsoft.VisualStudio.Component.Roslyn.Compiler” ^–add “Microsoft.Component.MSBuild” ^–add “Microsoft.VisualStudio.Component.Roslyn.LanguageServices” ^–add “Microsoft.VisualStudio.Component.TextTemplating” ^–add “Microsoft.VisualStudio.Component.NuGet” ^–add “Microsoft.VisualStudio.Component.DiagnosticTools” ^–add “Microsoft.VisualStudio.Component.IntelliCode” ^–add “ComponentGroup.Microsoft.NET.AppModernization” ^–add “Microsoft.VisualStudio.Component.Debugger.JustInTime” ^–add “Microsoft.VisualStudio.Component.VC.CoreIde” ^–add “Microsoft.VisualStudio.Component.VC.14.44.17.14.x86.x64” ^–add “Microsoft.VisualStudio.Component.VC.Tools.x86.x64” ^–add “Microsoft.VisualStudio.Component.Graphics.Tools” ^–add “Microsoft.VisualStudio.Component.VC.DiagnosticTools” ^–add “Microsoft.VisualStudio.Component.Windows11SDK.26100” ^–add “Microsoft.VisualStudio.Component.VC.14.44.17.14.ATL” ^–add “Microsoft.VisualStudio.Component.VC.ATL” ^–add

Visual Studio Offline 패키지 만들기 더 읽기"

OpenText Fortify SourceAnalyzer로 Swift 코드 분석하기

OpenText Fortify의 sourceanalyzer를 사용하여 Swift 프로젝트를 분석하는 방법을 설명드립니다. Swift 분석은 다른 언어와 약간 다른 접근이 필요합니다. 1. 필수 준비 사항 2. 기본 분석 방법 방법 1: 직접 컴파일 명령 사용 bash sourceanalyzer -b MySwiftProject swiftc -emit-object MyFile.swift 방법 2: Xcode 프로젝트 분석 bash sourceanalyzer -b MySwiftProject xcodebuild -workspace MyProject.xcworkspace -scheme MyScheme 3. Swift Package Manager(SPM)

OpenText Fortify SourceAnalyzer로 Swift 코드 분석하기 더 읽기"

OpenText Fortify SourceAnalyzer를 사용하여 Visual C/C++ 코드 분석하기

OpenText Fortify의 sourceanalyzer를 사용하여 Visual C/C++ 프로젝트를 분석하는 방법을 단계별로 설명드립니다. 1. 필수 준비 사항 2. 기본 분석 명령어 bash sourceanalyzer -b <빌드ID> <컴파일러명> <컴파일옵션> <소스파일> 예시: bash sourceanalyzer -b MyProject cl /c /EHsc myfile.cpp 3. Visual Studio 프로젝트 분석 방법 방법 1: 명령줄에서 직접 컴파일 bash sourceanalyzer -b MyProject -clean sourceanalyzer -b MyProject msbuild MyProject.sln

OpenText Fortify SourceAnalyzer를 사용하여 Visual C/C++ 코드 분석하기 더 읽기"

Fortify→opentext 제품명 변경

이전 이름 새로운 이름 Fortify Static Code Analyzer OpenText™ Static Application Security Testing (OpenText SAST) Fortify Software Security Center OpenText™ Application Security Fortify WebInspect OpenText™ Dynamic Application Security Testing (OpenText DAST) Fortify on Demand OpenText™ Core Application Security Debricked OpenText™ Core Software Composition Analysis (OpenText Core SCA) Fortify Applications and Tools OpenText™ Application Security Tools

Fortify→opentext 제품명 변경 더 읽기"

HAOS에 SFTP 접속

1. 홈어시스턴트 > 설정 > 애드온 > Advanced SSH & Web Terminal 설치 2.ssh 키 생성  ssh-keygen -t rsa -b 4096 -q -N “” -f id_rsa 3.ssh-keygen 인증서를 PuTTY 인증서로 변환  PUTTYGEN.EXE 실행    Conversions > import Key > “id_rsa” 선택      Save private key > id_rsa.ppk 4.Advanced SSH & Web Terminal에 설정에 id_rsa.pub

HAOS에 SFTP 접속 더 읽기"

[BitLocker] TPM 오류 무시

gpedit.msc컴퓨터 구성→관리 템플릿→Windows 구성 요소→BitLocker 드라이브 암호화→운영 체제 드라이브시작 시 추가 인증 요구: 사용호환 TPM이 없는 BitLocker 허용TPM 시작 구성: TPM 허용TPM 시작 PIN 구성: TPM과 함께 시작 PIN 허용TPM 시작 키 구성: TPM과 함께 시작 키 허용TPM 시작 키 및 PIN 구성: TPM과 함께 시작 키 및 PIN 허용—–gpupdate.exe /force

[BitLocker] TPM 오류 무시 더 읽기"

[NextCloud] 추가 설정

1.기본 설정 (/var/www/nextcloud/config/config.php) # 외부에서 NextCloud로 접속하는 신뢰하는 주소 ‘trusted_domains’ => array ( 0 => ‘cloud.mydomain.com’, ), ‘datadirectory’ => ‘/var/www/cloud.mydomain.com/nextcloud/data’, ‘dbtype’ => ‘mysql’, ‘version’ => ‘32.0.0.13’, ‘overwrite.cli.url’ => ‘https://cloud.mydomain.com/nextcloud’, ‘dbname’ => ‘<DB name>’, ‘dbhost’ => ‘127.0.0.1’, ‘dbtableprefix’ => ‘oc_’, ‘mysql.utf8mb4’ => true, ‘dbuser’ => ‘<DB ID>’, ‘dbpassword’ => ‘<DB Password>’, ‘installed’ => true, ‘defaultapp’ =>

[NextCloud] 추가 설정 더 읽기"

[Home Assistant] elax46의 Custom brand icons 설치

https://github.com/elax46/custom-brand-icons 1. custom-brand-icons.js 파일을 /homeassistant/www/community/custom-brand-icons 에 복사 2. configuration.yaml에 아래를 추가lovelace:  mode: yaml  resources:    – url: /hacsfiles/button-card/button-card.js      type: module    – url: /local/community/custom-brand-icons/custom-brand-icons.js      type: js 3. Home Assistant 재 시작

[Home Assistant] elax46의 Custom brand icons 설치 더 읽기"

위로 스크롤