E212: Can’t open file for writing
今天搭建Git服务器、往/home/git/.ssh/authorized_keys添加公钥的时候,wq!保存,报错:E212:Can’t open file for writing.
这个文件原本是不存在的,后来修改了一下权限,问题得到解决。
sudo touch authorized_keys
sudo chown root:root authorized_keys
sudo chmod 775 authorized_keys
whoami
el
vim authorized_keys
:w !chmod 777 %
:wq!