ssh-keygen -t rsa //명령
Generating public/private rsa key pair.
Enter file in which to save the key (/home/ubuntu/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
파일을 저장할 별도의 디렉토리를 입력하지 않으면 기본 디렉토리에 저장한다.
passphrase는 키의 비밀번호로, 암호화되어 키 생성에 사용된다.
따라서 둘 다 따로 작성하지 않고 Enter 키를 이용하여 넘어가기만 해도 ssh-key가 제너레이트 된다!
또한 우분투에서 sudo freshclam 실행 시 다음과 같은 에러가 나올 때 해결 방법은 다음과 같다.
WARNING: Ignoring deperecated option SafeBrowsing at /etc/clamav/freshclam.conf:22
Error: /var/log/clamav/freshclam.log is locked by another process
ERROR: Problem with internal logger (UpdtaeLogFile = /var/log/clamav/freshclam.log).
ERROR: initialize: libfreschclam init failed.
ERROR: Initialization error!
1. vi /etc/clamav/freschclam.conf에 들어가서 SafeBrowsing을 주석 처리한다.
2. 실행되고 있는 프로세스를 다음 명령어를 통해 정지한다.
sudo systemctl stop clamav-freshclam.service
3. 다시 재실행한다.
sudo freshclam
위와 같은 방법을 통하면 sudo freshclam을 실행할 수 있을 것이다!