在远程服务器上进行MX编译

发布于 2024-11-18 07:06:13 字数 178 浏览 2 评论 0原文

我在 Windows 7 上运行 GNU Emacs,并在 Linux 编译服务器上通过 ssh 进行编译。

emacs 可以与开放的 SSH shell 通信并在其中运行 Make 吗?

如果可能的话,我不想每次 Make 时都打开一个新的 shell。

I'm running GNU Emacs on Windows 7 and compiling over ssh on a Linux compilation server.

Can emacs communicate with an open SSH shell and run Make in it?

If possible, I don't want to open a new shell each time I Make.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅唱々樱花落 2024-11-25 07:06:13

我最近将其添加到我的 /etc/ssh/ssh_config 中。

Host server.somewhere.org
  ControlMaster auto
  ControlPath /tmp/%r@%h:%p

这里的 server.somewhere.org 应替换为您的 Linux PC。
它极大地加快了 Emacs TRAMP 的速度,因为 SSH 握手仅完成一次(当 Emacs 首次连接时)。

也许这在 Windows 中也是可能的。

I recently added this to my /etc/ssh/ssh_config.

Host server.somewhere.org
  ControlMaster auto
  ControlPath /tmp/%r@%h:%p

Here server.somewhere.org should be replaced with your Linux PC.
It speeds up Emacs TRAMP tremendously because the SSH handshake is done only once (when Emacs first connects).

Probably this is possible in Windows as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文