全部博文(106)
分类: LINUX
2012-01-21 14:21:50
图1 最新版本(内核版本为3.0.4)
开发者创建了一个虚拟块设备,它能在HTML5本地储存中储存数据,块设备可以分区和格式化。部分源码(),运行方法是点击(),登录名为root。
图2 最新版本(支持本地存储,可以将文件系统镜像保存到本地或上传)
另一个版本的地址为 。
图2 另一个版本(可通过clipboard设备在用户和虚拟机中Linux传递信息)
这是一台完全通过JavaScript写成的、使用QEMU模拟x86指令集的、运行在浏览器(我的FireFox运行正常)上的虚拟机。这台机上面运
行着一套2.6.20内核的Linux
OS,这里的“运行”和以前一些WebOS或者JavaScript模拟DOS的程序并不是一回事,这里的OS就是完完全全运行在客户端浏览器上的,各种
交互并不会传送到服务端或者委派到cmd.exe这些程序上执行,说白了这就是一台这实实在在运行的Linux虚拟机,这台虚拟机的相关信息可以在作者公
布的Tech页面看到。也可以自己登录到虚拟机上查一下。
发现文件系统是用BusyBox做的,可以使用大多数Linux的命令,还可以用tab来自动补全操作时的命令。
图3 所有支持的命令
如何实现的:
jslinux:用JavaScript写出一个PC模拟器,上面运行Linux (The code is written in pure Javascript using Typed Arrays which are available in recent browsers.)
1、主页面 () 很简单,主要调用了 如下两个 js 文件。
term.jscpux86.js
2、term.js 里也没有发现什么特殊的地方;
3、cpux86.js 使用到一个 load_binary 的函数,查看了一下实现,是通过 XMLHttpRequest 来取如下三个 bin 文件(使用Typed Arrays 操作二进制文件):
vmlinux26.binroot.binlinuxstart.bin
根据作者的描述,该模拟器的初衷是了解现在 JavaScript 引擎的工作,尤其是 Firefox 4 的 Jaeger Monkey 和 Chrome 的 V8,这个探索的结果,可以被用来:
下面是虚拟块设备和本地存储的一些介绍:
This project allows the virtual machine to access a persistent block device. This means
a user can format and partition this device inside it's virtual machine. Because this disk
is then stored in the HTML5 local storage(存储在HTML5本地存储中), a return to the emulator's web page allows a
user to reopen the block device. All data stored on the disk can therefore be read again.
Schematically, the process works in the following way:
A block device driver is added to the Linux kernel. This allows a user to operate with
a 'device' written in JavaScript. This device is bound to the virtual machine using the
same I/O ports as a floppy disk. The device driver itself uses a temporary testing major
device node, id 250. Theoretically, it allows dynamic device node allocation, but I have
not tested this.
On the JavaScript side, a lot of caching occurs because the local storage interface is
quite slow. I therefore decided to cache the total 'disk' in memory, because it's about
1M anyway. Writes are cached as well, and are 'flushed' once the driver has transferred
a complete sector.
For more details, see the source code.
===========================================================================
Javascript PC Emulator - News
Javascript PC Emulator - FAQ
Which browser should I use to try the PC emulator ?
What is the expected boot time of Linux with the emulator ?
How can I scroll back in the terminal ?
How can I copy data to the Virtual Machine ?
How can I copy data from the Virtual Machine ?
When will there be network support ?
Is it possible to emulate a VGA card and all the missing devices to launch say FreeDOS or Windows ?
Is there some source code available ?
Is my privacy respected ?
Javascript PC Emulator - Technical Notes
This PC emulator is written in Javascript. The emulated hardware consists in the following devices:
CPU Emulation
Devices
Javascript terminal
Linux distribution
Javascript
What's the use ?
===========================================================================
Javascript PC Emulator - News
For optimal performance, your browser should support the . Firefox 4.x and Chrome 11 have such support.
The current version of Chrome 12 beta is reported to have a preventing to run the emulator.
What is the expected boot time of Linux with the emulator ? Here are some figures:
Browser | Host | Boot time (s) |
---|---|---|
Firefox 5.0.1 | Core2 Quad 2.3 GHz | 4.0 |
Firefox 6 beta | Samsung Galaxy S2 | 32.5 |
The readable source code of the JS PC emulator itself is not yet available. At this point, any mirroring or redistribution of the code needs my explicit permission.
Is my privacy respected ? Yes. What you type in the Virtual Machine stays in your browser. No data is sent back to the server.Javascript PC Emulator - Technical Notes By - May 23, 2011
This PC emulator is written in Javascript. The emulated hardware consists in the following devices:
I added some tricks which are not present in QEMU to be more precise when emulating unaligned load/stores at page boundaries. The condition code emulation is also more efficient than the one in QEMU.
Devices Currently there is no synchronization between the PIT frequency and the real time, so there is a variable drift between the time returned by Linux (try the "date" command) and the real time.The UART (serial port) does not support FIFO mode. Perhaps it could help to improve the display speed.
There is no network emulation at this point.
A clipboard device (seen as /dev/clipboard in the emulator) was added to allow exchange of data between the emulator and the outside world.
Javascript terminal Although I could have reused the excellent , I decided to write my own because I was curious to see how it could be done. The main problem is the key handling which is different among browsers and OSes, as described . Linux distribution I compiled a 2.6.20 Linux kernel (I guess any other version would work provided there is still an FPU emulator). The Linux kernel configuration, patch and the source code of the Linux starter (kind of BIOS) are available: .The disk image is just a ram disk image loaded at boot time. It contains a filesystem generated with containing . I added my toy C compiler and my unfinished but usable emacs clone . There is also a small MS-DOS .COM launcher I use to test the 16 bit emulation with a tiny .COM program to compute pi and a small .
Javascript I happen to be interested by the implementation of Javascript engines these days - but I don't know yet if I will write my own any time soon ! Anyway, this emulator was a way to learn how to write optimized code for recent Javascript engines, in particular Jaeger Monkey (for Firefox 4) and V8 (for Chrome).A troubling thing is that the PC emulator is slower using V8 than Jaeger Monkey (I used the 32 bit version for both). I have no precise explanation yet because I only looked at the Jeager Monkey code so far.
What's the use ? I did it for fun, just because newer Javascript Engines are fast enough to do complicated things. Real use could be: