docker gpg key error 도커를 설치하다 해당 W가 나온다면 도커 설치를 위해 gpg키를 저장할 때 새로운 위치에 저장이 되어야 한다는 뜻이다. 이는 서버에 gpg key가 등록된 건지 확인할 수 없을때 발생한다. 해당 명령어를 통해 키를 다시 등록하자! curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker.gpg Study/Linux 2024.01.14
리눅스에 Open VPN 설치방법 https://www.opensourcelisting.com/how-to-install-openvpn-on-ubuntu-22-04/ How to Install OpenVPN on Ubuntu 22.04 - Open Source Listing Install OpenVPN: Set up your own OpenVPN Server - Securely connect to your network from anywhere with Open Source software. Learn how to install and configure in our guide. www.opensourcelisting.com Ubuntu 22.04에 OpenVPN을 설치하는 방법 가상 사설망(VPN)을 사용하여 공용 네트워크를 통해 개인 .. Study/Linux 2024.01.14
Docker & Kubernetes Install for linux * Docker Install https://docs.docker.com/engine/install/ Install Docker Engine Learn how to choose the best method for you to install Docker Engine. This client-server application is available on Linux, Mac, Windows, and as a static binary. docs.docker.com * 쿠버네티스 마이그레이션 관련 링크 https://kubernetes.io/blog/2023/08/31/legacy-package-repository-deprecation/ https://kubernetes.io/blog/2023/08/15/pkgs-.. Study/Docker&Kubernetes 2023.12.03
Linux에 Dock 프로그램 설치하기 https://programmingsummaries.tistory.com/359 [Linux] 가볍고 산뜻한 새로운 Dock 프로그램 - Plank 들어가며 애플의 맥OS에 있는 Dock과 유사한 기능을 해주는 프로그램으로, 우분투에는 Docky 라는 프로그램이 가장 유명하다. 그런데 막상 설치해서 사용하다보면 뭔가 아쉬운 부분이 있는 프로그 programmingsummaries.tistory.com Study/Linux 2023.07.16
Linux 우분투에서 Onedrive 동기화 하기 https://github.com/abraunegg/onedrive GitHub - abraunegg/onedrive: #1 Free OneDrive Client for Linux #1 Free OneDrive Client for Linux. Contribute to abraunegg/onedrive development by creating an account on GitHub. github.com 위 주소를 참조한다. 설명은 위에서 보는 것을 추천하고 아래의 명령어들은 빠르게 설치하기 위해서 기록한다. curl -fsS https://dlang.org/install.sh | bash -s dmd Example for installing DMD Compiler curl -fsS https://dlang.. Study/Linux 2023.07.16
Linux 디렉토리를 영어로 변경하기 export LANG=C xdg-user-dirs-gtk-update Dont awsk me this again에 체크하고 Update Names Study/Linux 2023.07.15
[SSH] 서버에 SSH 생성 후 등록 및 접속하기 참고 : https://velog.io/@solar/SSH-%EC%9D%B8%EC%A6%9D%ED%82%A4-%EC%83%9D%EC%84%B1-%EB%B0%8F-%EC%84%9C%EB%B2%84%EC%97%90-%EB%93%B1%EB%A1%9D-%EA%B0%84%ED%8E%B8%ED%95%98%EA%B2%8C-%EC%A0%91%EC%86%8D%ED%95%98%EA%B8%B0 SSH 인증키 생성 및 서버에 등록 & 간편하게 접속하기 로컬에서 ssh key를 생성하고, 생성된 ssh key를 서버에 등록하면 해당 서버에 접속하려는 계정의 비밀번호 입력없이 ssh 접속이 가능하다.클라이언트는 비밀키를 가지고 있고, 서버에 공개키를 가 velog.io SSH 인증키 생성 및 서버에 등록 로컬에서 ssh key를.. Study/SSH 2023.06.10
ssh key 등록 에러날 때 It is required that your private key files are NOT accessible by others.This private key will be ignored. 이 오류 메시지는 개인 SSH 키 파일의 권한이 너무 널널하게 설정되어 있을 때 발생합니다. SSH 클라이언트는 다른 사용자가 읽을 수 없도록 개인 키 파일에 엄격한 권한을 요구합니다. 이 문제를 해결하려면 개인 키 파일의 권한을 더 제한적으로 업데이트해야 합니다. 개인 키 파일의 권장 권한은 0600으로 설정하는 것이 좋습니다(소유자만 읽기 및 쓰기 가능). 개인 키 파일의 권한을 업데이트하려면 chmod 명령을 사용할 수 있습니다: chmod 600 path/to/id_rsa 이 명령은 개인 키 파일의 권한을 소유자(즉, 본인)만 읽거나 쓸 수 있도록 변경합니다. 권한을 업데이트한 후에는 이 오류 없이 SSH 인증에 개인 키를 사용할 수 있어야 합니다. Study/Git 2023.03.04
How to set up multiple NodeJS servers on Lightsail with a custom domain and Nginx If you're running multiple NodeJS servers on Amazon Lightsail and want to configure them to work with a custom domain and Nginx, here's a step-by-step guide to help you get started. Prerequisites Before you get started, make sure you have the following: Two NodeJS servers running on Lightsail, one on port 2511 and the other on port 9010. A Lightsail instance with a static IP address. Access to t.. Study/Nginx 2023.02.19
[NodeJS] Package Manager Yarn berry https://toss.tech/article/node-modules-and-yarn-berry node_modules로부터 우리를 구원해 줄 Yarn Berry 토스 프론트엔드 레포지토리 대부분에서 사용하고 있는 패키지 매니저 Yarn Berry. 채택하게 된 배경과 사용하면서 좋았던 점을 공유합니다. toss.tech Study/Node.js 2023.02.19