비밀번호없이 localhost에 ssh하는 방법은 무엇입니까? 편집 : 정확히 무엇을했는지 암호없이 로컬 호스트를 SSH해야합니다. 일반적인 방법 (공개 키 사용)이 작동하지 않습니다. user@PC:~$ rm -rf .ssh/* user@PC:~$ ssh-keygen -t rsa > /dev/null Enter file in which to save the key (/home/user/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: user@PC:~$ ls .ssh/ id_rsa id_rsa.pub user@PC:~$ ssh-copy-id -i localhost The authenticity of..