构建基于 linux 内核的纯 Emacs 环境

发布于 2023-05-10 12:54:57 字数 3795 浏览 55 评论 0

这项实验的目的是为了体验一下构建在 linux 内核上的纯 Emacs 环境用起来怎么样.

唯一需要的外部工具就是 mount

root_fs_emacs 可以挂载为普通分区或烧录到 live CD 上,但在本次试验中,我们使用 User Mode Linux 来启动它

1 初始化一个至少拥有150MB的根文件系统(root_fs)

cd ~/uml
dd if`/dev/zero of`root_fs_emacs bs`1k count`200k
yes y|mke2fs root_fs_emacs
mkdir /emacs 
mount -o loop root_fs_emacs /emacs
cd /emacs
ln -s .  emacs     # we create this link to simplify config --prefix of emacs 
cp -a /dev dev     # we boldly copy the whole /dev
mkdir etc sbin tmp # some other directories not installed by emacs
cat >etc/fstab <<EOF
/dev/ubd0 / ext2 defaults  0 1
EOF

2 静态编译 Emacs,不需要支持 X

cd ~/src
tar jxvf emacs-21.3.tar.bz2
cd emacs-21.3
CFLAGS`-static LDFLAGS`-static ./configure --without-x --prefix=/emacs
make && make install

3 将 Emacs 安装为 /sbin/init

cd /emacs
ln bin/emacs sbin/init
cat >.emacs <<EOF
(message "init starting")
(setq auto-save-interval 0)
(defun shutdown ()
  (interactive)
  (when (yes-or-no-p "Really shut down the system? ")
    ;; actually, kill-emacs signals emacs ie. init, which makes linux panic.
    (kill-emacs)))
(global-set-key "\C-x\C-c" 'shutdown)
(global-set-key "^\"  'keyboard-quit) ;; strangely, C-g does not work.
(call-process "/bin/mount" nil "*log*" t "-n" "-o" "rw,remount" "/")
(if (file-exists-p "/etc/mtab") (delete-file "/etc/mtab"))
(call-process "/bin/mount" nil "*log*" t "-f" "/dev/ubd0" "/")
(message "init done")
EOF

4 静态编译 mount 命令

cd ~/src
tar jxvf util-linux-2.12a.tar.bz2 
cd util-linux-2.12a
CFLAGS`-static LDFLAGS`-static ./configure
make && install -m 755 mount/umount mount/mount /emacs/bin/

5 启动 linux

cd ~/uml
umount /emacs
linux ubd0=root_fs_emacs

现在你可以通过 M-x eshell RET 运行emacs shell了,在 emacs shell 中输入 src_sh{ls -l RET} 得到如下结果:

File Edit Options Buffers Tools Help 
Welcome to the Emacs shell

/ # ls -l
total 21
drwxr-xr-x   2 0        0            1024 Jul 26 08:42 bin
drwxr-xr-x   1 0        0               0 Jan  1  1970 dev
lrwxrwxrwx   1 0        0               1 Jul 26 08:11 emacs -> .
drwxr-xr-x   2 0        0            1024 Jul 26 09:20 etc
drwxr-xr-x   2 0        0            2048 Jul 26 08:11 info
drwxr-xr-x   3 0        0            1024 Jul 26 08:11 libexec
drwx------   2 0        0           12288 Jul 26 08:10 lost+found
drwxr-xr-x   3 0        0            1024 Jul 26 08:10 man
drwxr-xr-x   2 0        0            1024 Jul 26 08:11 sbin
drwxr-xr-x   3 0        0            1024 Jul 26 08:10 share
drwxr-xr-x   2 0        0            1024 Jul 26 09:15 tmp
/ # 

--1-:---F1  *eshell*          (EShell)--L20--All---------------------

当然,emacs 缺少很多系统调用(没有实现为 elisp primitives),所以,看样子很难在 Emacs 中完成所有的事情,但这个实验只是个开始而已。

另一个更可行的替代是使用一个支持 FFI 即可移植的 HemLock 的 Common-Lisp 实现来代替 emacs。

Emacs as shell

Emacs 可以很容易的当作 shell 来用:

echo    /usr/bin/emacs >> /etc/shells
chsh -s /usr/bin/emacs  GOODUSER

echo    '(setenv "SHELL" "/bin/bash")' >> ~GOODUSER/.emacs
# in case the user wants to use M-x shell
# [ I use rather: (setenv "SHELL" "/usr/bin/clisp") ]

echo    '(eshell)' >> ~GOODUSER/.emacs
# to launch eshell automatically.
# One could use: (dired default-directory) instead...

su - GOODUSER
# Hosanna!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

沙与沫

暂无简介

0 文章
0 评论
430 人气
更多

推荐作者

eins

文章 0 评论 0

世界等同你

文章 0 评论 0

毒初莱肆砂笔

文章 0 评论 0

初雪

文章 0 评论 0

miao

文章 0 评论 0

qq_zQQHIW

文章 0 评论 0

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