delete 6

Backup rsync

How to Use rsync to Backup Your Data on LinuxHow to Backup Linux? 15 rsync Command Examples Installation # Ubuntu sudo apt-get install rsync # CentOs yum install rsync Backup (내부 백업) # Directory1 에서 Directory2로 백업 rsync -av --delete /Directory1/ /Directory2/ Options -a 재귀 (디렉토리로 반복), 링크 (심볼릭 링크로 심볼릭 링크 복사), perms (사용 권한 유지), 시간 (수정 시간 보존), 그룹 (그룹 보존), 소유자 (소유자 보존), 장치 파일 보존 및 특수 보존 파일. (단 전송시 타임..

os/Linux 2018.07.24

bash find delete sort

리눅스 날짜 기준으로 파일 삭제하기 How to sort the files according to the time stamp in unix? [closed] Find Delete find 폴더 -name '파일명' -mtime +일수 -delete find 폴더 -name '파일명' -mtime +일수 -exec rm -f {} \; find 폴더 -name '파일명' -mtime +일수 | xargs rm -f ll --time-style full-iso | awk '{print $6" "$9}' | grep 2011-08 ll --time-style full-iso | awk '{print $6" "$9}' | grep 2011-08 | awk '{print $2}' | xargs rm -f Sort..

os/Linux 2017.04.11

30배 빠른 불여우 만들기란다... HTTP pipelining 기술

# HTTP 파이프라인 설정 network.http.pipelining = true network.http.proxy.pipelining = true # 최대 요청수 수정 network.http.pipelining.maxrequests = 30 # Firefox Developer Edtion은 32로 설정되어 있습니다. # 레이아웃 그리기 연기 시간 제어 nglayout.initialpaint.delay = 0 # 새로생성 HOW TO MAKE MOZILLA FIREFOX X30 TIMES FASTER HTTP pipelining idempotent 웹, HTTP 이해(1) HTTP 파이프라이닝 기술은 Request method중 POST를 제외한 OPTIONS, GET, HEAD, PUT, DELETE..

net 2014.12.02
반응형