Logo

Blog Grid

Journal

Creative Collection

When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees.

2025년 04월 16일

rocky linux 보안 iptables 설정하기

rocky linux 서버 보안관련 iptables 설정하기 # vim /etc/sysconfig/iptables #Firewall configuration written by system-config-securitylevel #Manual customization of this file is not recommended. *filter:INPUT ACCEPT...

Continue Reading
2025년 04월 16일

Linux server 초기 퍼미션 설정

리눅스 서버 초기설정시 서버의 퍼미션설정 정보입니다. cd /chmod 711 .chmod 711 /chmod 1777 tmpchmod 500 proc # 기록 : 2025-03-23

Continue Reading
2025년 04월 16일

워드프레스 siteurl 수정하기

MariaDB > desc wp_options;+————–+———————+——+—–+———+—————-+| Field | Type | Null | Key | Default | Extra |+————–+———————+——+—–+———+—————-+| option_id | bigint(20) unsigned | NO | PRI...

Continue Reading
2025년 04월 16일
2025년 04월 16일

서버보드 에러시 스피커소리에 따른 증상

▩ 제목 Bios 의 비프음으로 에러내용 진단하기▩ 작성자 이원준 (jooni2)▩ 작성일 2004-01-28▩ 내용 컴퓨터를 조립하다가 보면이유없이 부팅이 안되는 경우가 종종 있을수 있습니다.이때 메인보드의 나는...

Continue Reading
2025년 04월 16일

ncftpget 으로 백업하기

# ncftpget -R -u 아이디 -p 비밀번호 -P 포트번호 도메인명 . ‘상대경로’점(.)은 현재폴더를 의미합니다.상대경로란 /test 라 하면, 도메인명/test가 된다는 것입니다.즉, 아이디의 상대경로다음부터 적용되는...

Continue Reading
2025년 04월 16일

서버셋팅시, 서버퍼미션설정 (서버초기작업시)

Name       rootman   Subject     서버세팅시 방장의 퍼미션 권한 설정 간만에 제 홈페이지를 들어오네요.. 휴~~바쁭건 아닌데.. 여유가 좀처럼 없네요. 서버세팅시 제가 즐겨설정하는 것입니다.auto.sh 라는 화일을 만들어서...

Continue Reading
2025년 04월 16일

mysql 의 root 비밀번호 분실시 대처요령

1. mysqld 를 중지시킨다. 2. bin폴더 혹은 실행파일중에서 아래 명령을 실행 /usr/local/mysql/bin/mysqld_safe –user=root –skip-grant-tables &혹은 safe_mysqld 이다. 실행파일은 확인할것 3. mysql로 접근mysqluse mysql mysql>...

Continue Reading
2025년 04월 16일

하위 디렉토리까지 뒤져 특정파일의 내용을 replace하기

출처 : http://kltp.kldp.org/stories.php?story=02/01/17/8416340 find . -name ‘*.php’ -exec perl -pi -e ‘s/문자열/변경할문자열/g’ {} \; 웹호스트에서 검증한 명령어입니다. 칸띄우기등 그대로 사용하세요.

Continue Reading
2025년 04월 16일

find 명령으로 특정파일 특정문자열 찾아내기

/home 디렉토리 하단에 .htaccess 파일중에서“avi”란 단어가 들어간 파일을 모두 찾아보자. # grep “avi” `find /home -name .htaccess`/home/mech007/public_html/main/.htaccess:RewriteCond %{DOCUMENT_ROOT}//main/attach/1/favicon.ico -f/home/mech007/public_html/main/.htaccess:RewriteRule ^favicon\.ico$ attach/1/favicon.ico /home/mech007/public_html/main/.htaccess:RewriteRule ^favicon\.ico$ image/icon_favicon_default.ico...

Continue Reading
2025년 04월 16일

하드디스크의 상태보기

# smartctl -a /dev/sdasmartctl version 5.33 Copyright (C) 2002-4 Bruce AllenHome page is http://smartmontools.sourceforge.net/ Device: SEAGATE  ST373207LC       Version: 0003Serial number: 3KT04Y9500007609MM1EDevice type: diskTransport protocol:...

Continue Reading
2025년 04월 16일

linux CPU,메모리 제조사, 슬롯,뱅크등 자세한 정보 알아내는 방법

프로그램 명 : dmidecode 2.8 (시스템(bios/dmi) 정보확인)운영체제     LINUX,FreeBSD라이센스     GPL홈페이지     http://www.nongnu.org/dmidecode/ 홈페이지에서 최신 tar.gz 다운로드 tar xvzfp dmidecode-2.9.tar.gzcd dmidecode-2.9makemake install # whereis...

Continue Reading
2025년 04월 16일

서버에 접근하는 ip들 보기

netstat -ant | awk ‘{print $5}’ | cut -f 1 -d : | sort | uniq|wc -l 서버에 접근하는 ip들 보기

Continue Reading
2025년 04월 16일

내 linux 가 32bit 인지 64bit 인지 확인방법

#uname -a 하시면 됩니다. Linux kkamagi2 2.6.18-8.1.15.el5 #1 SMP Mon Oct 22 08:32:04 EDT 2007 i686 i686 i386 GNU/Linux 32bit시에 위와 같이 뜨고.. 64bit시에는....

Continue Reading
2025년 04월 16일

rm 으로 안지워질때 find 명령으로 삭제방법

$ find . -name “b*” -exec rm -rf {} \; 현재 디렉토리(.) 하부에 b로 시작하는 파일은 모두 삭제하라 $ find . -name “*” -exec rm -rf...

Continue Reading
2025년 04월 16일

vi 에서 색깔 설정하기

vi color vi로 파일을 열때 특정 option이 자동수행되게 하려면 ~/.vimrc에 option을 미리 지정하면 됩니다. 예를들어, 라인번호가 항상 나오게 하려면 set number 라는걸 ~/.vimrc에 넣어놓으면 됩니다. 색깔 지정하는걸 Syntax Highlighting이라 하는데 :syntax on 하여 색상이...

Continue Reading
2025년 04월 16일

bind-9.3.6 설치와 설정하기 named 구축

bind-9.3.6-4.P1.el5_4.2 설치 yum -y install bind\* 하시면 bind에 대한건 다 설치합니다.   또는 # yum -y install bind bind-libs ypbind yp-tools bind-utils bind-chroot bind-devel 하세요....

Continue Reading
2025년 04월 16일

2차네임서버 구축실무

1. /etc/named.conf options {        directory “/var/named”;}; controls {         inet 127.0.0.1 port 953  allow { localhost; } keys { rndckey; };}; zone “.” {        type...

Continue Reading
2025년 04월 16일

bind9 네임서버 소스로 설치하기

bind 소스받기 https://www.isc.org/ 상단첫번째 DOWNLOADS > BIND 에서 최신버전 tar.gz 다운로드 1. 파일 다운로드 받고 컴파일 하기  # gzip  -dc   bind-9.3.0.tar.gz  |  tar  xvf   –# cd  bind-9.3.0# ./configure  # make# make...

Continue Reading
2025년 04월 16일

rocky linux ssh 언어설정

rocky linux8 ssh 에서 한국어 언어설정입니다. # vim /etc/locale.conf LANG=”ko_KR.UTF8″ 저장후 # source /etc/locale.conf 또는 서버 reboot 설정확인하기 # localectl status System locale: LANG=ko_KR.UTF8...

Continue Reading
2025년 04월 16일

vsftpd 설정 및 체크사항

yum install vsftpdyum install ftp 이렇게 2가지 설치여부 확인 vi /etc/vsftpd/vsftpd.confanonymous_enable=NO … 마지막줄에 pasv_enable=yespasv_min_port=49152pasv_max_port=65534 추가후 /etc/sysconfig/iptables-A INPUT -m state –state NEW -m tcp -p...

Continue Reading
2025년 04월 16일

Rocky Linux 8.x 에서 Let’s encrypt 설치 및 SSL 발급받기

OS 종류 및 버전에 따라 설치방법이 조금씩 다릅니다. 본 내용은 Rocky Linux 8.x 에서 설치하는 방법을 다루었습니다. 1. 패키지 다운로드 # dnf -y install...

Continue Reading
2025년 04월 16일

무료 SSL Let’s encrypt certbot 설치하는 방법 – Linux CentOS

무료 SSL Let’s encrypt certbot 설치하는 방법 – Linux CentOS 1. 서버 설치하기 : 소스설치 ~]# cd /usr/local ~]# yum install epel-release ~]# rpm...

Continue Reading
2025년 04월 16일

windows10 갑자기 폰트가 없어졌어요

출처 : https://answers.microsoft.com/ko-kr/windows/forum/windows_10-start/%EC%9C%88%EB%8F%84%EC%9A%B010/73535311-dcc5-4033-a09f-7cc5f9e71fb9?auth=1 1) 방화벽 관련 프로그램이 충돌이 난 것으로 보입니다. 저도 업데이트 이후 폰트가 안보였었는데 nProtect / NSD 삭제 후 폰트 다시 보이는 것으로...

Continue Reading
2025년 04월 16일

삼성노트북 NT300E5C-S5S SATA500G – SSD120G 교체후기

기존에 하드는 약간 무거운 헤드방식에 SATA 인데 너무 느립니다.WD SSD 하드는 메모리방식이라서 매우 가볍습니다.그리고 읽기와 쓰기가 약 500 정도 되는 매우 빠른 속도입니다. 삼성노트북...

Continue Reading
2025년 04월 16일

PSD 확장자 미리보기 방법

PSD 확장자 윈도우 탐색기에서 미리보는 방법 — https://sourceforge.net/projects/sagethumbs 여기서 download (약 5초간 기다리면 다운로드됨) 설치하면 보입니다. 작성일자 : 2020.03.14

Continue Reading
2025년 04월 16일

윈도우10 내pc에 정품번호 확인하는 방법

keyfinder 프로그램 설치해서 확인가능하다. https://www.magicaljellybean.com/keyfinder 여기에서 무료버전 다운로드후 설치하고 실행하면 바로 보임 Cd-Key: xxxx-xxxx 이런식으로 나온다. 작성일자 : 2020.03.14

Continue Reading
2025년 04월 16일

Windows10 MBR 복구하는 방법 및 멀티부트 만들기

MBR(Master Boot Record) 복구 하는 방법 우선 윈도우 설치 DVD 나 USB 를 준비하도록 합니다. 만약에 없다면 위 관련 글을 통해 윈도우 설치 파일을 USB...

Continue Reading
2025년 04월 16일

startme.online startme.today 제거 해결하기

갑자기 구글 크롬을 사용하면 이상한 검색엔진이 첫화면에 뜨면서 startme.online/… 으로 연결해서 구글이 사용된다면 바이러스에 걸린겁니다. 해결방법) trojan killer 를 다운로드합니다. https://trojan-killer.net/ko 여기에서 중간에 다운로드...

Continue Reading
2025년 04월 16일

알수없는장치 Microsoft ACPI-Compliant System 해결법

알수없는장치 Microsoft ACPI-Compliant System 해결법 출처: http://the3.tistory.com/11  ACPI advanced configuration and power interface 미국의 인텔사, 마이크로소프트사 등이 공동으로 작성하여 1996년에 공개한, 개인용 컴퓨터(PC)의 전력 제어를 위한 응용 프로그램 인터페이스(API) 규격....

Continue Reading
2025년 04월 16일

인텔 1155 보드 XP 설치시 SSD 하드디스크 IDE – AHCI 모드로 설치하기

인텔 1155 보드에서 XP설치시 SSD 하드디스크에 설치하는 경우엔 IDE모드로만 설치가 가능합니다. AHCI 모드로 설치하면 에러가 나서 더이상 설치가 안됩니다. 그런데 문제는 이렇게 IDE모드로 SSD...

Continue Reading
2025년 04월 16일

우편번호 서비스 php DB없이 daum zipcode로 구현하기

우편번호 서비스 &nbsp;&nbsp; <input type=”text” name=”zipcode” id=”zipcode” placeholder=”우편번호” value=”<?=$myuser->zipcode?>” maxlength=”3″ size=”5″ readonly oncontextmenu=”return false” onselectstart=”return false” ondragstart=”return false”> &nbsp;<input type=”button” onclick=”sample6_execDaumPostcode()” value=”우편번호 찾기”><br> <script...

Continue Reading
2025년 04월 16일

mysql 5.1 to 5.7 upgrade 방법

mysql 5.1 to 5.7 upgrade 방법입니다. 우선 해 본결과 간단히 소개부터 하면 1) 중요한 데이터라면 우선 백업을 하고 이 작업을 하세요.– 데이터가 다 날라갈...

Continue Reading
2025년 04월 16일

워드프레스 변수명 확인하기

<?php$current_user = wp_get_current_user();/*** @example Safe usage: $current_user = wp_get_current_user();* if ( !($current_user instanceof WP_User) )*     return;*/echo ‘Username: ‘ . $current_user->user_login . ‘<br />’;echo ‘User email: ‘ . $current_user->user_email . ‘<br />’;echo ‘User first name: ‘ . $current_user->user_firstname . ‘<br />’;echo ‘User last name: ‘ . $current_user->user_lastname . ‘<br />’;echo ‘User display name: ‘ . $current_user->display_name . ‘<br />’;echo ‘User ID: ‘ . $current_user->ID . ‘<br />’;?> 위와 같이 하면 변수명을 확인할 수 있다. 출처 : https://codex.wordpress.org/ko:%ED%95%A8%EC%88%98_%EB%A0%88%ED%8D%BC%EB%9F%B0%EC%8A%A4/wp_get_current_user#.EB.A6.AC.ED.84.B4_.EA.B0.92 작성일자 : 2017.09.30

Continue Reading
2025년 04월 16일

Windows 7 USB DVD Download Tool

Windows 7 USB DVD Download Tool Windows7-USB-DVD-Download-Tool-Installer-en-US다운로드

Continue Reading
woman
2019년 03월 15일

Wild Question Marks and devious semikoli

Wild Question Marks and devious semikoli March 15, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully presented. A...

Continue Reading
architecture
2019년 03월 14일

Pityful a rethoric question ran over her cheek

Pityful a rethoric question ran over her cheek March 14, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully...

Continue Reading
woman
2019년 03월 13일

The headline of Alphabet Village and the subline

The headline of Alphabet Village and the subline March 13, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully...

Continue Reading
woman
2019년 03월 12일

She had a last view back on the skyline

She had a last view back on the skyline March 12, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and...

Continue Reading
lake
2019년 03월 11일

When she reached the first hills of the italic

When she reached the first hills of the italic March 11, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and...

Continue Reading
woman
2019년 03월 10일

A small river named Duden flows by their place

A small river named Duden flows by their place March 10, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and...

Continue Reading
zen garden
2019년 03월 09일

Bookmarksgrove right at the coast of the semantics

Bookmarksgrove right at the coast of the semantics March 9, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully...

Continue Reading
three
2019년 03월 08일

Far far away behind the word mountains

Far far away behind the word mountains March 8, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully presented....

Continue Reading
transition
2019년 03월 07일

From the countries Vokalia and Consonantia

From the countries Vokalia and Consonantia March 7, 2019 Photo Story Build an elegantly modern, responsive website that’s creative, accessible and beautifully presented. A...

Continue Reading