놀기/Linux16 git 접속을 위한 ssh key 생성 목차 1. ssh key 만들기 $ ssh-keygen -t rsa -b 2048 -C "busyman@email.com" Generating public/private rsa key pair. Enter file in which to save the key (/home/busyman/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/busyman/.ssh/id_rsa Your public key has been saved in /home/busyman/.ssh/id_rsa.pub The key fingerprint is:.. 2022. 1. 14. SSH 설치하기 (Ubuntu 20.04) Ubunut에 SSH 설치하기. 긴말 필요 없고. 일단, openssh-server 설치하고 $ sudo apt update $ sudo apt install openssh-server 아래와 같이 해주면 끝. $ sudo systemctl enable ssh $ sudo systemctl start ssh $ sudo ufw allow ssh 2022. 1. 14. Ubuntu 접속 기록 삭제, 명령어 히스토리 삭제하기 해커가 아니더라도 ssh 접속 기록을 가끔 지우고 싶을 때가 있다. 나의 IP가 노출된다거나 나의 사용 기록이 노출된다거나 나가 마지막으로 언제 들어왔는지 등등등... 그 외 다양한 기록이 남겠지만 일단 이것만이라도 지워보자. 목차 언제 들어왔는지 지우기 (/var/log/wtmp, /var/log/lastlog) /var/log/wtmp 파일이 없으면 last 명령어의 결과가 나오지 않는다. 아래와 같이 해보자. dev@dev:~$ sudo mv /var/log/wtmp /var/log/wtmp.old [sudo] password for dev: dev@dev:~$ last last: cannot open /var/log/wtmp: No such file or directory dev@dev:~$ 그런.. 2021. 10. 27. 디렉토리 이동 프로그램 제목이 좀 이상한데... "A shell utility allowing users to navigate to aliased directories"와 비스무리 한 것이다. 10여 년 전 리눅스에서 개발할 때 디렉터리 이동이 귀찮아 ncurses 라이브러리 이용해서 C언어로 UI 만들고 shell 스크립트로 실행해서 사용했었는데, 소스코드를 못 찾겠어서 인터넷 뒤지다 보니 아래와 같은 프로그램을 찾았다. https://github.com/iridakos/goto GitHub - iridakos/goto: Alias and navigate to directories with tab completion in Linux Alias and navigate to directories with tab completio.. 2021. 7. 26. 이전 1 2 3 4 다음