我正在使用 Aquamacs 进行大部分文本编辑,并且希望在编辑某些文件时有选择地以 root 身份打开它们。
有没有办法让我使用 Aquamacs 以 root 身份打开一些文件(而不是其他文件)?
我知道我可以使用 sudo 命令启动 Aquamacs,但这对我来说有点太冒险了——我宁愿只有 root 权限来编辑绝对需要它的文件。
您可以使用TRAMP(自 22.1 版以来与 Emacs 捆绑)以root 身份打开文件:
C-x C-f /sudo:root@localhost:/path/to/file
RET
如果不插入该username@host
部分,则 TRAMP 默认为root@localhost
when using /sudo
,因此您可以将语法缩短为
C-x C-f /sudo::/path/to/file
RET