ubuntu 에서 docker 설치

note ubuntu 24.04 setup 1. 패키지 목록 업데이트 sudo apt-get update 2. 필수 패키지 설치 sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release 3. docker GPG 키 추가 curl -fsSL | sudo gpg –dearmor -o 4. docker 공식…

ubuntu 에서 https reverse proxy 설정 (certbot & nginx)

note ubuntu 24.04 https reverse proxy 를 사용하여 subdomain 으로 사이트 제공 setup sudo apt-get update sudo apt-get install certbot sudo apt-get install nginx certbot https 인증서 발급용이며 nginx 가 선행으로 설치 되어야 함 현재 인증서 확인 sudo certbot certificates…

ubuntu 에서 bashrc 설정

note ubuntu 24.04 개인적으로 사용하는 bashrc 설정 ~/.bashrc … if [ “$color_prompt” = yes ]; then #PS1='${debian_chroot:+($debian_chroot)}[\033[01;32m]\u@\h[\033[00m]:[\033[01;34m]\w[\033[00m]\$ ' PS1='\e[00;32m][\h:\w][\e[0m] $ ' else #PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' PS1='[\h:\w] $ ' fi … # additional alias alias vi='vim' alias rm='rm -i' alias cp='cp -i'…

ubuntu 에서 vimrc 설정

note ubuntu 24.04 개인적으로 사용하는 vimrc 설정 기록 setup sudo apt-get update sudo apt-get install vim ~/.vimrc “””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””” ” Basic ” “””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””” ” base set encoding=utf-8 ” set encoding to UTF-8 (default was “latin1″) ” action set mouse=v ” enable…