백업 생성: pg_dump -U 사용자이름 -d 데이터베이스이름 > 백업파일.sql 복원: psql -U 사용자이름 -d 새로운데이터베이스이름 test.sql k2 라는 데이터베이스를 만들어주고 이름 dandy를 사용한 곳에 백업한 것을 넣어주고 싶으면 복원(넣어주기) :psql -U dan..

[Virtualbox] 이 앱은 이 장치에서 실행할 수 없습니다. 나올 시 1. 기존에 있는 virtualbox를 제어판으로 삭제합니다. 2. virtualbox 홈페이지에서 https://www.virtualbox.org/wiki/Download_Old_Builds_6_1 Download_Old_Builds_6_1 – Oracle VM VirtualBox Download VirtualBox (Old Builds): VirtualBox 6.1 The Extension Packs in this section are released under the VirtualBox Personal Use and Evaluation License. All other binaries are released under the..
아래와 같은 에러가 나온다면 VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component ConsoleWrap, interface IConsole Details: 00:00:01.660524 Power up failed (vrc=VERR_SUPDRV_NO_RAW_MODE_HYPER_V_ROOT, rc=E_FAIL (0X80004005)) Looks like something went wrong in step ´Checking if machine default exists´... Press any key to continue... 1. Windows PowerShell을 관리자 도구로 열기 2. bcdedit 검색 3. hypervisorlaun..
멀티 스레딩은 하나의 프로세스 내에서 여러 개의 스레드가 동시에 실행되는 것을 의미함. 이는 프로세스 내의 각 스레드가 공유 메모리 공간을 가지며, 각 스레드는 독립적으로 실행됨. 장점 : 멀티 스레딩은 여러 작업을 동시에 처리하고 병렬로 실행할 수 있는 장점을 가짐. 예를 보자 public class MultiThreadExample { public static void main(String[] args) { Thread thread1 = new Thread(new MyRunnable("Thread 1")); Thread thread2 = new Thread(new MyRunnable("Thread 2")); thread1.start(); // 스레드 1 시작 thread2.start(); // 스레드..