분류 전체보기 썸네일형 리스트형 [draft] 창 정렬 기능 켜기(창 이동 활성화하기) 창 정렬 기능 켜기: "원도우 키 + 방향 키"로 창 이동창 이동 단축키Windows 키 + Left 키 : 창을 왼쪽으로 Windows 키 + Right 키 : 창을 오른쪽으로 Windows 키 + Up 키 : 창을 위쪽으로 Windows 키 + Down 키 : 을 아래쪽으로창 맞춤 설정Windows 설정 > 시스템 > 멀티태스킹 > 창 맞춤 더보기 [draft] 윈도우 11에서 컴퓨터를 자동으로 종료하는 명령어 윈도우 11에서 컴퓨터를 자동으로 종료하는 명령어(shutdown 명령어)실행 창 또는 cmd(command) 창에서 명령어 실행실행 창(Win + R)cmd 창원도우 종료60초 후 종료shutdown -s즉시 종료(0초 후 종료)shutdown -s -t 01시간(3600초) 후 종료shutdown -s -t 3600윈도우 재부팅shutdown -r -t 0자동 종료 취소shutdown -a주요 옵션옵션설명-s컴퓨터를 종료합니다.-r컴퓨터를 완전히 종료하고 다시 시작합니다.-t종료 전 시간 제한 기간을 xxx초로 설정합니다. 유효 범위는 0-315360000(10년)이며, 기본값은 30입니다. 시간 제한 기간이 0보다 큰 경우 /f 매개 변수가 암시됩니다.-f최대 512자를 사용할 수 있습니다. 사용자.. 더보기 [draft] NGINX에서 가상 호스트에 HTTP2를 설정하는 방법 NGINX에서 가상 호스트(Virtual Host)에 HTTP/2를 설정하는 방법NGINX 버전 확인nginx -v1. http2 on; 방식이 지시문은 버전 1.25.1에 나타났습니다.#default.conf configureserver { listen 80 default_server; server_name _; return 301 https://$host$request_uri;}#Settings for a TLS enabled server.server { listen 443 ssl; http2 on; server_name _; root /usr/share/nginx/html; index index.html index.htm;...}2. listen 443 s.. 더보기 [draft] stormssh 설치 후 collections 모듈 에러 stormssh 설치 후 collections 모듈 에러테스트 환경운영체제 정보 확인$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 22.04.1 LTSRelease: 22.04Codename: jammy파이션 버전 정보 확인$ python --versionPython 3.10.6stormssh 버전 정보 확인storm --version$ storm --versionTraceback (most recent call last): File "/usr/local/bin/storm", line 5, in from storm.__main__ import main Fil.. 더보기 [draft] mac(macOS)에 stormssh 설치 및 설정하기 mac(macOS)에 stormssh 설치 및 설정하기stormssh 설치brew install stormsshstorm 사용법usage: storm [-h] [-v] COMMAND ...$ storm -husage: storm [-h] [-v] COMMAND ...options: -h, --help show this help message and exit -v, --version show program's version number and exitcommands: COMMAND version prints the working storm(ssh) version. add Adds a new entry to sshconfig. clone C.. 더보기 [draft] 커널 컴파일 및 설치하는 방법 커널 컴파일 및 설치하는 방법커널 소스 코드 다운로드공식 웹사이트인 https://www.kernel.org/에서 원하는 버전의 커널 소스 코드를 다운로드합니다. 커널 소스 코드 압축 해제다운로드한 소스 코드를 압축 해제합니다. tar -xf linux-x.x.x.tar.gz 명령어를 사용하여 압축을 해제합니다.커널 설정커널 설정을 위해 커널 소스 코드 디렉토리로 이동합니다. cd linux-x.x.x 명령어를 사용하여 디렉토리로 이동합니다.make mrproper 또는 make clean 명령어를 실행하여 이전 빌드 파일을 제거합니다.make menuconfig 명령어를 실행하여 커널 설정을 편집합니다. 이 명령어는 텍스트 기반으로 설정을 제공합니다.필요한 기능, 모듈, 드라이버 등을 선택하고 설정을 .. 더보기 [draft] rpcgen install for centos 8 rpcgen install for centos 8CentOS-PowerTools.repo create file$ vim /etc/yum.repos.d/CentOS-PowerTools.repo# CentOS-PowerTools.repo## The mirror system uses the connecting IP address of the client and the# update status of each mirror to pick mirrors that are updated to and# geographically close to the client. You should use this for CentOS updates# unless you are manually picking other mirrors... 더보기 [draft] Spring Boot Application Docker 컨테이너로 배포 Spring Boot Application Docker 컨테이너로 배포Spring Boot 프로젝트 만들기Intellij로 spring boot 프로젝트 생성 : 변군이글루 블로그 : Intellij로 spring boot 프로젝트 생성Dockerfile 파일 생성openjdk 17 도커 이미지(docker image) : https://hub.docker.com/_/openjdkDockerfileFROM openjdk:17.0.2-jdkARG JAR_FILE_PATH=build/libs/demo-0.0.1-SNAPSHOT.jarCOPY ${JAR_FILE_PATH} app.jarEXPOSE 8080ENTRYPOINT ["java","-jar","/app.jar"]도커 빌드docker build --ta.. 더보기 이전 1 2 3 4 ··· 38 다음