목록서버 (4)
김찬양의 개발일지
zsh github https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH 1. ZSH 설치 제일 먼저 zsh를 설치한다. sudo apt install zshsh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"2. power10k 테마 설치 power10k git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc그리고..
1. Powershell에서 ssh커널 연결 방법 ssh -i [.pem 파일 경로] ubuntu@[public ip] 2. APT 업그레이드 sudo apt update sudo apt upgrade 3. 비밀번호만으로 접속하기. .pem파일을 이용해 접속하면 보안성이 높지만, 번거롭다. 그러므로 비밀번호를 이용해 간편히 접속 가능하게 할 수 있다. 가장 먼저 비밀번호접속 허용 설정을 해준다. sudo vim /etc/ssh/ssh_config PasswordAuthentication yes 그 다음 비밀번호를 설정해주고 재시작한다 sudo passwd ubuntu sudo systemctl restart sshd 자 이제 아래 방법으로 접속하면, 비밀번호를 입력하고 실행할 수 있다. ssh ubunt..
1. git clone git clone하는법 git clone 예를들어 git clone https://github.com/Kimchanyang524/Project.git 2. git pull git pull하는법은 git pull origin main