我在想,如果Chromium完全是基于web浏览器的。那么,为什么不使用FreeBSD内核并制造相同的基于HTML5的操作系统呢?至少可以对Chromium进行评估,但在FreeBSD体系结构中。
是否可以这样做呢?还是BSD并不比Linux内核更友好?毕竟,这是Chromium明确引入的常识概念。
谢谢你的进阶。
后续:愿景和使命:“没有墙壁的生活,谁需要?”如何用linux内核构建我的微操作系统呢?
步骤1:收集材料
( a)一些现有的和工作的映像,这样我们就可以包装文件系统和目录树http://people.debian.org/~aurel32/qemu/ (它们是在映像中构建的,所以里面有所有的目录框架)。
( b)建立一个目录框架,在其中,您可以通过复制和粘贴上面的原始材料形式(/tmp/myOS/)将以下所有内容放在其中:
/
/boot <-- here goes the grub and lilo and boot loader
/tmp
/lib <-- here goes the kernel
/root
/etc etc步骤2:构建内核
1) Download linux kernel: www.kernel.org
2) Setup the kernel and build it
make menuconfig
save it as .config
apply make or make -j3
3) install processor emulator
yum -y install qemu nasm
4) run it
qemu -m 124M -kernel /tmp/myKernel/../zImage步骤3:附加内核和目录框架
1) compiled/builded kernel was created copy that and paste it to /tmp/myOS/lib/
2) make sure the directory and grub/lilo/bootloaders are fine tunned
3) keep on testing..., should work hoping发布于 2011-04-27 08:32:29
是的这是可能的。
迄今为止最著名的Linux发行版Debian也是这样做的。见此处:http://www.debian.org/ports/kfreebsd-i386/
因此,如果它运行Debian,它也将运行您的web。
https://stackoverflow.com/questions/5801191
复制相似问题