전체 글244 [CentOS] 특정 경로 압축 해제 1. 목록확인tar tvf [파일명.tar] 2. 특정 파일 압축 해제tar xvfp [파일명.tar] [압축해제 할특정파일] 3. 특정 경로 압축 해제tar xvfp [파일명.tar] [압축 해제할 특정 디렉토리] 4. 특정 경로 압축 해제 (압축 해제 위치 지정)tar xvfp [파일명.tar] -C [압축 해제 위치] [압축 해제할 특정 디렉토리] 2024. 9. 20. [ClamAV] 리눅스 무료 백신 1. 설치yum install -y epel-releaseyum install -y clamav clamd 2. virus data 업데이트vi /etc/freshclam.conf# Example 주석처리 3. virus database 업그레이드 (스캔 전 필요)freshclam 4. virus scan (검사)clamscan -r [스캔 대상 디렉토리]clamscan -ri [스캔 대상 디렉토리] // 감염된 파일만 목록에 뜨게 하려면 5. 감염 파일 목록 출력# 감염 파일 목록만 출력clamscan -ri [스캔 대상 디렉토리] # 스캔 결과 파일 생성clamscan -ri [스캔 대상 디렉토리] -l [생성파일] # 감염 파일 격리clamscan -r [스캔 대상 디렉토리] --m.. 2024. 9. 20. [인텔리제이] 유용한 플러그인 추천 https://ddururiiiiiii.tistory.com/402#google_vignette 2024. 9. 19. 코딩 글꼴 추천 (이클립스) 개인적으로 생각하기에 이클립스에서 가독성 좋은 코딩 글꼴 추천 폰트 사이즈 11로 이용 중입니다. 1. IBM PLEX MONO https://fonts.google.com/specimen/IBM+Plex+Mono 2. FRAGMENT MONO https://github.com/weiweihuanghuang/fragment-mono 3. ROBOTO MONO https://fonts.google.com/specimen/Roboto+Mono 4. SPACE MONO https://fontmeme.com/ktype/space-mono-font * fi가 합자로 보인다는 단점이 있음 * 글꼴 전체https://www.programmingfonts.org/#fragment-mono 2023. 10. 22. [CentOS] tar를 이용한 백업/복구 [백업하기] 1. Root / 이동하여 백업 cd / 2. 전체 백업 sudo tar cvpzf backup.tar.gz --exclude=/backup.tar.gz --exclude=/proc/* --exclude=/lost+found/* --exclude=/media/* --exclude=/mnt/* --exclude=/sys/* / * exclude에 제외할 폴더를 입력하면 됩니다. - test sudo tar cvpzf backup.tar.gz --exclude=/backup.tar.gz --exclude=/proc/* --exclude=/lost+found/* --exclude=/media/* --exclude=/mnt/* --exclude=/boot/* --exclude=/etc/fstab -.. 2023. 1. 21. 인터넷 안되는 환경에서 yum 설치 (rpm 패키지 다운로드) 1. 아래 블로그에 나와있는데로 rpm 파일 생성 - https://lifeplan-b.tistory.com/m/201 Yum 없이 패키지 설치(feat. CentOS gcc 설치) 인터넷이 가능한 서버 or PC에서 gcc / gcc-c++을 설치할때는, 아주 간단하게 "yum install gcc" 하면 해결이 된다. 그러면, 의존성 패키지까지 함께 설치가 완료된다. 그러나, Yum을 사용하지 못하는 환경 lifeplan-b.tistory.com 2. 아래 명령어로 rpm을 이용한 yum 설치 - yum install 파일명.rpm 예) yum install epel-release-6-8.noarch.rpm 2022. 9. 29. 이전 1 2 3 4 ··· 41 다음