728x90 밍글링글링400 [윈도우11] [Window11] 마우스 오른쪽 클릭 윈도우 10으로 변경하기 (수동적용, 자동적용) 수동적용 1) 레지스트리 편집기 실행 1) 첫번째 방법 (실행) 2) 두번째 방법 (윈도우 검색 이용) 2) 아래 경로로 이동 하여, 키를 생성하여 '{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}'를 입력한다. 컴퓨터\HKEY_CURRENT_USER\Software\Classes\CLSID 3) '{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}' 경로에서 새로운 키를 생성한다. 키 이름은 'InprocServer32' 으로 생성한다. 4) 'InprocServer32' 해당 경로에서 기본값을 더블 클릭하여 입력하지 않고 '확인' 버튼을 클릭한다. 이 후, PC를 재시작하면 적용된다. 자동적용 윈도우 10 오른쪽 클릭으로 변경 - 레지스트리 파일 윈도우 11 오.. 일상생활/생활정보 2022. 6. 23. [svelte] capacitor, sveltekit을 이용하여 모바일 앱 만들기 기존 실행되는 sveltekit 프로젝트에서 adapter가 달려있다고 가정한다. capacitor 를 이용할 것이다. npm install -D @capacitor/core @capacitor/cli @capacitor/android @capacitor/filesystem @capacitor/geolocation 위 명령어로 capacitor 등등 옵션 등을 install 한다. 그 이후, npx cap init 위 명령어를 입력하여, capacitor.config.json 파일을 생성시킨다. { "appId": "com.example.app", "appName": "javamin", "webDir": "build", "bundledWebRuntime": false, "server": { "url": .. svelte 2022. 6. 17. [SSL] Oracle linux server에서 let's encrypt로 nginx에 SSL 적용하기 (인증서 자동 갱신 포함) Oracle lunux 7과 6은 동일하게 하셔도 무방합니다. 루트 사용자로 실행합니다. 아래의 명령어로 OL 저장소를 활성화합니다. # OL7 yum install -y yum-utils yum-config-manager --enable ol7_optional_latest OR (OL7의 경우 위 명령어, 아래 명령어 선택하셔서 사용하세요.) # OL7 yum-config-manager --enable ol7_developer_EPEL # OL8 dnf 설치 -y oracle-epel-release-el8 또는 공식 EPEL 릴리즈를 하셔도 무방합니다. # OL7 CD/tmp wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.. Server/Linux 2022. 6. 14. [VS Code] JAVA 개발환경 세팅 [확장프로그램] VSCODE 확장프로그램 Extension Pack for Java 📦 Language Support for Java™ by Red Hat 📦 Debugger for Java 📦 Test Runner for Java 📦 Maven for Java 📦 Project Manager for Java 📦 Visual Studio IntelliCode Spring Boot Extension Pack 📦 Spring Boot Tools 📦 Spring initializr Java Support 📦 Spring Boot Dashboard 위와 같이 설치되는 프로그램들이 있다. 카테고리 없음 2022. 6. 3. [window power shell] alias 설정하기 일반적으로는, set-alias ll ls 위와 같이, shell에 입력하면, alias가 적용되지만, shell을 종료하면 날라간다. 지속성을 유지하기 위해서는. $profile C:\Users\user\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 $profile을 입력하면 프로파일 경로가 출력된다. test-path $profile 위 명령어는, 프로필 파일생성 여부를 확인하는 명령어인데, 있으면 True, 없으면 False가 출력된다. new-item -path $profile -itemtype file -force 프로파일 생성 명령어이다. #vim이 설치되어 있다면, vim $profile #vim이 설치되어 있지 않다면, note.. 카테고리 없음 2022. 6. 3. [VSCODE] Shell 만 SSH 연결하기 권한 문제로 인해, 해당 KEY를 일반 디렉토리가 아닌. ~/.ssh/test.pem경로에 복사한다. 필자의 경우, C:\Users\user\.ssh 아래 명령어와 같이 ***.***.**.*** 대신 해당 ssh 접속 URL 입력 후 실행한다. ssh -i ~/.ssh/test.pem root@***.***.**.*** -p 22 카테고리 없음 2022. 6. 3. [VIM] WINDOW[윈도우]에서 VIM 사용하기 www.vim.org/download.php download : vim online Downloading Vim Vim is available for many different systems and there are several versions. This page will help you decide what to download. Most popular: Details and options for: Mirrors Alternative sites to download Vim files from. Sources Build Vim your www.vim.org 위 URL로 이동하여, 해당 파일을 다운로드 받는다. 시스템 속성 > 환경변수 > 시스템 변수 > Path [편집] C:\Program Files .. 카테고리 없음 2022. 6. 3. [VSCODE] MAVEN 설치 및 INSTALL JAVA PROJECT 빌드를 하기 위해선 MAVEN이 필요하다. 우선 확장프로그램 탭에서 MAVEN FOR JAVA 를 설치한다. https://maven.apache.org/download.cgi Maven – Download Apache Maven Downloading Apache Maven 3.8.5 Apache Maven 3.8.5 is the latest release and recommended version for all users. The currently selected download mirror is https://dlcdn.apache.org/. If you encounter a problem with this mirror, please select another mirror. I.. 카테고리 없음 2022. 6. 3. [GIT] PULL, PUSH시 ID, PASSWORD 최초 한번만 쓰기 DEFAULT 15분 동안 인증정보를 유지한다. git config --global credential.helper cache 아래의 명령어는 시간을 연장하는 방법이다 git config credential.helper 'cache --timeout=300' ~/.git-credentials 에 저장하여서 계속 인증정보가 유지된다. git config --global credential.helper store 공유 소스 관리/Git 2022. 5. 20. [SVELTE] 프로젝트 생성 우선 Svelte를 사용하려면 node를 설치해야 한다. https://nodejs.org/en/ svelte 2022. 5. 10. [VSCODE] Visual Studio Code 새탭으로 열기 설정 파일이 열리면 새탭으로 열리지 않고 덮어져서 열리는 방식을 새탭으로 열리는 방식으로 변경하는 법 첫번째 화면 VSCODE를 열고 파일 - 기본설정 = 설정 버튼을 위의 캡처화면과 같이 클릭한다. 두번쨰 화면 설정 검색창에 enable preview를 검색하고, ① Workbench - Editor: Enable Preview ② Workbench - Editor: Enable Preview From Quick Open 위 두 가지 설정에 체크를 해제하면 된다. 기본적으로 VSCODE는 preview모드에서 편집하면 edit모드가 되는데 preview모드로 열리면 새탭으로 열리지 않고, 기존 파일이 닫히고 새로 연 파일이 열려 파일이 덮여지게 보여진다. 그래서 preview모드를 해제하고 edit파일로 열.. Development Tools 2022. 4. 25. [docker] oracle 19c 설치 현재 작업 중 디렉토리를 살펴본다. $ pwd 확인이 되었다면, 아래의 명령어를 입력하여 oracle docker-images를 복사한다. $ git clone https://github.com/oracle/docker-images.git 복사된 디렉토리로 경로를 이동하여 $ cd docker-images $ cd OracleDatabase $ cd SingleInstance $ cd dockerfiles $ cd 19.3.0 내가 설치할 19.3.0 버전 디렉토리에 접속한다. 이 후, 오라클 홈페이지에 접속하여 리눅스 버전에 맞는 zip 파일을 찾아서 다운로드 받는다. https://www.oracle.com/database/technologies/oracle-database-software-downl.. docker 2022. 4. 6. 이전 1 2 3 4 5 6 ··· 34 다음 728x90