리스트 예시: 게시물이 존재할 경우 3건을 노출합니다.
-
서버 | OS Connect Wi-Fi wlan wireless network on Linux # Requirement :The WPA Supplicant package should be installed and used in this step. You can manage the wireless network connection with "systemctl" to start or stop the WPA Supplicatn service like :systemctl stop wpa_supplicant@wlan0systemctl start wpa_supplicant@wlan0 This service requires a configuration file located in /etc/wpa_supplication/ directory.You can create the configuration file ea.. -
카테고리 없음 PiKVM을 이용한 PC/서버 원격 전원 관리 및 콘솔 화면 제어 IT 관리자가 서버를 운영할 때 가장 중요한 요소 중 하나는 원격에서 서버를 모니터링하고 제어할 수 있는 기능입니다. 특히, 서버가 다운되었거나 네트워크에 문제가 발생했을 때 물리적으로 접근할 수 없는 경우, 원격으로 전원을 제어하고 BIOS 또는 운영체제 이전 단계에서 조작할 수 있는 기능이 필요합니다. 이러한 기능을 제공하는 대표적인 솔루션 중 하나가 PiKVM입니다.PiKVM이란?PiKVM은 라즈베리 파이를 이용해 KVM(Keyboard, Video, Mouse) 스위치를 구현하는 오픈소스 프로젝트입니다. 이를 통해 원격지에서도 서버의 콘솔 화면을 직접 확인하고 키보드 및 마우스를 사용할 수 있으며, 전원 제어까지 가능합니다. 기업용 IPMI나 iDRAC, iLO 같은 상용 솔루션과 비교해 저렴한 .. -
Linux - Shell Script Send e-mail with attachment in shell environment. Tested(target) OSs : Ubuntu Arch Linux Required packages : msmtp (simple mail client that can support external smtp like Gmail, Naver etc.) mutt (needs for file attachment) 1. Install package Ubuntu : apt-get install -y msmtp mutt Arch Linux : pacman -S msmtp mutt 2. Prepare shell environment create a "~/.msmtprc" file for msmtp cat ~/.msmtprc # Set default values for all following accounts. def..