* 인터넷 발급 안됨

1. 사건번호, 부, 모 이름으로 해당법원에서 발급이 가능한지 확인

2. 양식다운로드후 작성 필요한 서류 준비

3. 우체국 방문, 수입인지를 구매할수 있는 우체국 

4. 민원우편발송용봉투 구매 보내는봉투 받는봉투 2개로 되어 있음, 100원

5. 보내는봉투 보낸사람 나, 받는사람 법원

6. 받는봉투 보낸사람 법원, 받는사람 나

7. 수입인지 비용 : 서류 1통당 1000원, 양육비부담조서 3통 3천원, 집행문 송달증명원 3통 3천원

8. 양육비부담조서 와 집행문 송달증명원 각각 따로 3천원 수입인지 구매 3천원짜리 2개

9. 보내는 봉투안에 서류, 받는 봉투를 넣고 우체국 직원에게 전달 

10. 도장을 찍어준 후에 보내는 봉투 밀봉

11. 등기우편으로 등록

 

by sonysean 2025. 7. 2. 11:47

PuTTY는 Windows에서 SSH, Telnet, Rlogin, SCP, SFTP 등의 
프로토콜을 사용하여 원격 서버에 연결할 수 있는 클라이언트 프로그램입니다. 
주요 명령어와 사용법을 정리해드리겠습니다.

PuTTY 기본 사용법

1. GUI 모드 (putty.exe)
putty.exe [options] [user@]host

2. 명령줄 옵션
연결 설정
putty.exe -ssh username@hostname
putty.exe -telnet hostname
putty.exe -rlogin hostname

포트 설정
putty.exe -P 2222 username@hostname

세션 저장/불러오기
putty.exe -load "session_name"

키 파일 사용
putty.exe -i private_key.ppk username@hostname

PuTTYgen (키 생성 도구)
RSA 키 생성
puttygen.exe -t rsa -b 2048 -o key.ppk

DSA 키 생성
puttygen.exe -t dsa -b 1024 -o key.ppk

ECDSA 키 생성
puttygen.exe -t ecdsa -b 256 -o key.ppk

Ed25519 키 생성
puttygen.exe -t ed25519 -o key.ppk

키 변환
puttygen.exe -O private-openssh -o private_key
puttygen.exe -O public-openssh -o public_key

PSCP (Secure Copy)
파일 업로드
pscp.exe local_file username@hostname:/remote/path/
pscp.exe -P 2222 local_file username@hostname:/remote/path/

파일 다운로드
pscp.exe username@hostname:/remote/file local_path/

디렉토리 복사
pscp.exe -r local_directory username@hostname:/remote/path/

키 파일 사용
pscp.exe -i private_key.ppk local_file username@hostname:/remote/path/


PSFTP (Secure FTP)
연결
psftp.exe username@hostname
psftp.exe -P 2222 username@hostname

주요 명령어
get remote_file [local_file]     # 파일 다운로드
put local_file [remote_file]     # 파일 업로드
mget pattern                     # 여러 파일 다운로드
mput pattern                     # 여러 파일 업로드
cd directory                     # 원격 디렉토리 변경
lcd directory                    # 로컬 디렉토리 변경
ls                              # 원격 파일 목록
dir                             # 상세 파일 목록
mkdir directory                 # 원격 디렉토리 생성
rmdir directory                 # 원격 디렉토리 삭제
delete file                     # 원격 파일 삭제
rename oldname newname          # 파일명 변경
pwd                             # 현재 원격 경로
lpwd                            # 현재 로컬 경로
quit                            # 연결 종료


Plink (명령줄 SSH)
기본 연결
plink.exe username@hostname
plink.exe -ssh username@hostname



원격 명령 실행
plink.exe username@hostname command
plink.exe username@hostname "ls -la"

포트 설정
plink.exe -P 2222 username@hostname

키 파일 사용
plink.exe -i private_key.ppk username@hostname

배치 모드 (비대화형)
plink.exe -batch username@hostname command

Pageant (SSH 인증 에이전트)
키 로드
pageant.exe private_key.ppk
pageant.exe key1.ppk key2.ppk

키 목록 확인
pageant.exe -l

PuTTY 설정 파일
설정 저장
putty.exe -load "session_name" -save

설정 내보내기
putty.exe -load "session_name" -dump

일반적인 사용 예시
1. SSH 서버 연결
putty.exe -ssh user@192.168.1.100

2. 특정 포트로 연결
putty.exe -ssh -P 2222 user@192.168.1.100

3. 키 파일로 연결
putty.exe -ssh -i mykey.ppk user@192.168.1.100

4. 파일 전송
pscp.exe -i mykey.ppk localfile.txt user@192.168.1.100:/home/user/

5. 원격 명령 실행
plink.exe -i mykey.ppk user@192.168.1.100 "ls -la /home/user"

이러한 명령어들을 활용하여 PuTTY를 효율적으로 사용할 수 있습니다. 특히 자동화 스크립트나 배치 작업에서 명령줄 옵션을 활용하면 매우 유용합니다.

'명령어' 카테고리의 다른 글

PuTTY 명령어  (0) 2013.06.04
by sonysean 2025. 6. 19. 19:59

http://www.fusioncharts.com/demos/gallery/#column-and-bar

 

http://docs.fusioncharts.com/charts/

by sonysean 2013. 12. 30. 14:03
| 1 2 3 4 ··· 6 |