본문 바로가기

Linux20

네트워크 정상 통신체크 / linux / telnet / nc / curl / dev/tcp ■ 환경 - linux 환경 - telnet , nc, curl 등 프로그램 설치된환경 ■ 목적 - 출발지에서 목적지까지의 네트워크 통신가능여부 확인용 ■ 방법 ● 목적지 IP : 192.168.0.194 ● 목적지 PORT : 9100 구분 통신이 정상적인 상태인 경우 통신이 불가능한 상태인 경우 telnet [root@linux ~]# telnet 192.168.0.194 9100 Trying 192.168.0.194... Connected to 192.168.0.194. Escape character is '^]'. [root@linux ~]# telnet 192.168.0.194 9100 Trying 192.168.0.194... 응답없음 nc [root@linux ~]# nc -zv 192.16.. 2023. 9. 21.
crontab / delete / send mail [oracle@localhost ~]$ crontab -l # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.XXXXNWtSJ7 installed on Wed Feb 3 00:59:50 2016) # (Cron version V5.0 -- $Id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie Exp $) #backup start every day 2:10 0 1 * * * /data/oracle/backup/cronbackup.sh #delete start every day 4 hours 0 4 * * * find /data/oracle/backup/dump/ -print -atime +2 -.. 2023. 9. 6.
linux / find / 특정기간 / 검색기간 1. touch 명령어로 검색기간(START ~ END)의 파일 생성 #>touch -t 202105070000 START #>touch -t 202105082359 END 2. 검색기간(START ~ END)내의 파일 검색 #>find /BACKUP -newer START -a ! -newer END -print 3. 검색기간(START ~ END)내의 파일 검색결과 관련 검색결과를 파일(log.txt)로 저장 #>find /BACKUP -newer START -a ! -newer END -print >log.txt 검색결과중 특정파일(*.txt)만 표시 #>find /BACKUP -newer START -a ! -newer END -print | grep .txt #>find /BACKUP -newe.. 2022. 2. 14.
파일 분할 및 압축관련 tar , tgz , gzip ,split 파일 압축 tar cvf 압축파일명.tar 압축할파일또는 폴더명 tar cvzf 압축파일명.tgz 압축할파일또는 폴더명 압축풀기 tar xvf 압축파일명.tar tar xvzf 압축파일명.tgz 파일분할 split -b 1700m 분할할파일명.tar 분할후파일명.tar_ ==>결과 분할후파일명.tar_aa 분할후파일명.tar_ab 파일합치기 [mac , linux ] cat 분할후파일명.tar_* > 합친파일명.tar [window] copy /b xa* files.tgz /b Copy /b file1+file2 file3 window copy 도움말 http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/copy.ms.. 2020. 4. 27.
반응형