0

The version I run on my desktop has Emacs, a common list compiler, and SLIME a lisp IDE. This would be good for collaboration and testing of any functionality that includes internet protocols.

My server has CentOS and so the package manager is YUM I believe. Thanks, Bruce

4

1 に答える 1

3

Lisp-in-box をサーバー上で実行できるかどうかはわかりませんが、サーバー上で SWANK を使用して Lisp を実行することはできます。そうすれば、共同作業者と自分自身が で接続できるようになります M-xslime-connectRET

また、安全な接続を使用したい場合は、SWANK が localhost でのみリッスンしていることを確認してから、SSH トンネルを作成できます。

ssh -f -N -L 4005:localhost:4005 $user@$host

おまけ: この ブログ投稿 は、Common Lisp との共同コーディングに関するものです。

于 2012-10-11T06:19:57.110 に答える