728x90

IT/Linux 11

startup bash too slow with nvm loading in .bashrc config

1. Remove your ~/.nvm, if you are worried about some crash or issue, Just move ~/.nvm ~/.nvm_bak 2. Install nvm with nvm-setup.exe(https://github.com/coreybutler/nvm-windows/releases) 3. And do same thing, installing new node version and use it in powershell. 4. Reload your git bash , you can see your node version changes with no performance issue. 이걸로 몇십분 시간을 보냈는데, github(https://github.com/mic..

IT/Linux 2024.04.05

vscode ssh 접속 오류 could not establish connection to vscode

remote explorer라는 아주 편리한 익스텐션을 vscode에서 제공해준다. 그런데 어쩌다가 aws에서 새로운 인스턴스를 생성하고 고정 ip를 다시 연결해주는 경우 위와같은 에러가 나는 경우가 있다. 내 경우도 도무지 config값은 정확한데 연결이 계속해서 안되서 찾아보니 known_hosts에 기록된 값 때문이였다. known_hosts에 기록된 값을 통해서 서버의 위변조(해킹에 의한 다른 서버로의 접속 등)를 검증하기 위한 것인데, 서버 자체는 바뀌었으나, ip는 그대로이니 내 경우 계속해서 에러가 났었던것이다. 에러를 해결하기 위해서는 당연히 다시금 fingerprint를 통해서 rsa key 정보를 known_hosts에 기록할 수 있게 해당 파일의 모든 내용을 삭제해주면된다.(필요한 부..

IT/Linux 2021.11.18

Git branch master빼고 모두 삭제하는 방법.

https://efficientcoder.net/delete-local-remote-git-branches/ 이 블로그를 참고했고, 이생각은 못했었는데 생각해보니 간단한 솔루션이였다. 일단 모든 브랜치 조회 git branch그 뒤 git branch | grep -v mastermaster를 뺀 브랜치만 출력해준다. 마지막으로 xargs를 이용해서 출력 결과를 인자로 받아서 삭제한다. git branch | grep -v master | xargs git branch -D참 쉽쥬~?

IT/Linux 2021.07.15

ubuntu apt-get update 느릴때,

$ sudo vi /etc/apt/sources.list 느린이유는 패키지를 받아오는 소스서버가 느리기 때문이고, 내 경우는 소스리스트를 열고 아래와같이 카카오 미러링 서버로 바꿨다. :%s/kr.archive.ubuntu.com/mirror.kakao.com :은 문자입력이아니라 vi로 파일을 연뒤 shift+;를 누르면 자동으로 명령 입력이 가능한 하단입력창이 뜬다. 그쪽에 %s/kr.archive.ubuntu.com/mirror.kakao.com 요걸 입력하고 엔터치라는 말이다. %s/치환될문장/치환문장 요건 문장변환 명령이다.

IT/Linux 2021.04.21

npm run build 시 Process.ChildProcess._handle.onexit Exit status 137에러

내 경우는 메모리 문제라고 예상했고 아래 swap space를 추가해주었다. linuxize.com/post/how-to-add-swap-space-on-ubuntu-18-04/ How to Add Swap Space on Ubuntu 18.04 Swap is a space on a disk that is used when the amount of physical RAM memory is full. This tutorial covers the steps necessary to add a swap file to Ubuntu 18.04. linuxize.com swap 파티션은 윈도우 가상메모리랑 같다. 메모리가 부족하면 swap 파티션을 메모리로 사용하는거다. swap 파티션이 없다면 메모리 부족시 메모리..

IT/Linux 2021.02.15
728x90