별의 공부 블로그 🧑🏻‍💻

🗒️ dump (11)

728x90
  1. 2022.03.15 [리눅스 명령어] dump / restore

    dump / restore 파일들이 아닌 파일 시스템 전체를 백업할 때 사용하는 유틸리티 보통 파티션 단위로 백업할 때 많이 사용 전체 백업과 증분 백업 지원 0 ~ 9 단계의 레벨을 갖고 증분 백업을 지원한다. 레벨 0 : 전체 백업 나머지 레벨은 부분 백업 시 사용된다. 백업할 때 /etc/fstab 파일을 참조한다. 데이터 복원은 restore 명령을 사용하면 된다. 관련 명령어가 존재하지 않으면, 다음의 명령을 실행하여 설치한다. # yum install dump 지원 ext 파일 시스템 계열인 ext2, ext3, ext4만 지원한다. CentOS 7 의 기본 파일 시스템인 XFS 는 지원하지 않는다. dump 파티션 단위로 백업하는 명령 사용법 # dump option 파일명 백업대상 주요 옵..

  2. 2022.01.13 [리눅스마스터 1급 실기][단답식] 연습 문제 (시스템 백업)

    [리눅스마스터 1급 실기][단답식] 연습 문제 (시스템 백업) 문제 1 Q. 다음은 tar를 이용하여 증분 백업 후에 복원하는 과정이다. (괄호) 안에 알맞은 내용을 적으시오. 가. 증분 백업 # tar (1) list -cvfp home1.tar /home # tar (1) list -cvfp home2.tar /home 나. 복원 # tar xvf home1.tar (2) / # tar xvf home2.tar (2) / ● 정답 더보기 더보기 ① -g ② -C 문제 2 Q. 다음은 /home 디렉터리를 백업하고 복원하는 과정이다. 조건에 맞게 (괄호) 안에 알맞은 내용을 적으시오. 가. 생성되는 아카이브 포멧 형식을 'new SVR4 portable format with no CRC'로 지정하고, ..

  3. 2022.01.11 [1Z0-808][OCAJP] Dump 문제 71~80

    [1Z0-808][OCAJP] Dump 문제 71~80 문제 71 Given the code fragment : public static void main(String[] args) { ArrayList myList = new ArrayList(); String[] myArray; try { while (true) { myList.add("My String"); } } catch (RuntimeException re) { System.out.println("Caught a RuntimeException"); } catch (Exception e) { System.out.println("Caught an Exception"); } System.out.println("Ready to use"); } Q. W..

  4. 2022.01.09 [1Z0-808][OCAJP] Dump 문제 61~70

    [1Z0-808][OCAJP] Dump 문제 61~70 문제 61 Given the code fragment : public static void main(String[] args) { String str = " "; str.trim(); System.out.println(str.equals("") + " " + str.isEmpty()); } Q. What is the result? A false true B true true C true false D false false 정답 D 해설/결과 문제 62 Given the following array : int[] intArr = {8, 16, 32, 64, 128}; Q. Which two code fragments, indepdently, print..

  5. 2022.01.07 [1Z0-808][OCAJP] Dump 문제 51~60

    [1Z0-808][OCAJP] Dump 문제 51~60 문제 51 Given : public class Triangle { static double area; int b = 2, h = 3; public static void main(String[] args) { double p, b, h; // line n1 if (area == 0) { b = 3; h = 4; p = 0.5; } area = p * b * h; // line n2 System.out.println("Area is " + area); } } Q. What is the result? A Area is 3.0 B Compilation fails at line n2 C Compilation fails at line n1 D Area is ..

  6. 2022.01.07 [1Z0-808][OCAJP] Dump 문제 41~50

    [1Z0-808][OCAJP] Dump 문제 41~50 문제 41 Given : class Vehicle { int x; Vehicle() { this(10); // line n1 } Vehicle(int x) { this.x = x; } } class Car extends Vehicle { int y; Car() { super(); this(20); // line n2 } Car(int y) { this.y = y; } public String toString() { return super.x + ":" + this.y; } } And given the code fragment : Vehicle y = new Car(); System.out.println(y); Q. What is the result?..

  7. 2022.01.04 [1Z0-808][OCAJP] Dump 문제 31~40

    [1Z0-808][OCAJP] Dump 문제 31~40 문제 31 Given the definitions of the MyString class and the Test class : // (1) MySting.java : package p1; public class MyString { String msg; MyString(String msg) { this.msg = msg; } } // (2) Test.java package p1; public class Test { public static void main(String[] args) { System.out.println("Hello " + new StringBuilder("Java SE 8")); System.out.println("Hello " + ..

  8. 2022.01.02 [1Z0-808][OCAJP] Dump 문제 21~30

    [1Z0-808][OCAJP] Dump 문제 21~30 문제 21 Given the code fragment : public static void main(String[] args) { String[][] arr = {{"A", "B", "C"}, {"D", "E"}}; for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr[i].length; j++) { System.out.print(arr[i][j] + " "); if (arr[i][j].equals("B")) { break; } } continue; } } Q. What is the result? A A B C D E B A B D E C A B C D Compilation fails. 정답..

  9. 2022.01.02 [1Z0-808][OCAJP] Dump 문제 11~20

    [1Z0-808][OCAJP] Dump 문제 11~20 문제 11 Given : public static void main(String[] args) { String ta = "A "; ta = ta.concat("B "); String tb = "C "; ta = ta.concat(tb); ta.replace('C', 'D'); ta = ta.concat(tb); System.out.println(ta); } Q. What is the result? A A B C D B A C D C A B C C D A B D E A B D C 정답 C 해설/결과 "ta.replace('C', 'D')" String 형 문자열을 반환만 할 뿐, 변수 ta에 새롭게 할당하지는 않음. 문제 12 Given the cod..

  10. 2021.12.31 [1Z0-808][OCAJP] Dump 문제 1~10 2

    [1Z0-808][OCAJP] Dump 문제 1~10 문제 1 Q. Which statement best describes encapsulation? A Encapsulation ensures that classes can be designed so that only certain fields and methods of an object are accessible from other objects. B Encapsulation ensures that classes can be designed so that their methods are inheritable. C Encapsulation ensures that classes can be designed with some fields and methods..

  11. 2021.12.30 [1Z0-851][OCAJP] Dump 문제 1~10

    [1Z0-851][OCAJP] Dump 문제 1~10 문제 1 Given : public class Threads2 implements Runnable { public void run() { System.out.println("run."); throw new RuntimeException("Problem"); } public static void main(String[] args) { Thread t = new Thread(new Threads2()); t.start(); System.out.println("End of method."); } } Q. Which two can be results? (Choose two.) A java.lang.RuntimeException: Problem B run. j..

728x90


📖 Contents 📖