Basic Card

46일차

df2 MBR > VBR 00 00 00 00 00 00 00 00 / 00 00 00 00 / 00 00 00 00 1) 00 00 00 00 : 7168128 > 00 6D 60 80 / 80 60 6D 00 2) 00 00 00 00 : X 00 06 28 00 / 00 28 06 00 7168128 - 7571583 = 7571583 - 7168128 + 1 = 403,456 1 - 10 : 10 10-1+1 = 10 서과장의 복구된 파티션에 왜 tc파일이 존재하는가 tc파일의 용도는 무엇인가 truecrypt 파일은 다운로드 되었는가 설치했는가 언제 만들어졌는가 누가 만들었는가 레지스트리, index.DAT, NTUSER.DAT 번외 elasticsearch설치 sudo apt -y install default-jre sudo apt -y install default-jdk sudo apt -y install nginx curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch |sudo gpg --dearmor -o /usr/share/keyrings/elastic.gpg echo "deb [signed-by=/usr/share/keyrings/elastic.gpg] https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list sudo apt update sudo apt -y install elasticsearch /etc/elasticsearch/elasticsearch.yml network.host = 0.0.0.0 cluster.initial_master_nodes: ["node-1","node-2"] 주석 해제 sudo systemctl start elasticsearch sudo systemctl enable elasticsearch curl -X GET "http://localhost:9200/_cluster/health?pretty" 실행확인 sudo apt -y install kibana sudo systemctl start kibana sudo systemctl enable kibana sudo nano /etc/nginx/sites-available/default server { listen 80; server_name _; location / { proxy_pass http://localhost:5601; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade;} } 나머지 all 주석처리