OS/Linux49 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. sftp / ssh / scp 포트지정접속 ※ sftp sftp -oPort=포트 계정@서버주소 ※ ssh ssh 계정@서버주소 -p포트 ※ scp 원격 → 로컬 scp -P 포트 계정@서버주소:경로/파일명 경로/파일명 ※ scp 로컬 → 원격 scp -P 포트 경로/파일명 계정@서버주소:경로/파일명 2021. 12. 28. tomcat 2개 / tomcat port 다르게 여러개 22 .. 69 .. 117 2021. 6. 25. rsync / ssh-keygen / ssh-copy-id 동일한계정으로 접속하여 처리하는경우 root제외 $ ssh-keygen $ ssh-copy-id 192.168.99.44 $ rsync -avz /home/유저명/rsync/ 유저명@192.168.99.44:/home/유저명/rsync/ [유저명@gs2019 rsync]$ rsync -avz /home/유저명/rsync/ 유저명@원격지IP:/home/유저명/rsync/ sending incremental file list sent 134 bytes received 12 bytes 97.33 bytes/sec total size is 143 speedup is 0.98 [유저명@gs2019 rsync]$ 2021. 6. 1. 이전 1 2 3 4 5 6 ··· 13 다음 반응형