OS

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 설치 더 읽기"

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) 더 읽기"

[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 오류 무시 더 읽기"

리눅스 사운드 제어

리눅스에서 사운드를 재생하기 위해서는 ALSA와 pulseaudio가 정상 동작 중이어야 한다. ■ALSA란?ALSA(Advanced Linux Sound Architecture)는 사운드 카드 장치 드라이버를 위한 애플리케이션 프로그래밍 인터페이스(API)를 제공하는 소프트웨어 프레임워크로 리눅스의 ALSA 커널 드라이버와 사용자 영역을 인터페이스 한다. https://mediaframework-world.tistory.com/31https://github.com/alsa-project/alsa-lib # 리눅스에서 사운드 커널 드라이버 정상동작 확인 방법https://help.ubuntu.com/community/SoundTroubleshooting aplay -llspci -v | grep -A7 -i “audio” ■pulseaudio펄스오디오(PulseAudio)는 네트워크 기능이 있는 사운드

리눅스 사운드 제어 더 읽기"

PowerShell 배우기

출처: https://windowsforum.kr/lecture/20905473 Powershell 시작https://learn.microsoft.com/ko-kr/powershell/scripting/learn/ps101/01-getting-started?view=powershell-7.4 명령어 검색 명령https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/get-command?view=powershell-7.4 도움말 검색 명령어https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/get-help?view=powershell-7.4 변수https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_variables?view=powershell-7.4 IF 문https://learn.microsoft.com/ko-kr/powershell/scripting/learn/deep-dives/everything-about-if?view=powershell-7.4 연산자https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-7.4 for문https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_for?view=powershell-7.4 foreach문https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_foreach?view=powershell-7.4

PowerShell 배우기 더 읽기"

윈도우 무인설치를 위한 Windows ADK 사용 방법

이 과정은 신규 윈도우 이미지를 다운로드 받아 윈도우 설치 시 여러가지 질문없이 자동으로 설치되도록 unattend 파일을 생성한다. 생성된 autounattend.xml 파일은 sysprep 시 적용하여 윈도우 설치 이미지인 install.wim에 포함된다. 0. 준비물:   install.wim 1. Windows ADK 다운로드   Windows ADK 설치: 자신의 윈도우 버전을 미리 조사하고 맞는 버전으로 설치한다.   https://docs.microsoft.com/ko-kr/windows-hardware/get-started/adk-install 2. 설치   "배포 도구"만

윈도우 무인설치를 위한 Windows ADK 사용 방법 더 읽기"

Software RAID 구성 (mdadm)

■ RAID-0 대상 디스크 (RAID Level: https://namu.wiki/w/RAID)/dev/sdb 500GB/dev/sdc 500GB 1.mdadm 설치  yum -y install mdadm  apt -y install mdadm 2.대상 디스크 파티션 삭제  dd if=/dev/zero of=/dev/sdb bs=1024 count=1  dd if=/dev/zero of=/dev/sdc bs=1024 count=1 3.RAID 타입으로 파티셔닝  # fdisk /dev/sdb (같은 방법으로 sdc도 파티셔닝)     Welcome to fdisk (util-linux 2.32.1).    Changes will remain in

Software RAID 구성 (mdadm) 더 읽기"

위로 스크롤