개요 자체 서명 인증서를 사용하는 사내망에 nativescript-vue 개발환경 구축 과정에서 템플릿 다운로드 시 발생한 오류를 해결한 과정을 작성합니다. 오류 $ vue init nativescript-vue/vue-cli-tempate myapp vue-cli · Failed to download repo nativescript-vue/vue-cli-tempate: self signed certificate in certificate chain 해결 템플릿 파일을 git clone을 통해 로컬 영역에 다운로드한 후, 해당 템플릿을 이용하여 초기화를 합니다. cd ~ git clone https://github.com/nativescript-vue/vue-cli-template ~/.vue-templ..
분류 전체보기
개요 자체 서명 인증서를 사용하는 사내망에 flutter 개발환경 구축 과정에서 발생한 오류를 해결한 과정을 작성합니다. 오류 윈도우즈 환경에 flutter를 설치 후, doctor 명령을 사용하여 진단 시 오류가 발생합니다. > flutter doctor VersionCheckError: Command exited with code 128: git fetch __flutter_version_check__ stable Standard error: fatal: unable to access 'https://github.com/flutter/flutter.git/': SSL certificate problem: self signed certificate in certificate chain 해..
개요 Android 개발환경을 설정하며 의도치 않게 WSL2의 구동에 영향을 미치는 환경설정을 변경하였습니다. C:\Windows\system32>wsl 가상 컴퓨터 플랫폼 Windows 기능을 사용하도록 설정하고 BIOS에서 가상화가 사용하도록 설정되어 있는지 확인 하세요. 위 오류 문구를 통해 검색하여, 웹에 제시되어 있는 해결법에 따라 Linux 용 Windows 하위 시스템, 가상 머신 플랫폼 을 비활성화, 재부팅, 활성화, 재부팅하였으나 개선되지 않았습니다. 그래서 검색어를 변경하여 아래와 같이 영문 오류 메시지를 이용하여 검색하여 해결방법을 찾았고 이를 공유합니다. Please enable the Virtual Machine Platform Windows feature and ensure vi..
개요 Ubuntu의 기본 쉘을 bash에서 zsh로 변경한 후, 기존에 설치해 높은 node가 오류를 표시하며 동작하지 않습니다. node는 nvm을 이용해 설치해 사용하고 있습니다. 오류 내용 $ npm --version internal/modules/cjs/loader.js:834 throw err; ^ Error: Cannot find module 'C:\mnt\c\Program Files\nodejs\node_modules\npm\bin\npm-cli.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:831:15) at Function.Module._load (internal/modules/cjs/load..
GitLab Runner 설치 GitLab 저장소 추가 및 최신 버전 설치 curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | sudo bash sudo -E apt-get install gitlab-runner runner 등록 sudo gitlab-runner register Enter the GitLab instance URL Enter the registration token Settings -> CI/CD → CI/CD→ Expand Runner Enter a description for the runner Enter tags for the runner 입력하지 않음 Enter..
개요 npm을 통한 패키지 설치 중 발생한 오류와 대응 방법을 기록합니다. 본문 오류 1. - gyp ERR! stack Error: self signed certificate in certificate chain $ npm install gyp ERR! configure error gyp ERR! stack Error: self signed certificate in certificate chain gyp ERR! stack at TLSSocket.onConnectSecure (_tls_wrap.js:1514:34) gyp ERR! stack at TLSSocket.emit (events.js:375:28) gyp ERR! stack at TLSSocket._finishInit (_tls_wrap.js..
개요 이전글에서 apt-offline을 이용해 오프라인 환경에 패키지를 설치하는 방법을 설명하였지만 실제로 사용하기에는 번거로운 점이 많았습니다. 이번 글에서는 이 절차를 좀 더 간단히 할 수 있는 방법을 설명합니다. 여기에 안내한 방법을 이용하면, 의존성 있는 패키지를 포함한 모든 .deb 파일을 다운로드할 수 있습니다. 이렇게 다운로드한 .deb 파일을 인터넷이 연결되지 않는 피씨로 복사하여 설치하도록 합니다. 본문 가상 머신 등을 통해 설치하려는 환경과 동일한 Ubuntu를 준비합니다. 아래 명령을 사용하여 설치 없이 패키지만 다운로드합니다. ※ 참고 : 본 과정에는 ubuntu 14.04부터 도입된 apt 명령을 사용하지 않도록 합니다. $ sudo apt-get install --download..
개요 Qt를 기반 프로젝트의 진행을 위한 개발환경 구축 과정을 정리하였습니다. 환경설정 (설치) 참고 : Ubuntu 20.04에서 진행하였습니다. Qt5 다음 명령을 이용하여 간단히 설치할 수 있습니다. $ sudo apt-get update $ sudo apt-get install build-essential $ sudo apt-get install qt5-default $ sudo apt-get install qtcreator # 문서 및 예제 설치 $ sudo apt-get install qt5-doc $ sudo apt-get install qt5-doc-html qtbase5-doc-html $ sudo apt-get install qtbase5-example $ qmake --version ..