정의: 어떠한 문서나 기록을 모아놓은 기록 보관소.
archive in linux: 여러개의 파일이나 디렉토리를 묶어서 하나의 파일로 만드는 것.
사용 이유: 파일의 이동, 공유, 저장을 쉽게 하기 위해서
archiving tool: tar(Tape Archive)
아카이브 생성: 명령어 tar cvf (c: create, v: verbose, f: file) : tar cvf (filename.tar) (fileA fileB fileC ….)
아카이브 추출: 명령어 tar xvf(x: extract, v: verbose, f: file) tar cvf (filename.tar)
tar 파일이 생성될 때 메타데이터 정보가 포함되기 때문에 개별 파일 용량의 합보다 tar 파일의 용량이 더 크다.