用Emacs远程编辑文件及相关笔记

June 02, 2012

...

Emacs编辑远程文件

非常简单:C-x C-f/ssh:user@host#port:file

由此可以推出一个小技巧:

Emacs编辑本地需要sudo的文件

/ssh:root@locahost:file

过程中可能会遇到的问题:

  • 1
    问题:ssh: connect to host localhost port 22: Connection refused
    原因:没装openssh-server
    解决:安装即可

  • 2
    问题:ssh root@localhost并输入密码后报permission denied
    原因:发现直接用su也不行(之前一直都只是sudo),因为没设root密码
    解决:sudo passwd root
    注: /etc/ssh/sshd_config中有个参数PermitRootLogin需设置为yes
    虽然有安全问题,不过是本机,问题不大。
    修改配置后需重启服务:sudo /etc/init.d/ssh restart