처음으로

리눅스마스터 2급

2021년 03월 13일 기출문제

38. 다음은 backup.tar 파일에 추가로 파일을 묶는 과정이다. ( 괄호 ) 안에 들어갈 내용으로 알맞은 것은?

9.gif

공유
정답보기
<<이전
다음>>
목록
  • 2022.03.07 16:55:39

    [root@centos7 test]# tar cvf backup.tar backup ## backup이란 파일을 backup.tar로 압축
    backup
    [root@centos7 test]# ls
    backup backup.tar ## backup.tar 생성완료

    [root@centos7 test]# touch lint.txt joon.c ## lint.txt joon.c 파일생성

    [root@centos7 test]# tar rvf backup.tar lint.txt joon.c ## backup.tar파일에 추가로 lin.txt와 joon.c 압축
    lint.txt
    joon.c

    [root@centos7 test]# tar tvf backup.tar ## 제대로 추가되어 묶였는지 확인
    -rw-r--r-- root/root 0 2022-03-07 16:51 backup
    -rw-r--r-- root/root 0 2022-03-07 16:52 lint.txt
    -rw-r--r-- root/root 0 2022-03-07 16:52 joon.c

    0 0
  • 서버에 요청 중입니다. 잠시만 기다려 주십시오...